/* ============================================================
   Tally — marketing site stylesheet
   Brand tokens, type system, and shared components.
   Edit colors/spacing here once; every page picks it up.
   ============================================================ */

/* ---- Brand tokens (from the Tally logo + palette handoff) ---- */
:root {
  /* Brand */
  --blue:        #0F5FA5;   /* primary brand — buttons, wordmark on light */
  --blue-deep:   #0A4A82;   /* hover / pressed */
  --blue-darker: #08365F;   /* deep ground accents */
  --gold:        #D9A934;   /* the splash slash + accent */
  --ink:         #1F2937;   /* primary text on light */
  --paper:       #FDFBF4;   /* warm off-white surface */
  --cream:       #FAF4E6;

  /* Player palette (mark bars + accents) */
  --p-purple: #9B7AF0;
  --p-pink:   #E0457B;
  --p-green:  #2BAA6B;
  --p-teal:   #2BAFA6;
  --p-blue:   #1B83E0;
  --p-orange: #ED8136;
  --p-gold:   #D9A934;
  --p-red:    #D24C4C;

  /* Neutrals */
  --bg:        #FFFFFF;
  --bg-soft:   #F4F6F9;
  --bg-warm:   #FBF8F0;
  --line:      #E7EBF0;
  --line-soft: #EFF2F6;
  --txt:       #1F2937;
  --txt-2:     #5A6472;
  --txt-3:     #8A93A1;

  /* Type */
  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, "Cascadia Code", Menlo, monospace;

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(20,30,50,.06), 0 1px 1px rgba(20,30,50,.04);
  --shadow:    0 2px 8px -2px rgba(20,30,50,.10), 0 8px 24px -12px rgba(20,30,50,.14);
  --shadow-lg: 0 30px 70px -30px rgba(8,40,80,.45);

  /* Layout */
  --maxw: 1120px;
  --gutter: 24px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: rgba(15,95,165,.18); }

/* ---- Type helpers ---- */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.lede { font-size: 19px; line-height: 1.6; color: var(--txt-2); text-wrap: pretty; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* ============================================================
   Brand lockup (mark + wordmark)
   ============================================================ */
.lockup { display: inline-flex; align-items: center; gap: 9px; }
.lockup .mark { width: 30px; height: 30px; flex: none; }
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--blue);
}
.lockup .wordmark { font-size: 26px; }
.on-blue .wordmark, .wordmark--light { color: #fff; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px -8px rgba(15,95,165,.6); }
.btn--primary:hover { background: var(--blue-deep); }
.btn--ghost { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); }
.btn--onblue { background: #fff; color: var(--blue); }
.btn--onblue:hover { background: #F2F7FC; }

/* App Store badge (original, non-Apple artwork — swap for Apple's official badge at launch) */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: #111418; color: #fff;
  padding: 11px 20px 11px 18px; border-radius: 14px;
  transition: transform .15s ease, background .15s ease;
}
.appstore:hover { background: #000; transform: translateY(-1px); }
.appstore .glyph { width: 26px; height: 26px; flex: none; }
.appstore .tx { display: flex; flex-direction: column; line-height: 1.15; }
.appstore .tx .small { font-size: 11px; letter-spacing: .02em; opacity: .82; }
.appstore .tx .big { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.appstore--soon { background: #1d222b; cursor: default; }
.appstore--soon:hover { background: #1d222b; transform: none; }
/* Official Apple badge (injected at launch via the APPSTORE switch in index.html) */
.appstore-badge { display: inline-flex; transition: transform .15s ease, opacity .15s ease; }
.appstore-badge:hover { transform: translateY(-1px); opacity: .9; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: 15px; font-weight: 600; color: var(--txt-2); transition: color .15s; }
.site-nav a:hover { color: var(--blue); }
.site-header__cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }
@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-header__cta .btn { padding: 10px 16px; font-size: 14px; }
}

/* ============================================================
   Hero (brand-blue ground)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% -10%, #1B72BE 0%, rgba(27,114,190,0) 60%),
    linear-gradient(180deg, #0F5FA5 0%, #0C4F8C 100%);
  color: #fff;
}
.hero__grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 36px;
  align-items: start; padding: 80px 0 92px;
}
.hero__title {
  font-size: clamp(54px, 7.4vw, 98px); line-height: 0.92; color: #fff; margin-bottom: 20px;
}
.hero__title .gold { color: var(--gold); }
.hero__sub { font-size: 21px; line-height: 1.5; color: #CFE1F3; max-width: 34ch; margin-bottom: 30px; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: 14px; color: #9DBEDD; }
.hero__phone { justify-self: center; }

/* subtle bar motif bottom accent */
.hero__bars { display: flex; gap: 7px; margin-bottom: 30px; }
.hero__bars span { width: 10px; height: 40px; border-radius: 3px; }
.hero__mark { width: 92px; height: 92px; margin-bottom: 22px; }
@media (max-width: 920px) { .hero__mark { margin-left: auto; margin-right: auto; } }

/* ============================================================
   Phone mockup (recreated app screens)
   ============================================================ */
.phone {
  width: 320px; border-radius: 44px; padding: 12px;
  background: #0a0c0f; box-shadow: var(--shadow-lg);
}
.phone__screen {
  border-radius: 33px; overflow: hidden; background: var(--app-bg, #EEF0F4);
  position: relative; aspect-ratio: 9 / 19.5;
}
.phone--float { box-shadow: 0 40px 90px -30px rgba(4,24,50,.6); }
/* iOS home indicator */
.home-ind { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); width: 110px; height: 5px; border-radius: 3px; background: #1c1c1e; opacity: .35; }
.is-dark .home-ind { background: #F2F4F8; opacity: .4; }

/* status bar */
.statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px 6px; font-size: 14px; font-weight: 600; color: #1c1c1e;
}
.statusbar .dots { display: flex; align-items: center; gap: 5px; }
.statusbar .dots i { display: block; width: 16px; height: 11px; border-radius: 2px; background: #1c1c1e; opacity: .85; }
.statusbar .dots i.bat { width: 22px; }

/* in-app header */
.appbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px 14px; }
.appbar .brand { display: inline-flex; align-items: center; gap: 7px; }
.appbar .brand .mark { width: 22px; height: 22px; }
.appbar .brand .wm { font-family: var(--display); font-weight: 800; font-size: 23px; letter-spacing: -.04em; color: var(--blue); }
.appbar .gear {
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(20,30,50,.12), 0 1px 2px rgba(20,30,50,.08);
}
.appbar .gear img { width: 18px; height: 18px; }

/* quick cards */
.q-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 14px 4px; }
.q-card {
  background: #fff; border-radius: 14px; padding: 10px 11px;
  display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-sm); min-width: 0;
}
.q-card .tile { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.q-card .tile img { width: 64%; height: 64%; }
.q-card .qt { min-width: 0; }
.q-card .lbl { display: block; font-size: 11.5px; font-weight: 700; color: #1c1c1e; letter-spacing: -.015em; white-space: nowrap; }
.q-card .sub { display: block; font-size: 10px; color: #8e8e93; font-weight: 500; white-space: nowrap; }

.app-section { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8e8e93; padding: 14px 18px 8px; }

/* recent row */
.recent { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 0 14px; }
.recent .r {
  background: #fff; border-radius: 16px; padding: 12px 7px 11px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.recent .r .tile { width: 38px; height: 38px; border-radius: 10px; margin: 0 auto 7px; display: grid; place-items: center; }
.recent .r .tile img { width: 62%; height: 62%; }
.recent .r .nm { font-size: 12.5px; font-weight: 800; color: #1c1c1e; letter-spacing: -.01em; }
.recent .r .status { display: flex; align-items: center; justify-content: center; gap: 3px; font-size: 10px; font-weight: 700; margin-top: 5px; white-space: nowrap; }
.recent .r .status.live { color: #2F6FE0; }
.recent .r .status.start { color: #1c1c1e; font-weight: 500; }
.recent .r .status .dot { width: 5px; height: 5px; border-radius: 50%; background: #2F6FE0; flex: none; }
.recent .r .status .crown { width: 11px; height: 10px; color: #E0457B; display: inline-flex; flex: none; }
.recent .r .status .crown svg { width: 100%; height: 100%; display: block; }
.recent .r .sub { font-size: 8.5px; color: #8e8e93; font-weight: 500; margin-top: 3px; white-space: nowrap; }

/* games grid */
.gg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; padding: 0 14px 30px; }
.gg .g { text-align: center; }
.gg .g .tile { width: 100%; aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; box-shadow: var(--shadow-sm); position: relative; }
.gg .g .tile img { width: 58%; height: 58%; }
.gg .g .tile .pip { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.gg .g .nm { font-size: 10px; font-weight: 600; color: #5a6170; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* dark variant of the screen */
.phone__screen.is-dark { --app-bg: #14161A; }
.is-dark .appbar .brand .wm { color: #fff; }
.is-dark .q-card, .is-dark .recent .r { background: #1F232B; box-shadow: none; }
.is-dark .appbar .gear { background: #1F232B; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.is-dark .q-card .lbl, .is-dark .recent .r .nm, .is-dark .statusbar { color: #F2F4F8; }
.is-dark .q-card .sub, .is-dark .recent .r .sub { color: #888F9E; }
.is-dark .recent .r .status.live { color: #5B95F0; }
.is-dark .recent .r .status.start { color: #F2F4F8; }
.is-dark .recent .r .status .dot { background: #5B95F0; }
.is-dark .statusbar .dots i { background: #F2F4F8; }

/* ============================================================
   Feature cards
   ============================================================ */
.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.fcard:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }
.fcard__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
}
.fcard__icon img { width: 56%; height: 56%; }
.fcard h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin-bottom: 8px; }
.fcard p { font-size: 15.5px; line-height: 1.55; color: var(--txt-2); }

/* ============================================================
   Section heading block
   ============================================================ */
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head .eyebrow { margin-bottom: 14px; display: block; }
.sec-head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.4vw, 48px); letter-spacing: -.035em; line-height: 1.02; margin-bottom: 16px; }
.sec-head p { font-size: 18px; color: var(--txt-2); text-wrap: pretty; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   Games showcase
   ============================================================ */
.games-band { background: var(--bg-warm); }
.games-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 16px;
}
.game-chip { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.game-chip .tile {
  width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .2s ease;
}
.game-chip:hover .tile { transform: translateY(-3px) rotate(-2deg); }
.game-chip .tile img { width: 60%; height: 60%; }
.game-chip .nm { font-size: 13px; font-weight: 600; color: var(--txt-2); text-align: center; }
@media (max-width: 860px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .games-grid { grid-template-columns: repeat(3, 1fr); } .game-chip .tile { width: 72px; height: 72px; } }

/* ============================================================
   Split feature (dark mode showcase)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--blue {
  background: linear-gradient(180deg, #0F5FA5 0%, #0C4F8C 100%); color: #fff; border-radius: var(--r-xl);
  padding: 56px; overflow: hidden;
}
.split--blue .eyebrow { color: var(--gold); }
.split--blue h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px,3.6vw,42px); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 16px; }
.split--blue p { color: #CFE1F3; font-size: 17px; line-height: 1.6; }
.split__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.split__list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 16px; color: #E8F1FA; }
.split__list .ck { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-top: 2px; }
.split__list .ck svg { width: 12px; height: 12px; }

/* ============================================================
   Tip jar / pricing band
   ============================================================ */
.price-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 48px; text-align: center; max-width: 620px; margin: 0 auto; box-shadow: var(--shadow);
}
.price-card .tag { font-family: var(--display); font-weight: 800; font-size: 44px; letter-spacing: -.03em; color: var(--ink); }
.price-card .tag .free { color: var(--blue); }
.price-card .tag .was { font-size: 26px; color: var(--txt-3); text-decoration: line-through; text-decoration-thickness: 2px; vertical-align: middle; margin-left: 4px; font-weight: 700; }
.price-card p { color: var(--txt-2); font-size: 17px; margin: 12px auto 28px; max-width: 42ch; }
.price-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--txt-2);
  background: var(--bg-soft); border-radius: 999px; padding: 9px 16px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  background:
    radial-gradient(900px 500px at 50% -40%, #1B72BE 0%, rgba(27,114,190,0) 60%),
    linear-gradient(180deg, #0F5FA5 0%, #0A4A82 100%);
  color: #fff; text-align: center;
}
.cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(34px,5vw,58px); letter-spacing: -.035em; line-height: 1.02; margin-bottom: 16px; }
.cta p { color: #CFE1F3; font-size: 19px; margin-bottom: 32px; }
.cta .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Beta "notify me" capture (lives in the CTA band) */
.notify { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.notify__input {
  flex: 1 1 260px; min-width: 0; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.10);
  color: #fff; font-size: 16px; /* 16px keeps iOS Safari from auto-zooming on focus */
}
.notify__input::placeholder { color: #A9C6E4; }
.notify__input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.16); }
.notify__btn {
  background: var(--gold); color: #3a2c06; font-weight: 700; font-size: 16px;
  border: none; padding: 13px 24px; border-radius: 12px; cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.notify__btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.notify__msg { min-height: 20px; margin: 14px 0 0; font-size: 14.5px; color: #DCEAF8; }
.notify__alt { margin: 8px 0 0; font-size: 14px; color: #B9D2EC; }
.notify__alt a { color: #fff; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0C1118; color: #AEB6C6; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer .wordmark { color: #fff; font-size: 26px; }
.site-footer .blurb { margin-top: 14px; font-size: 15px; line-height: 1.6; color: #7E8799; max-width: 32ch; }
.fcol h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6B7488; margin-bottom: 16px; }
.fcol ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.fcol a { font-size: 15px; color: #AEB6C6; transition: color .15s; }
.fcol a:hover { color: #fff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-legal .small { font-size: 12.5px; color: #6B7488; }
.footer-legal .tm { font-size: 11.5px; color: #59617280; max-width: 70ch; line-height: 1.5; color: #5A6272; }

/* ============================================================
   Content pages (support / privacy)
   ============================================================ */
.page-hero { background: var(--bg-warm); border-bottom: 1px solid var(--line-soft); padding: 64px 0 56px; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(38px,5.4vw,60px); letter-spacing: -.04em; line-height: 1; margin-bottom: 14px; }
.page-hero p { font-size: 19px; color: var(--txt-2); max-width: 52ch; }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -.02em; margin: 44px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 28px 0 8px; color: var(--ink); }
.prose p { color: var(--txt-2); margin-bottom: 14px; }
.prose ul { color: var(--txt-2); margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--ink); }
.updated { font-family: var(--mono); font-size: 13px; color: var(--txt-3); margin-bottom: 8px; }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 8px; }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 8px; transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: transparent; box-shadow: var(--shadow); }
.contact-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 8px; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.contact-card p { color: var(--txt-2); font-size: 15px; }
.contact-card a.link { color: var(--blue); font-weight: 600; font-size: 16px; }
.contact-card a.link:hover { text-decoration: underline; }

/* FAQ */
.faq { display: grid; gap: 0; max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px; font-size: 18px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 22px; height: 22px; color: var(--txt-3); transition: transform .2s; }
.faq details[open] summary .chev { transform: rotate(90deg); color: var(--blue); }
.faq details > div { padding: 0 4px 22px; color: var(--txt-2); font-size: 16px; line-height: 1.6; }
.faq details > div a { color: var(--blue); font-weight: 600; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 16px; padding: 64px 0 72px; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__bars { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--blue { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .split--blue { padding: 32px 22px; }
  .price-card { padding: 32px 22px; }
}
