/* ─────────────────────────────────────────
   MD3 Design Tokens
───────────────────────────────────────── */
:root {
  --blue-10:  #001C3B;
  --blue-20:  #003063;
  --blue-30:  #00468E;
  --blue-40:  #1565C0;   /* primary */
  --blue-50:  #2979D9;
  --blue-80:  #A8C8FF;
  --blue-90:  #D3E4FF;   /* primary-container */
  --blue-95:  #EBF1FF;
  --blue-99:  #F8FAFF;

  --neutral-10: #1A1C1E;
  --neutral-20: #2E3133;
  --neutral-30: #444749;
  --neutral-40: #5B5E62;  /* secondary */
  --neutral-50: #74777B;
  --neutral-60: #8E9099;  /* outline */
  --neutral-80: #C4C6CF;
  --neutral-90: #E2E2E9;  /* surface-variant */
  --neutral-95: #F0F0F7;
  --neutral-99: #FAFAFA;

  --md-primary:            var(--blue-40);
  --md-on-primary:         #fff;
  --md-primary-container:  var(--blue-90);
  --md-on-primary-container: var(--blue-10);
  --md-secondary:          var(--neutral-40);
  --md-surface:            var(--blue-99);
  --md-surface-variant:    var(--neutral-90);
  --md-background:         #F4F7FF;
  --md-on-surface:         var(--neutral-10);
  --md-on-surface-variant: var(--neutral-40);
  --md-outline:            var(--neutral-60);

  --e1: 0 1px 2px rgba(0,28,59,.06), 0 1px 3px rgba(0,28,59,.05);
  --e2: 0 2px 6px rgba(0,28,59,.08), 0 4px 10px rgba(0,28,59,.06);
  --e3: 0 4px 12px rgba(0,28,59,.10), 0 8px 20px rgba(0,28,59,.08);
  --e4: 0 8px 24px rgba(0,28,59,.12), 0 16px 40px rgba(0,28,59,.10);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--md-background);
  color: var(--md-on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   Typography helpers
───────────────────────────────────────── */
.ff-display { font-family: 'Figtree', sans-serif; }

.display-lg {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.title-lg {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.title-md {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.body-lg { font-size: 1.05rem; line-height: 1.7; }
.body-md { font-size: 0.925rem; line-height: 1.65; }

/* ─────────────────────────────────────────
   Layout
───────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ─────────────────────────────────────────
   Chips / eyebrows
───────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.chip-blue {
  background: var(--md-primary-container);
  color: var(--md-primary);
}

.chip-white {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-filled {
  background: var(--md-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21,101,192,.35);
}
.btn-filled:hover { background: var(--blue-30); box-shadow: 0 6px 20px rgba(21,101,192,.42); }

.btn-tonal {
  background: var(--md-primary-container);
  color: var(--md-primary);
}
.btn-tonal:hover { background: var(--blue-95); }

.btn-outlined {
  background: transparent;
  color: var(--md-primary);
  border: 1.5px solid var(--md-primary);
}
.btn-outlined:hover { background: var(--blue-95); }

.btn-white-outlined {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-white-outlined:hover { background: rgba(255,255,255,.12); }

.mi { font-family: 'Material Icons Round'; font-size: inherit; font-style: normal; line-height: 1; vertical-align: middle; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: rgba(248, 250, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(115,119,127,.10);
  transition: box-shadow .3s;
}

#navbar.scrolled { box-shadow: var(--e2); }

.nav-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo img { width: 36px; height: 36px; display: block; }

.nav-name {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--md-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--md-on-surface-variant);
  transition: background .18s, color .18s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--md-primary-container);
  color: var(--md-primary);
}

.nav-links .nav-pill {
  background: var(--md-primary);
  color: #fff;
  padding: 8px 18px;
  margin-left: 6px;
}

.nav-links .nav-pill:hover { background: var(--blue-30); color: #fff; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--md-on-surface);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#home {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #E8F1FF 0%, #F4F7FF 45%, #EEF4FF 100%);
}

/* Decorative blobs — blue only */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.hero-blob-1 {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(21,101,192,.09) 0%, transparent 68%);
  top: -220px; right: -160px;
}

.hero-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(21,101,192,.07) 0%, transparent 68%);
  bottom: -80px; left: 5%;
}

.hero-blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(41,121,217,.08) 0%, transparent 65%);
  top: 40%; left: 42%;
}

/* Subtle dot-grid texture */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(21,101,192,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 88px;
}

/* Left copy */
.hero-copy { }

.hero-copy .chip { margin-bottom: 22px; }

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--md-primary);
}

.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--md-on-surface-variant);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--md-on-surface-variant);
  font-weight: 500;
}

.hero-meta-item .mi {
  font-size: 16px;
  color: var(--md-primary);
}

/* Right visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Phone shell */
.phone {
  width: 268px;
  background: #18181E;
  border-radius: 44px;
  padding: 7px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 32px 64px rgba(0,28,59,.22),
    0 12px 28px rgba(0,28,59,.18);
  position: relative;
  z-index: 3;
}

/* Notch */
.phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 26px;
  background: #18181E;
  border-radius: 14px;
  z-index: 10;
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: #000;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating info cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: var(--e3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  min-width: 160px;
}

.float-card-a { top: 60px; left: -52px; animation: bob 4.2s ease-in-out infinite; }
.float-card-b { bottom: 100px; right: -48px; animation: bob 4.2s ease-in-out infinite .7s; }
.float-card-c { top: 48%; left: -64px; animation: bob 4.2s ease-in-out infinite 1.4s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.fc-icon-blue { background: var(--md-primary-container); color: var(--md-primary); }
.fc-icon-green { background: #E8F5E9; color: #388E3C; }
.fc-icon-amber { background: #FFF8E1; color: #F9A825; }

.fc-label { font-size: 10px; color: var(--md-on-surface-variant); line-height: 1; margin-bottom: 3px; }
.fc-value { font-family: 'Figtree', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--md-on-surface); }

/* ─────────────────────────────────────────
   WELCOME + BENEFITS
───────────────────────────────────────── */
#benefits {
  background: #fff;
}

.benefits-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.benefits-header .chip { margin-bottom: 16px; }

.benefits-header h2 { margin-bottom: 14px; }

.benefits-header p {
  font-size: 1.05rem;
  color: var(--md-on-surface-variant);
  line-height: 1.72;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--md-surface);
  border-radius: var(--r-xl);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(115,119,127,.10);
  transition: transform .25s, box-shadow .25s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--e3);
}

/* Top accent bar */
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-40), var(--blue-50));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.bc-icon {
  width: 50px; height: 50px;
  background: var(--md-primary-container);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--md-primary);
  font-size: 25px;
  margin-bottom: 18px;
}

.bc-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--md-on-surface);
}

.bc-desc {
  font-size: 0.9rem;
  color: var(--md-on-surface-variant);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   FEATURES TABLE
───────────────────────────────────────── */
#features {
  background: var(--md-background);
}

.features-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.features-intro .chip { margin-bottom: 16px; }
.features-intro h2 { margin-bottom: 14px; }
.features-intro p { font-size: 1.05rem; color: var(--md-on-surface-variant); line-height: 1.7; }

.features-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--e2);
}

.ft-cell {
  background: #fff;
  padding: 38px 40px;
  position: relative;
  transition: background .2s;
}

/* Even rows get tinted background */
.ft-cell:nth-child(4n+3),
.ft-cell:nth-child(4n+4) {
  background: var(--blue-95);
}

.ft-cell:hover { background: var(--blue-99); }

/* Vertical divider between columns */
.ft-cell:nth-child(odd) {
  border-right: 1px solid rgba(21,101,192,.08);
}

/* Horizontal divider between rows */
.ft-cell:nth-child(n+3) {
  border-top: 1px solid rgba(21,101,192,.08);
}

.ft-icon {
  width: 44px; height: 44px;
  background: var(--md-primary-container);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--md-primary);
  font-size: 22px;
  margin-bottom: 14px;
}

.ft-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--md-on-surface);
  margin-bottom: 8px;
}

.ft-desc {
  font-size: 0.875rem;
  color: var(--md-on-surface-variant);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   DOWNLOAD
───────────────────────────────────────── */
#download {
  background: linear-gradient(150deg, var(--blue-30) 0%, var(--blue-40) 55%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dl-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dl-blob-1 {
  width: 700px; height: 700px;
  background: rgba(255,255,255,.05);
  top: -350px; left: -200px;
}

.dl-blob-2 {
  width: 500px; height: 500px;
  background: rgba(255,255,255,.05);
  bottom: -250px; right: -100px;
}

.dl-inner { position: relative; z-index: 1; }

.dl-inner .chip { margin-bottom: 16px; }

.dl-inner h2 {
  color: #fff;
  margin-bottom: 14px;
}

.dl-inner p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 28px;
  border-radius: 16px;
  transition: background .2s, transform .2s;
  min-width: 190px;
}

.store-btn:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-3px);
}

.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

.store-btn-text { text-align: left; }
.store-btn-sub { display: block; font-size: 0.68rem; opacity: .78; margin-bottom: 2px; }
.store-btn-name { display: block; font-family: 'Figtree', sans-serif; font-size: 1.05rem; font-weight: 700; }

/* ─────────────────────────────────────────
   HELP & SUPPORT
───────────────────────────────────────── */
#support {
  background: #fff;
  text-align: center;
}

.support-card {
  background: var(--md-surface);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid rgba(115,119,127,.10);
  box-shadow: var(--e1);
}

.support-icon {
  width: 68px; height: 68px;
  background: var(--md-primary-container);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--md-primary);
  font-size: 34px;
  margin: 0 auto 22px;
}

.support-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-body {
  font-size: 0.97rem;
  color: var(--md-on-surface-variant);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.support-body a {
  color: var(--md-primary);
  font-weight: 500;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--neutral-10);
  padding: 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}

.footer-links { display: flex; gap: 22px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  transition: color .18s;
}

.footer-links a:hover { color: rgba(255,255,255,.9); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; }
.rv-d5 { transition-delay: .40s; }
.rv-d6 { transition-delay: .48s; }
.rv-d7 { transition-delay: .56s; }
.rv-d8 { transition-delay: .64s; }

/* ─────────────────────────────────────────
   DARK MODE
───────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --md-primary:            #A8C8FF;
    --md-on-primary:         #003063;
    --md-primary-container:  #00468E;
    --md-on-primary-container: #D3E4FF;
    --md-surface:            #1C1F26;
    --md-background:         #13161C;
    --md-on-surface:         #E2E2E9;
    --md-on-surface-variant: #C4C6CF;
    --md-outline:            #8E9099;
    --blue-95:               #0A1929;
    --blue-99:               #0D1F35;
  }

  #navbar { background: rgba(19,22,28,.9); }
  #benefits { background: #161920; }
  #support  { background: #161920; }

  .float-card { background: #1C1F26; }
  .benefit-card { background: #1A1D24; }
  .ft-cell { background: #1A1D24; }
  .ft-cell:nth-child(4n+3), .ft-cell:nth-child(4n+4) { background: #141A24; }
  .support-card { background: #1A1D24; }
}

/* ─────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}
.legal-content h2 { font-family: 'Figtree', sans-serif; font-size: 2rem; font-weight: 800; color: var(--md-primary); margin-bottom: 0.5rem; }
.legal-content h4 { font-family: 'Figtree', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--md-on-surface); margin: 1.5rem 0 0.5rem; }
.legal-content h5 { font-family: 'Figtree', sans-serif; font-size: 1rem; font-weight: 700; color: var(--md-on-surface); margin: 1.5rem 0 0.5rem; }
.legal-content p,
.legal-content li  { font-size: 0.9375rem; color: var(--md-on-surface-variant); margin-bottom: 0.75rem; line-height: 1.7; }
.legal-content ul  { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a   { color: var(--md-primary); }
.legal-content a:hover { opacity: 0.8; }

/* ─────────────────────────────────────────
   GDPR BANNER
───────────────────────────────────────── */
.gdpr-banner[hidden] { display: none !important; }

.gdpr-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  background: var(--neutral-10);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
  animation: gdpr-in .35s ease;
}

.gdpr-banner--out { animation: gdpr-out .3s ease forwards; }

@keyframes gdpr-in  { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes gdpr-out { from { transform: translateY(0); }   to { transform: translateY(110%); } }

.gdpr-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin: 0;
  max-width: 680px;
}

.gdpr-text a { color: var(--blue-80); text-decoration: underline; }

.gdpr-btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 680px) {
  .gdpr-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .gdpr-btn    { align-self: flex-end; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { text-align: center; order: 1; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { order: 2; }
  .float-card-a, .float-card-c { display: none; }
  .float-card-b { right: -20px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .features-table { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .ft-cell:nth-child(odd) { border-right: none; border-bottom: 1px solid rgba(21,101,192,.08); }
  .ft-cell:nth-child(4n+3), .ft-cell:nth-child(4n+4) { background: var(--blue-95); }
  .ft-cell:nth-child(n+3) { border-top: none; }
  .ft-cell { padding: 28px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 64px 0 0 0; background: #fff; padding: 20px 24px; gap: 4px; z-index: 800; }
  .nav-links.open .nav-pill { margin-left: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
