/* ========================================================================
   ReevePay — Design tokens
   ======================================================================== */
:root {
  --navy: #020324;
  --navy-deep: #0a0c3a;
  --gold: #ecc74c;
  --gold-soft: #f4dd8a;
  --off-white: #f4f4f4;
  --white: #ffffff;
  --ink: #0c1a30;
  --ink-muted: #6b7690;
  --line-on-navy: rgba(244, 244, 244, 0.14);
  --line-on-light: rgba(20, 44, 80, 0.12);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --container: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================================
   Reset
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* tabular figures everywhere money appears */
.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ========================================================================
   Motion — scroll reveal, respects reduced motion
   ======================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

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

/* ========================================================================
   Logo (built as markup, not a raster asset, so it always matches its background)
   ======================================================================== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo__mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.logo__mark path { fill: var(--gold); }
.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.logo__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: -2px;
}
.logo--on-light .logo__word { color: var(--navy); }
.logo--on-light .logo__mark path { fill: var(--navy); }
.logo--on-light .logo__tag { color: #b8862a; }

/* ========================================================================
   Header
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 3, 36, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-on-navy);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  color: rgba(244, 244, 244, 0.82);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================================================
   Buttons
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 0 0 1px rgba(236, 199, 76, 0.25), 0 6px 22px rgba(236, 199, 76, 0.32), 0 0 40px rgba(236, 199, 76, 0.14);
}
.btn-gold:hover {
  box-shadow: 0 0 0 1px rgba(236, 199, 76, 0.4), 0 10px 30px rgba(236, 199, 76, 0.48), 0 0 56px rgba(236, 199, 76, 0.22);
  transform: translateY(-1px);
}
.btn-ghost-light {
  border-color: rgba(244, 244, 244, 0.35);
  color: var(--white);
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--white);
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(244, 244, 244, 0.78);
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(244, 244, 244, 0.6);
  margin-top: 2px;
}

/* Phone mockup — animated hero visual, echoes the flyer's phone-in-hand style */
.phone-scene {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding: 40px 0;
}
.phone-scene__glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(closest-side, rgba(236, 199, 76, 0.22), transparent 70%);
  filter: blur(10px);
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.phone-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 18.5;
  margin: 0 auto;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(155deg, #2a2f4a, #0f1128 60%);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 4px 0 rgba(255, 255, 255, 0.04) inset,
    0 0 0 1px rgba(244, 244, 244, 0.06);
  animation: phone-float 5s var(--ease) infinite;
  transform-origin: 50% 100%;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
.phone-mock__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--off-white);
  overflow: hidden;
  padding: 18px 16px;
}
.phone-mock__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  background: #0f1128;
  border-radius: 999px;
  z-index: 2;
}
.phone-mock__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
}
.phone-mock__brand svg { width: 16px; height: 16px; }
.phone-mock__brand svg path { fill: var(--navy); }
.phone-mock__brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
}
.phone-mock__card {
  margin-top: 18px;
  background: var(--navy);
  border-radius: 16px;
  padding: 16px;
}
.phone-mock__card-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(244, 244, 244, 0.55);
}
.phone-mock__card-amount {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}
.phone-mock__pill {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.62rem;
  font-weight: 700;
}
.phone-mock__check {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.phone-mock__check-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #16305a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mock__check-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: check-draw 0.6s var(--ease) 0.8s forwards 1;
}
@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}
.phone-mock__check p { font-size: 0.72rem; font-weight: 600; color: var(--ink); }
.phone-mock__check span { font-size: 0.62rem; color: var(--ink-muted); }

/* ========================================================================
   Section shell
   ======================================================================== */
.section { padding: 88px 0; }
.section--deep { background: var(--navy-deep); }
.section--light { background: var(--off-white); color: var(--ink); }
.section--light h2, .section--light h3 { color: var(--ink); }
.section--gold { background: var(--gold); color: var(--navy-deep); }

.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section__head.is-centered { margin-left: auto; margin-right: auto; text-align: center; }
.section__kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section--light .section__kicker { color: #a9791e; }
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; }
.section__head p {
  margin-top: 14px;
  color: rgba(244, 244, 244, 0.72);
  font-size: 1.02rem;
}
.section--light .section__head p { color: var(--ink-muted); }

/* ========================================================================
   Rate board — split-flap departure-board styling (signature element)
   ======================================================================== */
.rate-board {
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(244,244,244,0.03), transparent);
}
.rate-board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-on-navy);
  background: rgba(244, 244, 244, 0.03);
}
.rate-board__bar-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.55);
}
.rate-board__bar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold);
}
.rate-board__bar-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.rate-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-on-navy);
  gap: 12px;
}
.rate-row:last-child { border-bottom: none; }
.rate-row__pair {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
}
.rate-row__pair .from { color: var(--white); font-weight: 600; }
.rate-row__pair .arrow { color: var(--gold); }
.rate-row__pair .to { color: rgba(244, 244, 244, 0.7); }
.rate-row__value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  justify-self: end;
  overflow: hidden;
}
.flap-digit {
  display: inline-block;
  animation: flap-in 0.5s var(--ease) both;
}
@keyframes flap-in {
  from { opacity: 0; transform: translateY(-60%); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.rate-row__note {
  justify-self: end;
  font-size: 0.72rem;
  color: rgba(244, 244, 244, 0.4);
}
.rate-board__footnote {
  padding: 16px 24px;
  font-size: 0.78rem;
  color: rgba(244, 244, 244, 0.45);
  border-top: 1px dashed var(--line-on-navy);
}
.rate-board__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid var(--line-on-navy);
  flex-wrap: wrap;
}
.rate-board__all p {
  font-size: 0.85rem;
  color: rgba(244, 244, 244, 0.6);
}
.rate-board__all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.rate-board__all a:hover { color: var(--gold-soft); }

/* ========================================================================
   Converter / checkout form
   ======================================================================== */
.converter {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 60px rgba(12, 26, 48, 0.12);
}
.converter__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.field select, .field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-on-light);
  background: var(--off-white);
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease);
}
.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--navy);
}
.converter__swap {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-on-light);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), border-color 0.2s var(--ease);
}
.converter__swap:hover { border-color: var(--navy); transform: rotate(180deg); }
.converter__amount { margin-top: 18px; }
.converter__submit { margin-top: 24px; }

.converter__result {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  display: none;
}
.converter__result.is-visible { display: block; }
.converter__result-label {
  font-size: 0.78rem;
  color: rgba(244, 244, 244, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.converter__result-amount {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
}
.converter__result-rate {
  font-size: 0.85rem;
  color: rgba(244, 244, 244, 0.6);
  margin-top: 4px;
}
.converter__result-cta { margin-top: 18px; }
.converter__custom-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding-top: 18px;
  border-top: 1px solid var(--line-on-light);
}
.converter__custom-note a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ========================================================================
   Services grid
   ======================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 199, 76, 0.4);
  background: rgba(244, 244, 244, 0.07);
}
.service-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(236, 199, 76, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.service-card h3 { font-size: 1.08rem; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: rgba(244, 244, 244, 0.65); line-height: 1.55; }

/* ========================================================================
   Why choose — value strip
   ======================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.value-cell {
  background: var(--off-white);
  padding: 30px 24px;
}
.value-cell__num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
}
.value-cell__label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.props-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.prop {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.prop h4 { font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.prop p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.55; }

/* ========================================================================
   Reviews carousel
   ======================================================================== */
.reviews {
  position: relative;
}
.reviews__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 86vw);
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-card__mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.review-card p {
  font-size: 0.98rem;
  color: rgba(244, 244, 244, 0.82);
  line-height: 1.65;
  flex-grow: 1;
}
.review-card__author {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-on-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.review-card__loc { font-size: 0.8rem; color: rgba(244, 244, 244, 0.5); }

.reviews__nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}
.reviews__nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-on-navy);
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.reviews__nav button:hover { border-color: var(--gold); background: rgba(236,199,76,0.08); }

/* ========================================================================
   CTA band — navy backdrop, message on a gold tile, glowing gold button
   ======================================================================== */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__tile {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  flex: 1 1 420px;
}
.cta-band__tile h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--navy-deep);
}
.cta-band__tile p {
  margin-top: 8px;
  color: rgba(10, 12, 58, 0.72);
  font-size: 0.98rem;
}
.cta-band__action { flex: 0 0 auto; }

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer {
  background: var(--navy-deep);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line-on-navy);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__about p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(244, 244, 244, 0.6);
  max-width: 32ch;
  line-height: 1.6;
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-navy);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__socials a:hover { border-color: var(--gold); transform: translateY(-2px); }
.footer__socials svg { width: 16px; height: 16px; stroke: var(--white); }
.footer h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.5);
  margin-bottom: 18px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(244, 244, 244, 0.75);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(244, 244, 244, 0.45);
}

/* ========================================================================
   About page specifics
   ======================================================================== */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line-on-navy);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 18ch; }
.page-hero p { margin-top: 16px; color: rgba(244, 244, 244, 0.72); max-width: 56ch; font-size: 1.05rem; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.story-grid p + p { margin-top: 16px; }
.story-grid p { color: var(--ink-muted); line-height: 1.75; }
.rebrand-note {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border-left: 3px solid var(--gold);
}
.rebrand-note span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: #a9791e; font-weight: 600; }
.rebrand-note p { margin-top: 10px; color: var(--ink); font-size: 0.95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-md);
  padding: 28px;
}
.contact-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(236, 199, 76, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card__icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.contact-card p { font-size: 0.88rem; color: rgba(244, 244, 244, 0.6); margin-bottom: 14px; }
.contact-card a.link { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.country-chips span {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--line-on-light);
  font-size: 0.85rem;
  color: var(--ink);
}

/* ========================================================================
   Full currency table + crypto rates (dedicated rates page)
   ======================================================================== */
.currency-table {
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.currency-table__head, .currency-table__row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr;
  align-items: center;
  padding: 16px 24px;
  gap: 12px;
}
.currency-table__head {
  background: rgba(244, 244, 244, 0.04);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(244, 244, 244, 0.5);
}
.currency-table__row { border-top: 1px solid var(--line-on-navy); }
.currency-table__name { display: flex; flex-direction: column; }
.currency-table__code { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.currency-table__full { font-size: 0.78rem; color: rgba(244, 244, 244, 0.5); }
.currency-table__region {
  font-size: 0.78rem;
  color: rgba(244, 244, 244, 0.5);
}
.currency-table__usd {
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 600;
  justify-self: end;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.crypto-card {
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-md);
  padding: 24px;
}
.crypto-card__symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(236, 199, 76, 0.14);
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.crypto-card__name { font-size: 0.9rem; color: rgba(10, 12, 58, 0.7); }
.crypto-card__price {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 4px;
}

.rates-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(244, 244, 244, 0.55);
}
.rates-note a { color: var(--gold); font-weight: 600; }

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .phone-scene { max-width: 260px; margin-top: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--navy);
    flex-direction: column; align-items: flex-start; padding: 32px 24px; gap: 22px;
    transform: translateX(100%); transition: transform 0.3s var(--ease); overflow-y: auto; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .hero { padding: 56px 0 64px; }
  .rate-row { grid-template-columns: 1fr; row-gap: 6px; }
  .rate-row__value, .rate-row__note { justify-self: start; }
  .converter { padding: 26px; }
  .converter__row { grid-template-columns: 1fr; }
  .converter__swap { justify-self: center; transform: rotate(90deg); }
  .converter__swap:hover { transform: rotate(270deg); }
  .services-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .props-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { flex-direction: column; align-items: stretch; }
  .cta-band__tile { padding: 28px; }
  .currency-table__head { display: none; }
  .currency-table__row { grid-template-columns: 1fr auto; row-gap: 4px; }
  .currency-table__region { grid-column: 1 / -1; }
  .crypto-grid { grid-template-columns: 1fr; }
}
