:root {
  --bg: #0b1220;
  --bg-soft: #131a2b;
  --surface: rgba(19, 26, 43, 0.88);
  --surface-solid: #131a2b;
  --surface-light: #f3f4f6;
  --ink: #f3f4f6;
  --muted: #9eabba;
  --muted-dark: #5f6875;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(8, 17, 31, 0.12);
  --accent: #f5c542;
  --accent-strong: #f5c542;
  --accent-soft: rgba(245, 197, 66, 0.12);
  --red: #e63946;
  --green: #43d39e;
  --blue: #66a8ff;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 4%, rgba(244, 71, 86, 0.1), transparent 25%),
    radial-gradient(circle at 86% 16%, rgba(255, 204, 77, 0.1), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.section-pad {
  padding: 108px 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.08;
  pointer-events: none;
}

.ambient-one {
  top: 240px;
  left: -200px;
  background: var(--red);
}

.ambient-two {
  right: -160px;
  top: 680px;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(11, 18, 32, 0.94);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 204, 77, 0.11);
  border: 1px solid rgba(255, 204, 77, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  letter-spacing: -0.045em;
}

.brand-copy strong {
  font-size: 20px;
}

.brand-copy small {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: #c5cdd7;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #cdd5de;
  font-size: 12px;
  font-weight: 750;
  cursor: default;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 204, 77, 0.1);
}

.status-pill.live .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 211, 158, 0.1);
}

.status-pill.fallback .status-dot {
  background: var(--accent);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding-top: 76px;
  padding-bottom: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.overline {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 204, 77, 0.2);
  border-radius: 999px;
  color: #f8e4a2;
  background: rgba(255, 204, 77, 0.06);
  letter-spacing: 0.08em;
}

.overline {
  color: #a5b0bd;
}

.overline.accent {
  color: var(--accent-strong);
}

.hero h1,
.section-intro h2,
.section-heading-row h2,
.method-copy h2,
.center-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.7vw, 92px);
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #b5c0cc;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #121821;
  background: linear-gradient(135deg, #ffe074, var(--accent-strong));
  box-shadow: 0 14px 36px rgba(255, 183, 3, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(255, 183, 3, 0.26);
}

.button.ghost {
  color: #eef3f8;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
}

.button.compact {
  min-height: 44px;
  padding-inline: 16px;
}

.button.disabled,
.button:disabled {
  color: #7f8b98;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.source-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
  color: #8f9baa;
  font-size: 12px;
}

.source-line p {
  margin: 0;
}

.source-avatars {
  display: flex;
}

.source-avatars i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #0d192a;
  background: #f3d268;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.source-avatars i:nth-child(2) {
  color: #eef6ff;
  background: #305f93;
}

.rates-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(13, 25, 42, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.rates-panel::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 77, 0.18), transparent 65%);
  pointer-events: none;
}

.panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-heading .overline {
  margin-bottom: 4px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.refresh-button.loading svg {
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.rate-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.rate-card.featured {
  color: #111722;
  background: linear-gradient(145deg, #ffe785 0%, #ffc936 100%);
  box-shadow: 0 22px 44px rgba(255, 183, 3, 0.15);
}

.rate-card.secondary {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.rate-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.rate-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}

.market-dot,
.official-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.market-dot {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(244, 71, 86, 0.12);
}

.official-dot {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(102, 168, 255, 0.11);
}

.rate-card.featured .market-dot {
  background: #c22034;
  box-shadow: 0 0 0 4px rgba(194, 32, 52, 0.12);
}

.rate-change {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.rate-card.featured .rate-change {
  background: rgba(8, 17, 31, 0.09);
}

.rate-card.secondary .rate-change {
  background: rgba(255, 255, 255, 0.06);
}

.rate-change.up {
  color: #0c754e;
}

.rate-card.secondary .rate-change.up {
  color: var(--green);
}

.rate-change.down {
  color: #a21d2d;
}

.rate-card.secondary .rate-change.down {
  color: #ff8f99;
}

.rate-number {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  letter-spacing: -0.045em;
}

.rate-number span {
  font-size: 18px;
  font-weight: 700;
}

.rate-number strong {
  font-size: clamp(43px, 5vw, 62px);
  line-height: 0.95;
}

.rate-number small {
  font-size: 17px;
  font-weight: 850;
}

.rate-number.small strong {
  font-size: 38px;
}

.rate-number.small span,
.rate-number.small small {
  color: #bec8d3;
}

.inverse-rate {
  margin-top: 13px;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 650;
}

.rates-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding: 0 4px;
  color: #8290a0;
  font-size: 11px;
}

.live-badge {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.09em;
}

.live-badge.fallback {
  color: var(--accent);
}

.trust-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid svg {
  width: 29px;
  height: 29px;
  color: var(--accent);
}

.trust-grid span {
  display: grid;
  gap: 2px;
}

.trust-grid strong {
  font-size: 14px;
}

.trust-grid small {
  color: #8f9baa;
  font-size: 11px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 94px;
}

.section-intro h2,
.section-heading-row h2,
.method-copy h2,
.center-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.section-intro > p:not(.overline),
.heading-description,
.method-copy > p:not(.overline),
.center-heading + p {
  color: #aab5c1;
  font-size: 17px;
  line-height: 1.75;
}

.section-intro > p:not(.overline) {
  max-width: 560px;
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #c1cad4;
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #0b1b18;
  background: var(--green);
  font-size: 11px;
  font-weight: 950;
}

.converter-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: var(--radius-xl);
  color: #15202c;
  background: var(--surface-light);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.converter-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.07);
}

.converter-tab {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  color: #66717d;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.converter-tab.active {
  color: #121821;
  background: #fff;
  box-shadow: 0 6px 18px rgba(8, 17, 31, 0.08);
}

.field-block {
  margin-top: 24px;
}

.field-block label,
.field-label {
  display: block;
  margin-bottom: 9px;
  color: #5f6874;
  font-size: 12px;
  font-weight: 800;
}

.money-input {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(8, 17, 31, 0.11);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.money-input:focus-within {
  border-color: rgba(244, 71, 86, 0.55);
  box-shadow: 0 0 0 4px rgba(244, 71, 86, 0.08);
}

.currency-badge {
  display: grid;
  place-items: center;
  min-width: 56px;
  height: 42px;
  padding-inline: 10px;
  border-radius: 11px;
  color: #fff;
  background: #102033;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.money-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #101722;
  background: transparent;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.field-block small {
  display: block;
  margin-top: 7px;
  color: #8c949d;
  font-size: 10px;
}

.swap-button {
  position: absolute;
  top: 199px;
  right: 44px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 4px solid var(--surface-light);
  border-radius: 50%;
  color: #15202c;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(8, 17, 31, 0.12);
  transition: transform 0.2s ease;
}

.swap-button:hover,
.swap-button:focus-visible {
  transform: rotate(180deg);
}

.swap-button svg {
  width: 18px;
  height: 18px;
}

.result-block {
  min-height: 122px;
  padding: 18px;
  border-radius: 17px;
  background: #e9e6dc;
}

.conversion-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  overflow-wrap: anywhere;
}

.conversion-result strong {
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.conversion-result span {
  color: #59626c;
  font-size: 16px;
  font-weight: 850;
}

.result-block p {
  margin: 11px 0 0;
  color: #707984;
  font-size: 11px;
}

.source-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.source-option {
  display: grid;
  gap: 7px;
  padding: 12px 13px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 13px;
  color: #56616c;
  background: rgba(255, 255, 255, 0.45);
  text-align: left;
  cursor: pointer;
}

.source-option.active {
  border-color: #102033;
  color: #15202c;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8, 17, 31, 0.06);
}

.source-option span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
}

.source-option strong {
  font-size: 14px;
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.quick-amounts button {
  min-height: 38px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 10px;
  color: #4e5964;
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.quick-amounts button:hover,
.quick-amounts button:focus-visible {
  color: #111722;
  border-color: rgba(8, 17, 31, 0.24);
  background: rgba(255, 255, 255, 0.52);
}

.copy-button {
  width: 100%;
  margin-top: 16px;
  color: #fff;
  background: #102033;
}

.copy-button svg {
  width: 18px;
  height: 18px;
}

.chart-section,
.methodology-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading-row h2 {
  max-width: 760px;
}

.heading-description {
  max-width: 690px;
  margin: 18px 0 0;
}

.chart-controls {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  flex-shrink: 0;
}

.chart-controls button {
  min-width: 48px;
  min-height: 36px;
  border: 0;
  border-radius: 9px;
  color: #8491a0;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.chart-controls button.active {
  color: #151b24;
  background: var(--accent);
}

.chart-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(13, 25, 42, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.chart-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.chart-summary > div:first-child {
  display: grid;
}

.chart-summary #chart-current {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.chart-summary small {
  color: #8290a0;
  font-size: 11px;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #97a3b0;
  font-size: 11px;
  font-weight: 700;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-market,
.legend-official {
  display: inline-block;
  width: 20px;
  height: 3px;
  border-radius: 999px;
}

.legend-market {
  background: var(--accent);
}

.legend-official {
  background: var(--blue);
}

.chart-wrap {
  position: relative;
  min-height: 320px;
}

#rate-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-axis-label {
  fill: #778697;
  font-size: 11px;
}

.chart-line-market,
.chart-line-official {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-market {
  stroke: var(--accent);
  stroke-width: 4;
  filter: drop-shadow(0 5px 10px rgba(255, 204, 77, 0.18));
}

.chart-line-official {
  stroke: var(--blue);
  stroke-width: 3;
  opacity: 0.88;
}

.chart-area-market {
  fill: url(#market-gradient);
}

.chart-point {
  fill: var(--bg-soft);
  stroke-width: 3;
}

.chart-point.market {
  stroke: var(--accent);
}

.chart-point.official {
  stroke: var(--blue);
}

.chart-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 30px;
  color: #c3ccd5;
  text-align: center;
  background: radial-gradient(circle, rgba(255, 204, 77, 0.04), transparent 60%);
}

.chart-empty[hidden] {
  display: none;
}

.chart-empty span {
  max-width: 460px;
  color: #8290a0;
  font-size: 12px;
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #728091;
  font-size: 10px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
}

.quote-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.026);
}

.quote-card.reference {
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 204, 77, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.quote-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.quote-logo {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  color: #151b24;
  background: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.quote-head > div {
  display: grid;
}

.quote-head strong {
  font-size: 14px;
}

.quote-head small {
  color: #7f8d9b;
  font-size: 10px;
}

.verified-badge {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid rgba(255, 204, 77, 0.2);
  border-radius: 999px;
  color: #f6d66f;
  background: rgba(255, 204, 77, 0.06);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.quote-rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.quote-rate-row span {
  color: #8c99a7;
  font-size: 12px;
}

.quote-rate-row strong {
  font-size: 19px;
  letter-spacing: -0.025em;
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 15px 0 20px;
  color: #748292;
  font-size: 9px;
}

.quote-card.reference .button {
  width: 100%;
}

.quote-card.onboarding,
.quote-card.safety {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.onboarding-icon,
.safety-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 15px;
}

.onboarding-icon {
  color: var(--accent);
  border: 1px dashed rgba(255, 204, 77, 0.35);
  background: rgba(255, 204, 77, 0.06);
}

.safety-icon {
  color: var(--green);
  border: 1px solid rgba(67, 211, 158, 0.16);
  background: rgba(67, 211, 158, 0.06);
}

.onboarding-icon svg,
.safety-icon svg {
  width: 25px;
  height: 25px;
}

.quote-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.quote-card p {
  margin: 12px 0 0;
  color: #91a0ae;
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.methodology-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: 88px;
}

.method-copy h2 {
  max-width: 680px;
}

.method-copy > p:not(.overline) {
  max-width: 630px;
  margin-top: 24px;
}

.formula-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.formula-card span {
  display: grid;
  place-items: center;
  min-height: 50px;
  border-radius: 12px;
  color: #17202a;
  background: #f6f1df;
  font-size: 13px;
  font-weight: 900;
}

.formula-card span:last-child {
  background: var(--accent);
}

.formula-card strong {
  color: #8391a0;
  font-size: 18px;
}

.formula-example {
  margin-top: 13px !important;
  color: #778697 !important;
  font-size: 11px !important;
}

.method-steps {
  display: grid;
  gap: 10px;
}

.method-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.method-steps article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #171d26;
  background: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.method-steps h3 {
  margin: 0;
  font-size: 15px;
}

.method-steps p {
  margin: 6px 0 0;
  color: #8795a4;
  font-size: 12px;
  line-height: 1.6;
}

.center-heading {
  margin-bottom: 38px;
  text-align: center;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.accordion summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion p {
  margin: 0;
  padding: 0 22px 22px;
  color: #8f9dac;
  font-size: 13px;
  line-height: 1.7;
}

.legal-banner {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 204, 77, 0.14);
  border-bottom: 1px solid rgba(255, 204, 77, 0.14);
  background: rgba(255, 204, 77, 0.055);
}

.legal-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
}

.legal-inner svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.legal-inner strong {
  font-size: 13px;
}

.legal-inner p {
  margin: 4px 0 0;
  color: #9ea9b5;
  font-size: 11px;
  line-height: 1.7;
}

.site-footer {
  padding: 72px 0 32px;
  background: #050b13;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid > div:first-child p {
  max-width: 270px;
  margin: 0;
  color: #788593;
  font-size: 12px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid a:not(.brand) {
  color: #808d9a;
  font-size: 11px;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5f6c79;
  font-size: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: #152235;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 204, 77, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    display: grid;
    gap: 4px;
    padding: 0 20px 18px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 0;
    color: #bdc7d1;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 750;
  }

  .hero-grid,
  .split-layout,
  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .rates-panel {
    max-width: 680px;
  }

  .split-layout,
  .methodology-grid {
    gap: 48px;
  }

  .converter-card {
    max-width: 680px;
  }

  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card.reference {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-pad {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .status-pill {
    display: none;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 74px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .rates-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .rate-card {
    padding: 18px;
  }

  .rate-number strong {
    font-size: 46px;
  }

  .rate-number.small strong {
    font-size: 34px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    justify-content: flex-start;
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section-intro h2,
  .section-heading-row h2,
  .method-copy h2,
  .center-heading h2 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .converter-card {
    padding: 18px;
    border-radius: 24px;
  }

  .swap-button {
    top: 191px;
    right: 34px;
  }

  .money-input input {
    font-size: 26px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .chart-card {
    padding: 18px;
    border-radius: 22px;
  }

  .chart-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-wrap {
    min-height: 250px;
    overflow-x: auto;
  }

  #rate-chart {
    min-width: 720px;
  }

  .chart-footer {
    flex-direction: column;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .quote-card.reference {
    grid-column: auto;
  }

  .formula-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .formula-card strong {
    transform: rotate(90deg);
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-copy strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .source-line {
    align-items: flex-start;
  }

  .rate-number {
    gap: 5px;
  }

  .rate-number strong {
    font-size: 40px;
  }

  .rate-number span,
  .rate-number small {
    font-size: 15px;
  }

  .rates-meta {
    flex-direction: column;
  }

  .source-selector {
    grid-template-columns: 1fr;
  }

  .quick-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .swap-button {
    top: 191px;
  }

  .quote-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .verified-badge {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

/* DólarCanadienseHoy brand layer */
:root {
  --accent: #f5c542;
  --accent-strong: #d9a91f;
  --brand-red: #e63946;
  --brand-navy: #0b1220;
  --brand-navy-2: #131a2b;
}

.brand-logo {
  min-width: 0;
}

.brand-logo img {
  display: block;
  width: 246px;
  height: auto;
}

.site-header .brand-logo img {
  width: 236px;
}

.footer-brand img {
  width: 260px;
}

.button.text-button {
  min-height: 50px;
  padding-inline: 10px;
  color: #d5dde6;
  background: transparent;
}

.button.text-button:hover,
.button.text-button:focus-visible {
  color: var(--accent);
  box-shadow: none;
}

.transfer-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgba(245, 197, 66, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(7, 16, 29, 0.26));
}

.transfer-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(245, 197, 66, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.transfer-heading {
  align-items: flex-start;
}

.disclosure-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245, 197, 66, 0.24);
  border-radius: 999px;
  color: #e8d591;
  background: rgba(245, 197, 66, 0.075);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.disclosure-chip::before {
  content: "i";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #111722;
  background: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.transfer-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10, 23, 39, 0.74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.transfer-toolbar label {
  display: block;
  margin-bottom: 8px;
  color: #aab6c3;
  font-size: 12px;
  font-weight: 750;
}

.transfer-toolbar small {
  display: block;
  margin-top: 7px;
  color: #738090;
  font-size: 10px;
}

.transfer-amount-input {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(245, 197, 66, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.transfer-amount-input span {
  color: var(--accent);
  font-size: 21px;
  font-weight: 900;
}

.transfer-amount-input input {
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 0;
  outline: 0;
  color: #f7f9fb;
  background: transparent;
  font-size: 28px;
  font-weight: 850;
}

.transfer-summary {
  display: grid;
  justify-items: end;
  text-align: right;
}

.transfer-summary span {
  color: #8f9cab;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.transfer-summary strong {
  margin-top: 2px;
  color: #fff4c4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.transfer-summary small {
  color: #9aa6b4;
  font-size: 12px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(19, 35, 56, 0.92), rgba(8, 19, 33, 0.9));
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.19);
}

.provider-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.sponsored-provider {
  border-color: rgba(245, 197, 66, 0.36);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 197, 66, 0.17), transparent 40%),
    linear-gradient(155deg, rgba(30, 38, 48, 0.96), rgba(12, 22, 34, 0.94));
}

.verified-provider {
  background:
    radial-gradient(circle at 100% 0, rgba(67, 211, 158, 0.11), transparent 40%),
    linear-gradient(155deg, rgba(19, 35, 56, 0.92), rgba(8, 19, 33, 0.9));
}

.provider-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.provider-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #121923;
  background: linear-gradient(135deg, #ffe784, #d2a121);
  font-size: 13px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.partner-logo {
  color: #f5f7fa;
  background: linear-gradient(145deg, #29364a, #172235);
}

.verified-logo {
  color: #082019;
  background: linear-gradient(145deg, #75e6bd, #2cbb8a);
}

.provider-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neutral-label {
  color: #cbd4de;
  background: rgba(255, 255, 255, 0.055);
}

.sponsored-label {
  color: #151a21;
  background: var(--accent);
}

.verified-label {
  color: #7de7c1;
  border: 1px solid rgba(67, 211, 158, 0.23);
  background: rgba(67, 211, 158, 0.09);
}

.provider-card h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.provider-card > p {
  position: relative;
  z-index: 1;
  min-height: 68px;
  margin: 0;
  color: #9eabba;
  font-size: 13px;
  line-height: 1.7;
}

.provider-facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.provider-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.provider-facts dt {
  color: #778493;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.provider-facts dd {
  margin: 0;
  color: #eef2f6;
  font-size: 11px;
  font-weight: 750;
  text-align: right;
}

.muted-facts dd {
  color: #bdc7d1;
}

.provider-button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.sponsor-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(245, 197, 66, 0.19);
  border-radius: 18px;
  background: rgba(245, 197, 66, 0.055);
}

.sponsor-strip-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #171b22;
  background: var(--accent);
  font-size: 16px;
}

.sponsor-strip div {
  display: grid;
  gap: 2px;
}

.sponsor-strip small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sponsor-strip strong {
  font-size: 13px;
}

.affiliate-disclosure {
  max-width: 920px;
  margin: 18px auto 0;
  color: #7e8a98;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.affiliate-disclosure strong {
  color: #aeb8c4;
}

.alerts-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 12%, rgba(230, 57, 70, 0.11), transparent 31%),
    radial-gradient(circle at 88% 88%, rgba(245, 197, 66, 0.11), transparent 33%),
    #091423;
}

.alerts-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1fr) minmax(250px, 0.72fr);
  align-items: center;
  gap: 34px;
}

.alerts-copy h2,
.business-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.alerts-copy > p:not(.overline) {
  margin: 22px 0 0;
  color: #aab5c1;
  font-size: 16px;
  line-height: 1.75;
}

.alert-benefits {
  margin-top: 24px;
}

.pro-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 13px;
  margin-top: 28px;
  padding: 15px 17px;
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: 16px;
  background: rgba(245, 197, 66, 0.055);
}

.pro-pill span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #141a22;
  background: linear-gradient(135deg, #ffe989, #d8a91d);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.pro-pill strong {
  font-size: 18px;
}

.pro-pill small {
  color: #83909e;
  font-size: 10px;
}

.alert-form {
  padding: 26px;
  border: 1px solid rgba(8, 17, 31, 0.09);
  border-radius: 26px;
  color: #182330;
  background: #f5f3ec;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}

.form-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: #121923;
  background: var(--accent);
  font-size: 20px;
  font-weight: 900;
}

.form-heading small {
  color: #737c86;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 2px 0 0;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.form-label,
.channel-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: #59636e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.target-input {
  display: flex;
  align-items: center;
  min-height: 64px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 15px;
  background: #ffffff;
}

.target-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #17212c;
  background: transparent;
  font-size: 30px;
  font-weight: 850;
}

.target-input span {
  color: #4e5965;
  font-size: 15px;
  font-weight: 800;
}

.channel-fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.channel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 5px;
  border-radius: 13px;
  background: rgba(8, 17, 31, 0.07);
}

.channel-option {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #6f7984;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.channel-option.active {
  color: #151c25;
  background: #ffffff;
  box-shadow: 0 7px 22px rgba(8, 17, 31, 0.08);
}

.contact-input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 13px;
  outline: 0;
  color: #17212c;
  background: #ffffff;
  font-size: 14px;
}

.contact-input:focus,
.target-input:focus-within {
  border-color: rgba(185, 137, 4, 0.48);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.12);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: #626c77;
  font-size: 10px;
  line-height: 1.55;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #d5a91e;
  flex: 0 0 auto;
}

.full-button {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: #7e8791;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.alert-phone {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background: #050b13;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(1.6deg);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px 13px;
  color: #8c97a4;
  font-size: 8px;
  font-weight: 750;
}

.phone-screen {
  min-height: 420px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 4%, rgba(245, 197, 66, 0.14), transparent 40%),
    #0a1524;
}

.notification-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.notification-card img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.notification-card strong {
  font-size: 11px;
}

.notification-card p {
  margin: 4px 0;
  color: #c4cdd6;
  font-size: 9px;
  line-height: 1.45;
}

.notification-card small {
  color: #718090;
  font-size: 8px;
}

.mini-rate-card {
  display: grid;
  justify-items: center;
  margin-top: 42px;
  padding: 27px 12px;
  border: 1px solid rgba(245, 197, 66, 0.14);
  border-radius: 20px;
  background: rgba(245, 197, 66, 0.055);
  text-align: center;
}

.mini-rate-card small {
  color: #a2adba;
  font-size: 9px;
}

.mini-rate-card strong {
  margin: 4px 0 0;
  color: #fff0ae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.mini-rate-card span {
  color: #778493;
  font-size: 9px;
}

.phone-screen > p {
  max-width: 170px;
  margin: 32px auto 0;
  color: #6f7b89;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.business-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 86%, rgba(245, 197, 66, 0.07), transparent 31%),
    rgba(255, 255, 255, 0.012);
}

.business-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  margin-bottom: 42px;
}

.business-heading h2 {
  max-width: 800px;
}

.business-heading p:not(.overline) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #aab5c1;
  font-size: 16px;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 27, 45, 0.76);
}

.featured-plan {
  border-color: rgba(245, 197, 66, 0.5);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 197, 66, 0.17), transparent 42%),
    rgba(18, 30, 45, 0.94);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.popular-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #151a21;
  background: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-name {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pricing-name span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 11px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
}

.pricing-name h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 30px 0 23px;
}

.price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.price small {
  color: #798694;
  font-size: 10px;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: #aab5c1;
  font-size: 11px;
  line-height: 1.5;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 19px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.08);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 12px;
}

.api-plan .pricing-name span {
  color: #77b5ff;
  border-color: rgba(102, 168, 255, 0.25);
}

.api-plan li::before {
  background: #66a8ff;
  box-shadow: 0 0 0 4px rgba(102, 168, 255, 0.08);
}

.pilot-pricing {
  margin: 18px 0 0;
  color: #778493;
  font-size: 10px;
  text-align: center;
}

.source-subhead {
  margin-top: 10px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .site-header .brand-logo img {
    width: 210px;
  }

  .alerts-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

  .alert-phone {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .provider-card {
    min-height: 0;
  }

  .provider-card > p {
    min-height: 0;
  }

  .alerts-shell {
    grid-template-columns: 1fr;
  }

  .alerts-copy {
    max-width: 680px;
  }

  .alert-form {
    max-width: 620px;
  }

  .business-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header .brand-logo img {
    width: 190px;
  }

  .footer-brand img {
    width: 230px;
  }

  .hero-actions .text-button {
    width: auto;
  }

  .transfer-toolbar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .transfer-summary {
    justify-items: start;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .transfer-summary strong {
    font-size: 42px;
  }

  .sponsor-strip {
    grid-template-columns: auto 1fr;
  }

  .sponsor-strip .text-link {
    grid-column: 1 / -1;
    padding-left: 57px;
  }

  .alerts-copy h2,
  .business-heading h2 {
    font-size: clamp(38px, 11.5vw, 54px);
  }

  .alert-form {
    padding: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .site-header .brand-logo img {
    width: 170px;
  }

  .hero-actions .text-button {
    width: 100%;
  }

  .provider-card,
  .pricing-card {
    padding: 20px;
  }

  .provider-facts div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .provider-facts dd {
    text-align: left;
  }

  .sponsor-strip {
    grid-template-columns: 1fr;
  }

  .sponsor-strip .text-link {
    grid-column: auto;
    padding-left: 0;
  }

  .transfer-summary strong {
    font-size: 36px;
  }
}

/* DólarCanadienseHoy brand layer */
:root {
  --accent: #f5c542;
  --accent-strong: #eeb51c;
  --red: #e63946;
  --brand-navy: #0b1220;
  --brand-navy-2: #131a2b;
  --brand-gold: #f5c542;
  --brand-gold-dark: #c89d2a;
}

.brand.brand-logo {
  display: inline-flex;
  width: 244px;
  min-width: 190px;
  height: 58px;
  align-items: center;
}

.brand.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand.brand-logo {
  width: 270px;
  max-width: 100%;
  height: auto;
}

.text-button {
  min-height: 50px;
  padding-inline: 10px;
  color: var(--accent);
  background: transparent;
}

.text-button:hover,
.text-button:focus-visible {
  color: #ffe38a;
  transform: translateX(2px);
}

.text-button span {
  transition: transform 0.2s ease;
}

.text-button:hover span,
.text-button:focus-visible span {
  transform: translateX(4px);
}

.transfer-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 10%, rgba(245, 197, 66, 0.1), transparent 29%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.025));
}

.transfer-section::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(245, 197, 66, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.transfer-heading {
  position: relative;
  z-index: 1;
}

.disclosure-chip,
.sponsor-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: 999px;
  color: #f7dc7d;
  background: rgba(245, 197, 66, 0.07);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.transfer-toolbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7, 17, 30, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.transfer-toolbar label,
.form-label,
.alert-form label:not(.consent-row) {
  display: block;
  margin-bottom: 8px;
  color: #aeb9c5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.transfer-toolbar small {
  display: block;
  margin-top: 8px;
  color: #778697;
  font-size: 10px;
}

.transfer-amount-input {
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.transfer-amount-input span {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 64px;
  color: #131a2b;
  background: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.transfer-amount-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.transfer-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 20px;
  min-height: 78px;
  padding: 17px 19px;
  border: 1px solid rgba(245, 197, 66, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.09), rgba(245, 197, 66, 0.025));
}

.transfer-summary span {
  color: #9aa7b5;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.transfer-summary strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--accent);
  font-size: clamp(22px, 3vw, 35px);
  letter-spacing: -0.04em;
  text-align: right;
}

.transfer-summary small {
  margin: 0;
}

.provider-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.027);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.provider-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.reference-provider {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.032);
}

.sponsored-provider {
  border-color: rgba(245, 197, 66, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(245, 197, 66, 0.045), rgba(255, 255, 255, 0.027));
}

.verified-provider {
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 211, 158, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.027);
}

.provider-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 27px;
}

.provider-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.cb-logo {
  color: #101722;
  background: linear-gradient(135deg, #ffe27a, #f5c542 55%, #c89d2a);
  box-shadow: 0 10px 24px rgba(245, 197, 66, 0.17);
}

.partner-logo {
  color: var(--accent);
  border: 1px dashed rgba(245, 197, 66, 0.34);
  background: rgba(245, 197, 66, 0.06);
}

.verified-logo {
  color: var(--green);
  border: 1px solid rgba(67, 211, 158, 0.2);
  background: rgba(67, 211, 158, 0.065);
}

.provider-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neutral-label {
  color: #d6dee7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.sponsored-label {
  color: #ffe27a;
  border: 1px solid rgba(245, 197, 66, 0.23);
  background: rgba(245, 197, 66, 0.08);
}

.verified-label {
  color: #74e6b8;
  border: 1px solid rgba(67, 211, 158, 0.2);
  background: rgba(67, 211, 158, 0.065);
}

.provider-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.provider-card > p {
  min-height: 62px;
  margin: 12px 0 20px;
  color: #91a0ae;
  font-size: 13px;
  line-height: 1.65;
}

.provider-facts {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.provider-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 49px;
  border-bottom: 1px solid var(--line);
}

.provider-facts dt {
  color: #788797;
  font-size: 10px;
}

.provider-facts dd {
  margin: 0;
  color: #e6ebf0;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.reference-provider .provider-facts dd {
  color: var(--accent);
}

.muted-facts dd {
  color: #aeb9c5;
}

.provider-button {
  width: 100%;
  margin-top: auto;
}

.sponsor-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(245, 197, 66, 0.18);
  border-radius: 18px;
  background: rgba(245, 197, 66, 0.045);
}

.sponsor-strip-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #151b24;
  background: var(--accent);
  font-size: 15px;
}

.sponsor-strip div {
  display: grid;
}

.sponsor-strip small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sponsor-strip strong {
  margin-top: 3px;
  font-size: 13px;
}

.sponsor-strip .text-link {
  margin: 0;
  white-space: nowrap;
}

.affiliate-disclosure {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 18px 0 0;
  color: #6f7e8d;
  font-size: 10px;
  line-height: 1.7;
}

.affiliate-disclosure strong {
  color: #aeb8c3;
}

.alerts-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 35%, rgba(230, 57, 70, 0.09), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(245, 197, 66, 0.08), transparent 30%),
    #0a1524;
}

.alerts-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.92fr) minmax(250px, 0.56fr);
  align-items: center;
  gap: 34px;
}

.alerts-copy h2,
.business-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.alerts-copy > p:not(.overline) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #9ba8b5;
  font-size: 15px;
  line-height: 1.75;
}

.alert-benefits {
  margin-top: 28px;
}

.pro-pill {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 3px 10px;
  margin-top: 28px;
  padding: 13px 15px;
  border: 1px solid rgba(245, 197, 66, 0.18);
  border-radius: 15px;
  background: rgba(245, 197, 66, 0.055);
}

.pro-pill span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #111821;
  background: var(--accent);
  font-size: 10px;
  font-weight: 950;
}

.pro-pill strong {
  font-size: 18px;
}

.pro-pill small {
  color: #7f8c99;
  font-size: 9px;
}

.alert-form {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: rgba(9, 20, 35, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 23px;
}

.form-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #111821;
  background: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.form-heading small {
  color: #7f8c99;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 2px 0 0;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.target-input,
.contact-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.target-input {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}

.target-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--white);
  background: transparent;
  font-size: 26px;
  font-weight: 850;
}

.target-input span {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.channel-fieldset {
  margin: 0 0 19px;
  padding: 0;
  border: 0;
}

.channel-fieldset legend {
  margin-bottom: 8px;
  color: #aeb9c5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.channel-option {
  min-height: 39px;
  border: 0;
  border-radius: 10px;
  color: #7f8d9b;
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.channel-option.active {
  color: #111821;
  background: var(--accent);
}

.contact-input {
  padding: 0 15px;
  outline: 0;
  margin-bottom: 15px;
}

.target-input:focus-within,
.contact-input:focus {
  border-color: rgba(245, 197, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.08);
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  margin-bottom: 17px;
  color: #7f8c99;
  font-size: 10px;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.full-button,
.full-width {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: #657383;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.alert-phone {
  justify-self: end;
  width: 100%;
  max-width: 285px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #050b13;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px 12px;
  color: #7f8b98;
  font-size: 8px;
}

.phone-screen {
  min-height: 410px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 197, 66, 0.08), transparent 34%),
    #0c1726;
}

.notification-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.notification-card img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.notification-card strong {
  font-size: 11px;
}

.notification-card p {
  margin: 4px 0;
  color: #a8b3be;
  font-size: 9px;
  line-height: 1.45;
}

.notification-card p span {
  color: var(--accent);
  font-weight: 850;
}

.notification-card small {
  color: #647384;
  font-size: 8px;
}

.mini-rate-card {
  display: grid;
  margin-top: 18px;
  padding: 20px 15px;
  border-radius: 18px;
  color: #151b24;
  background: linear-gradient(135deg, #ffe27a, #f5c542 58%, #c89d2a);
}

.mini-rate-card small {
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.mini-rate-card strong {
  margin: 7px 0 1px;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.mini-rate-card span {
  font-size: 9px;
  font-weight: 750;
}

.phone-screen > p {
  margin: 22px 6px 0;
  color: #657383;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.business-section {
  position: relative;
  background:
    radial-gradient(circle at 70% 0%, rgba(245, 197, 66, 0.07), transparent 29%),
    var(--bg);
}

.business-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 34px;
  margin-bottom: 42px;
}

.business-heading > div > p:not(.overline) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #8e9ba9;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 400px;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.026);
}

.pricing-card.featured-plan {
  border-color: rgba(245, 197, 66, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.15), transparent 39%),
    rgba(245, 197, 66, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.pricing-card.api-plan {
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 168, 255, 0.1), transparent 39%),
    rgba(255, 255, 255, 0.026);
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #141b24;
  background: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pricing-name {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pricing-name span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--accent);
  border: 1px solid rgba(245, 197, 66, 0.18);
  background: rgba(245, 197, 66, 0.055);
  font-size: 9px;
  font-weight: 900;
}

.pricing-name h3 {
  margin: 0;
  font-size: 17px;
}

.price {
  display: grid;
  margin: 32px 0 27px;
}

.price strong {
  color: var(--white);
  font-size: 36px;
  letter-spacing: -0.045em;
}

.price small {
  margin-top: 3px;
  color: #718090;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: #94a1af;
  font-size: 11px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(67, 211, 158, 0.08);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pilot-pricing {
  margin: 18px 0 0;
  color: #657383;
  font-size: 9px;
  text-align: center;
}

.source-subhead {
  margin-top: 13px;
}

@media (max-width: 1180px) {
  .brand.brand-logo {
    width: 214px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .alerts-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  }

  .alert-phone {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .brand.brand-logo {
    width: 205px;
  }

  .transfer-toolbar,
  .provider-grid,
  .alerts-shell {
    grid-template-columns: 1fr;
  }

  .provider-card {
    min-height: auto;
  }

  .provider-card > p {
    min-height: 0;
  }

  .alerts-copy {
    max-width: 760px;
  }

  .alert-form {
    max-width: 620px;
  }

  .business-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .brand.brand-logo {
    width: 172px;
    min-width: 156px;
    height: 48px;
  }

  .brand.brand-logo img {
    max-height: 48px;
  }

  .hero-actions .text-button {
    width: auto;
    justify-self: start;
  }

  .transfer-toolbar {
    padding: 17px;
  }

  .transfer-summary {
    grid-template-columns: 1fr;
  }

  .transfer-summary strong {
    grid-row: auto;
    grid-column: auto;
    text-align: left;
  }

  .sponsor-strip {
    grid-template-columns: auto 1fr;
  }

  .sponsor-strip .text-link {
    grid-column: 1 / -1;
    margin-left: 56px;
  }

  .alerts-copy h2,
  .business-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .brand.brand-logo {
    width: 150px;
    min-width: 140px;
  }

  .header-inner {
    gap: 10px;
  }

  .transfer-amount-input input {
    font-size: 22px;
  }

  .provider-card,
  .alert-form,
  .pricing-card {
    padding: 19px;
  }

  .sponsor-strip {
    grid-template-columns: 1fr;
  }

  .sponsor-strip .text-link {
    grid-column: auto;
    margin-left: 0;
  }

  .pro-pill {
    grid-template-columns: auto 1fr;
  }
}


/* Brand system and monetization layer */
.brand-v2 {
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

.brand-copy-v2 {
  display: grid;
  gap: 1px;
  letter-spacing: 0;
}

.brand-copy-v2 strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand-copy-v2 strong span {
  color: var(--ink);
}

.brand-copy-v2 strong em {
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy-v2 small {
  color: #7f8b9b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
  color: #93a0af;
  font-size: 11px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 211, 158, 0.08);
}

.panel-alert-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0 -4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #d7dee6;
  font-size: 11px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.panel-alert-link:hover,
.panel-alert-link:focus-visible {
  color: var(--accent);
}

.comparison-section {
  position: relative;
  border-top: 1px solid rgba(245, 197, 66, 0.08);
  border-bottom: 1px solid rgba(245, 197, 66, 0.08);
  background:
    radial-gradient(circle at 8% 14%, rgba(230, 57, 70, 0.075), transparent 31%),
    radial-gradient(circle at 91% 16%, rgba(245, 197, 66, 0.1), transparent 30%),
    rgba(5, 12, 22, 0.36);
}

.comparison-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.comparison-toolbar > div {
  display: grid;
  gap: 3px;
  flex-shrink: 0;
}

.comparison-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-toolbar strong {
  font-size: 19px;
  letter-spacing: -0.03em;
}

.comparison-toolbar p {
  max-width: 640px;
  margin: 0;
  color: #8c99a8;
  font-size: 11px;
  line-height: 1.65;
  text-align: right;
}

.provider-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}

.provider-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.026);
  overflow: hidden;
}

.provider-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.08), transparent 68%);
  pointer-events: none;
}

.reference-provider {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.037);
}

.commercial-provider {
  border-color: rgba(245, 197, 66, 0.19);
  background:
    linear-gradient(145deg, rgba(245, 197, 66, 0.07), transparent 43%),
    rgba(255, 255, 255, 0.026);
}

.verified-provider {
  background:
    linear-gradient(145deg, rgba(67, 211, 158, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.026);
}

.provider-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.listing-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reference-label {
  color: #0b1220;
  background: var(--accent);
}

.sponsored-label {
  color: #f8d96f;
  border: 1px solid rgba(245, 197, 66, 0.24);
  background: rgba(245, 197, 66, 0.08);
}

.verified-label {
  color: #83e8c2;
  border: 1px solid rgba(67, 211, 158, 0.23);
  background: rgba(67, 211, 158, 0.075);
}

.provider-updated,
.provider-availability {
  color: #778596;
  font-size: 9px;
  font-weight: 750;
}

.provider-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
}

.provider-brand img {
  width: 48px;
  height: 48px;
}

.provider-brand > div {
  display: grid;
  gap: 3px;
}

.provider-brand h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.provider-brand p {
  margin: 0;
  color: #7d8a99;
  font-size: 10px;
}

.provider-placeholder-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #0b1220;
  background: linear-gradient(145deg, #ffe883, #c89d2a);
  font-size: 18px;
  font-weight: 950;
}

.provider-placeholder-icon.shield {
  color: #08231a;
  background: linear-gradient(145deg, #8cf0cb, #43d39e);
}

.provider-amount {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: 31px;
  padding: 21px;
  border: 1px solid rgba(245, 197, 66, 0.14);
  border-radius: 18px;
  background: rgba(245, 197, 66, 0.065);
}

.provider-amount > span {
  color: #9aa6b4;
  font-size: 10px;
}

.provider-amount > strong {
  color: var(--ink);
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.provider-amount > small {
  color: #778596;
  font-size: 9px;
}

.muted-provider-amount {
  min-height: 112px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.muted-provider-amount > strong {
  max-width: 250px;
  font-size: 20px;
  line-height: 1.2;
}

.provider-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 20px;
}

.provider-facts div {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.provider-facts span {
  color: #758292;
  font-size: 9px;
}

.provider-facts strong {
  font-size: 14px;
}

.provider-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.provider-benefits li {
  position: relative;
  padding-left: 18px;
  color: #93a0ae;
  font-size: 11px;
}

.provider-benefits li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.verified-provider .provider-benefits li::before {
  background: var(--green);
}

.provider-card .button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.ranking-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(67, 211, 158, 0.14);
  border-radius: 17px;
  background: rgba(67, 211, 158, 0.045);
}

.ranking-promise svg {
  width: 25px;
  height: 25px;
  color: var(--green);
}

.ranking-promise strong {
  font-size: 12px;
}

.ranking-promise p {
  margin: 4px 0 0;
  color: #8795a4;
  font-size: 10px;
  line-height: 1.65;
}

.alerts-section {
  position: relative;
  overflow: hidden;
}

.alerts-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(circle at 50% 45%, rgba(245, 197, 66, 0.12), transparent 64%);
  pointer-events: none;
}

.alerts-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 74px;
  padding: 56px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(245, 197, 66, 0.055), rgba(255, 255, 255, 0.012)),
    #0d1727;
  box-shadow: 0 36px 95px rgba(0, 0, 0, 0.25);
}

.alerts-copy h2 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.4vw, 74px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.alerts-copy > p:not(.overline) {
  max-width: 620px;
  margin: 23px 0 0;
  color: #9aa7b5;
  font-size: 15px;
  line-height: 1.75;
}

.alerts-features {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.alerts-features > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
}

.alerts-features > div > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #0b1220;
  background: var(--accent);
  font-size: 9px;
  font-weight: 950;
}

.alerts-features p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: #8593a3;
  font-size: 11px;
}

.alerts-features strong {
  color: #eef2f6;
  font-size: 12px;
}

.alert-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 24px;
  color: #121a25;
  background: #f3f4f6;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.28);
}

.alert-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.alert-card-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alert-card-head > div > div {
  display: grid;
  gap: 2px;
}

.alert-card-head strong {
  font-size: 15px;
}

.alert-card-head small {
  color: #6f7985;
  font-size: 9px;
}

.alert-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #f5c542;
  font-size: 18px;
}

.beta-pill {
  padding: 5px 8px;
  border-radius: 999px;
  color: #67500d;
  background: #f6df91;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.alert-card label {
  margin-top: 4px;
  color: #37414d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.alert-card input,
.alert-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  border-radius: 12px;
  color: #0b1220;
  background: #ffffff;
  outline: none;
  padding: 0 14px;
  font-size: 13px;
}

.alert-card input:focus,
.alert-card select:focus {
  border-color: #c89d2a;
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.17);
}

.target-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  border-radius: 12px;
  background: #fff;
}

.target-input span {
  color: #616c78;
  font-size: 11px;
  font-weight: 800;
}

.target-input input {
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: right;
}

.target-input input:focus {
  box-shadow: none;
}

.alert-card .button {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 2px 0 0;
  color: #6d7783;
  font-size: 8px;
  line-height: 1.55;
}

.business-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.pricing-card.featured-plan {
  border-color: rgba(245, 197, 66, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 197, 66, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.2);
}

.pricing-card.api-plan {
  border-color: rgba(102, 168, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 168, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.popular-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #0b1220;
  background: var(--accent);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-head {
  display: grid;
  gap: 13px;
}

.pricing-head > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-head > strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.pricing-head small {
  color: #8996a4;
  font-size: 12px;
  letter-spacing: 0;
}

.pricing-card > p {
  min-height: 52px;
  margin: 18px 0 0;
  color: #8b98a7;
  font-size: 12px;
  line-height: 1.6;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 21px;
  color: #a1adba;
  font-size: 11px;
}

.pricing-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-disclosure {
  margin: 18px auto 0;
  color: #748191;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1160px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reference-provider {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .alerts-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .alert-card {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 41px;
    height: 41px;
  }

  .brand-copy-v2 strong {
    font-size: 17px;
    gap: 5px;
  }

  .brand-copy-v2 strong em {
    font-size: 12px;
  }

  .brand-copy-v2 small {
    display: none;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .comparison-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-toolbar p {
    text-align: left;
  }

  .provider-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .reference-provider {
    grid-column: auto;
    min-height: 470px;
  }

  .alerts-shell {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .alerts-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .alert-card {
    padding: 21px;
    border-radius: 20px;
  }

  .ranking-promise {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .brand-copy-v2 strong span:last-child {
    display: inline;
  }

  .provider-facts {
    grid-template-columns: 1fr;
  }

  .provider-card {
    padding: 20px;
  }

  .provider-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .alert-card-head {
    align-items: flex-start;
  }
}


.legal-page-body {
  background: #0b1220;
}

.legal-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 18, 32, 0.94);
  backdrop-filter: blur(16px);
}

.legal-page-header .header-inner {
  min-height: 72px;
}

.legal-page-back {
  color: #9aa7b5;
  font-size: 12px;
  font-weight: 800;
}

.legal-page-back:hover,
.legal-page-back:focus-visible {
  color: var(--accent);
}

.legal-page-main {
  padding: 88px 0 110px;
}

.legal-document {
  max-width: 860px;
  margin-inline: auto;
}

.legal-document h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.legal-document .legal-updated {
  margin: 18px 0 0;
  color: #748191;
  font-size: 11px;
}

.legal-document .legal-intro {
  margin: 30px 0 0;
  padding: 22px;
  border: 1px solid rgba(245, 197, 66, 0.16);
  border-radius: 18px;
  color: #aab5c0;
  background: rgba(245, 197, 66, 0.05);
  font-size: 14px;
  line-height: 1.75;
}

.legal-document section {
  margin-top: 46px;
}

.legal-document h2 {
  margin: 0 0 14px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.legal-document p,
.legal-document li {
  color: #97a4b2;
  font-size: 13px;
  line-height: 1.8;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-document a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Keep the complete approved wordmark visible on small screens. */
@media (max-width: 460px) {
  .brand-copy-v2 strong span:last-child {
    display: inline;
  }

  .brand-copy-v2 strong {
    gap: 4px;
    font-size: 15px;
  }

  .brand-copy-v2 strong em {
    font-size: 10px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }
}

img.brand-logo {
  border-radius: 12px;
}

.sources-card {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.sources-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.sources-card ul {
  margin: 0 0 12px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.55;
}

.sources-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #aeb9c7;
}

.sources-card a {
  color: var(--accent, #ffcc4d);
  text-decoration: underline;
  text-underline-offset: 2px;
}
