/* ============================================================
   Weyvox landing — design system mirrored from the iOS app
   (weyvox_app_ios/src/theme/light.ts). App is light-only, so
   the site commits to light. Font: Inter (self-hosted variable).
   ============================================================ */

@font-face {
  font-family: "InterV";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F2F1F5;            /* app: background */
  --surface: #FFFFFF;       /* app: surfaceCard */
  --surface-muted: #EEEEEE; /* app: surfaceMuted */
  --surface-screen: #F5F5F5;/* app: surfaceScreen */
  --ink: #000000;           /* app: textPrimary */
  --muted: #808080;         /* app: textSecondary */
  --muted-2: #595959;       /* app: summaryValueSecondary */
  --line: #EFEFEF;          /* app: borderSubtle */
  --line-strong: #D9D9D9;   /* app: borderStrong */
  --accent: #2F5BFF;        /* app: accent/bluePrimary */
  --accent-soft: rgba(47, 91, 255, 0.10);
  --success: #24D061;       /* app: success */
  --call: #41C934;          /* app: dialerCallButtonBackground */
  --danger: #FF3B30;        /* app: destructiveSystem */
  --btn: #000000;           /* app: buttonPrimary */
  --btn-text: #FFFFFF;
  --shadow-card: 0 1px 2px rgba(184,184,184,.14), 0 6px 22px -12px rgba(120,120,135,.30);
  --shadow-float: 0 2px 6px rgba(184,184,184,.16), 0 22px 50px -20px rgba(90,92,110,.34);
  --r-pill: 999px;   /* app buttonRadius 25 on h50 = pill */
  --r-card: 24px;
  --r-xl: 34px;      /* app dialogRadius 35 */
  --sans: "InterV", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.62; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -0.022em; text-wrap: balance; line-height: 1.12; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .01em; color: var(--accent);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- Buttons (app: black pill, h50, r25) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: -0.005em;
  min-height: 50px; padding: 0 24px; border-radius: var(--r-pill); cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .22s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--btn); color: var(--btn-text); }
.btn-primary:hover { box-shadow: 0 12px 28px -12px rgba(0,0,0,.5); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 15px; }
.btn .store { font-size: 10.5px; line-height: 1.08; text-align: left; font-weight: 450; opacity: .82; }
.btn .store b { display: block; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,241,245,.74);
  backdrop-filter: saturate(1.7) blur(16px); -webkit-backdrop-filter: saturate(1.7) blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
header.nav.scrolled { border-bottom-color: var(--line); background: rgba(242,241,245,.88); }
.nav-in { display: flex; align-items: center; gap: 26px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -0.03em; }
.brand .mark { width: 28px; height: 28px; flex: none; border-radius: 8px; display: block; }
.nav-links { display: flex; gap: 30px; margin-left: 10px; }
.nav-links a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.lang { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--r-pill); overflow: hidden; background: var(--surface); }
.lang a, .lang span {
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  padding: 7px 10px; color: var(--muted); transition: .2s; line-height: 1;
  display: inline-flex; align-items: center;
}
.lang .active { background: var(--ink); color: #fff; }
.lang a:hover { color: var(--ink); }
.lang .active:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 72px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(36px, 4.6vw, 54px); font-weight: 700; margin: 20px 0 0;
  letter-spacing: -0.031em; line-height: 1.07; max-width: 12em;
}
.hero h1 .hl { color: var(--accent); }
.hero p.sub {
  color: var(--muted-2); font-size: clamp(17px, 1.5vw, 19px);
  margin: 22px 0 0; max-width: 46ch; line-height: 1.58; font-weight: 400;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--muted); font-size: 14px; font-weight: 500; }
.trust svg { color: var(--accent); flex: none; }

.reveal { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal.d1 { animation-delay: .04s; } .reveal.d2 { animation-delay: .12s; }
.reveal.d3 { animation-delay: .20s; } .reveal.d4 { animation-delay: .28s; } .reveal.d5 { animation-delay: .36s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ---------- Live call demo card ---------- */
.callcard {
  background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-float);
  padding: 22px 22px 18px; position: relative; width: 100%; max-width: 480px; justify-self: end;
  min-height: 430px; display: flex; flex-direction: column;
}
.cc-top { display: flex; align-items: center; gap: 12px; }
.cc-avatar {
  width: 44px; height: 44px; border-radius: 13px; background: var(--accent);
  display: grid; place-items: center; color: #fff; flex: none;
}
.cc-who { display: flex; flex-direction: column; line-height: 1.28; min-width: 0; }
.cc-who b { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.cc-who span { font-size: 13px; color: var(--muted); font-weight: 400; }
.cc-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cc-status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.cc-status[data-state="dialing"] { color: var(--muted); }
.cc-status[data-state="dialing"] .dot { animation: blink 1s infinite; }
.cc-status[data-state="live"] { color: var(--call); }
.cc-status[data-state="live"] .dot { animation: pulse 1.8s infinite; }
.cc-status[data-state="done"] { color: var(--accent); }
@keyframes blink { 50% { opacity: .25; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(65,201,52,.5); }
  70% { box-shadow: 0 0 0 9px rgba(65,201,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(65,201,52,0); }
}
@media (prefers-reduced-motion: reduce){ .cc-status .dot { animation: none !important; } }

.cc-task {
  margin-top: 14px; display: flex; align-items: flex-start; gap: 9px;
  background: var(--surface-screen); border-radius: 14px; padding: 10px 13px;
  font-size: 13.5px; color: var(--muted-2); line-height: 1.45;
}
.cc-task svg { flex: none; margin-top: 1px; color: var(--muted); }
.cc-task b { color: var(--ink); font-weight: 600; }

.wave { width: 100%; height: 46px; display: block; margin: 12px 0 4px; }

.transcript { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; flex: 1; }
.bubble {
  font-size: 14.5px; line-height: 1.5; padding: 11px 15px; border-radius: 18px;
  max-width: 90%; font-weight: 400;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.bubble.show { opacity: 1; transform: none; }
.bubble.agent { background: var(--accent-soft); color: var(--ink); border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble .tag { display: block; font-size: 11px; letter-spacing: .02em; color: var(--accent); margin-bottom: 3px; font-weight: 600; }
.bubble.other { background: var(--surface-screen); color: var(--muted-2); align-self: flex-end; border-bottom-right-radius: 6px; }
.bubble.typing { display: inline-flex; gap: 4px; align-items: center; padding: 13px 16px; }
.bubble.typing i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .4; animation: tdot 1s infinite; }
.bubble.typing i:nth-child(2) { animation-delay: .15s; }
.bubble.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes tdot { 40% { opacity: 1; transform: translateY(-2px); } }
@media (prefers-reduced-motion: reduce){ .bubble { transition: none; } .bubble.typing i { animation: none; } }

.cc-result {
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
  background: rgba(36,208,97,.10); border-radius: 14px; padding: 11px 14px;
  font-size: 13.5px; font-weight: 600; color: #128A43;
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.cc-result.show { opacity: 1; transform: none; }
.cc-result .ok { width: 22px; height: 22px; border-radius: 50%; background: var(--success); color: #fff; display: grid; place-items: center; flex: none; }
.cc-result span { line-height: 1.4; }

.cc-foot {
  display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 13px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 500;
}
.cc-replay {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  border: 0; background: var(--surface-screen); color: var(--muted-2);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-pill); cursor: pointer; transition: .2s;
}
.cc-replay:hover { background: var(--surface-muted); color: var(--ink); }
.cc-replay svg { transition: transform .4s; }
.cc-replay:hover svg { transform: rotate(-180deg); }

/* ---------- Sections ---------- */
.section-pad { padding: 72px 0; }
.sec-head { max-width: 46ch; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(27px, 3.3vw, 37px); font-weight: 700; margin-top: 14px; letter-spacing: -0.026em; }
.sec-head p { color: var(--muted-2); margin: 14px 0 0; font-size: 17px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border-radius: var(--r-card); padding: 28px;
  box-shadow: var(--shadow-card); transition: transform .18s ease, box-shadow .25s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); }
.f-ico {
  width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 18px;
}
.feature h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.feature p { color: var(--muted-2); font-size: 15px; margin: 10px 0 0; line-height: 1.56; font-weight: 400; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--surface); border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow-card); }
.step .num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 600; }
.step p { color: var(--muted-2); font-size: 15px; margin: 9px 0 0; line-height: 1.56; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; }
.qa { border-bottom: 1px solid var(--line); }
.qa:last-child { border-bottom: 0; }
.qa summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 22px 26px; font-weight: 600; font-size: 17.5px; letter-spacing: -0.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .chev { margin-left: auto; flex: none; color: var(--muted); transition: transform .25s, color .25s; }
.qa[open] summary .chev { transform: rotate(45deg); color: var(--accent); }
.qa .a { color: var(--muted-2); font-size: 15.5px; line-height: 1.62; padding: 0 64px 24px 26px; margin: 0; font-weight: 400; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--surface); border-radius: var(--r-xl); padding: 56px 48px;
  text-align: center; box-shadow: var(--shadow-float);
}
.cta-band h2 { font-size: clamp(27px, 3.5vw, 37px); font-weight: 700; letter-spacing: -0.026em; }
.cta-band p { color: var(--muted-2); margin: 15px auto 0; max-width: 48ch; }
.notify { display: flex; gap: 10px; margin: 28px auto 0; max-width: 440px; }
.notify input {
  flex: 1; min-width: 0; height: 50px; padding: 0 22px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: var(--surface-screen); color: var(--ink);
  font-family: var(--sans); font-size: 16px;
}
.notify input::placeholder { color: var(--muted); }
.notify input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.cta-band .appstore-btn { margin-top: 28px; }

/* ---------- Try Weyvox (interactive demo chat) ---------- */
.try-head { max-width: 54ch; margin: 0 auto 40px; text-align: center; }
.try-head .eyebrow { justify-content: center; }
.trychat { max-width: 720px; margin: 0 auto; }
.chat {
  background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-float);
  display: flex; flex-direction: column; height: 520px; overflow: hidden;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); flex: none; }
.chat-head .cc-avatar { width: 40px; height: 40px; border-radius: 12px; }
.chat-badge { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--muted); background: var(--surface-screen); padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; -webkit-overflow-scrolling: touch; }
.cb { max-width: 82%; padding: 11px 15px; border-radius: 18px; font-size: 15px; line-height: 1.5; word-wrap: break-word; overflow-wrap: anywhere; }
.cb.a { align-self: flex-start; background: var(--accent-soft); color: var(--ink); border-bottom-left-radius: 6px; }
.cb.u { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 6px; }
.cb.typing { display: inline-flex; gap: 4px; align-items: center; padding: 13px 16px; }
.cb.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .4; animation: tdot 1s infinite; }
.cb.typing i:nth-child(2) { animation-delay: .15s; }
.cb.typing i:nth-child(3) { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .cb.typing i { animation: none; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; }
.chip {
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--muted-2);
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; padding: 8px 14px;
  border-radius: var(--r-pill); cursor: pointer; transition: .2s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chat-input { display: flex; gap: 10px; padding: 16px 18px; border-top: 1px solid var(--line); flex: none; }
.chat-input input {
  flex: 1; min-width: 0; height: 46px; padding: 0 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: var(--surface-screen); color: var(--ink);
  font-family: var(--sans); font-size: 15px;
}
.chat-input input::placeholder { color: var(--muted); }
.chat-input input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.chat-input input:disabled { opacity: .6; }
.chat-send {
  width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--ink); color: #fff;
  display: grid; place-items: center; cursor: pointer; flex: none; transition: opacity .2s, transform .12s;
}
.chat-send:hover:not(:disabled) { transform: translateY(-1px); }
.chat-send:active:not(:disabled) { transform: translateY(1px); }
.chat-send:disabled { opacity: .4; cursor: default; }
.chat-note { text-align: center; font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }

/* ---------- Legal pages (privacy, terms) ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 4px 0 24px; }
.legal-title { font-size: clamp(30px, 4vw, 42px); font-weight: 700; letter-spacing: -0.028em; line-height: 1.1; }
.legal-meta { color: var(--muted); font-size: 14px; margin: 14px 0 0; font-weight: 500; }
.legal-intro { color: var(--muted-2); font-size: 17px; margin: 20px 0 0; line-height: 1.62; }
.legal h2 { font-size: 22px; font-weight: 650; letter-spacing: -0.02em; margin: 42px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.legal h3 { font-size: 16.5px; font-weight: 650; margin: 26px 0 0; }
.legal p { color: var(--muted-2); font-size: 15.5px; line-height: 1.66; margin: 13px 0 0; }
.legal ul, .legal ol { color: var(--muted-2); font-size: 15.5px; line-height: 1.66; margin: 13px 0 0; padding-left: 22px; }
.legal li { margin: 8px 0; }
.legal li::marker { color: var(--muted); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }
.legal .box { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 20px 22px; margin: 20px 0 0; }
.legal .box p:first-child { margin-top: 0; }
.legal .callout { background: var(--accent-soft); border-radius: 14px; padding: 15px 18px; margin: 20px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink); }
.legal table.subp { width: 100%; border-collapse: collapse; margin: 16px 0 0; font-size: 14px; }
.legal table.subp th, .legal table.subp td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal table.subp th { color: var(--muted); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; }
.legal table.subp td { color: var(--muted-2); }
.legal table.subp td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.legal-wrap-scroll { overflow-x: auto; }

/* ---------- FAQ page ---------- */
.faq-head { max-width: 820px; margin: 0 auto; }
.faq-toc { margin-top: 22px; }
.faq-cat { max-width: 820px; margin: 40px auto 14px; font-size: 20px; font-weight: 650; letter-spacing: -0.02em; }
.faq-cat:first-of-type { margin-top: 26px; }
.faq-cat + .faq { max-width: 820px; margin-left: auto; margin-right: auto; }
/* "See all questions" button under the landing FAQ card (kept in-column, centered) */
.faq-more { max-width: 860px; margin: 28px 0 0; text-align: center; }

/* ---------- Pricing page ---------- */
.price-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.price-head .eyebrow { justify-content: center; }
.price-head h1 { font-size: clamp(31px, 4.4vw, 46px); font-weight: 700; margin-top: 14px; letter-spacing: -0.028em; }
.price-head p { color: var(--muted-2); font-size: 18px; margin: 16px auto 0; max-width: 54ch; line-height: 1.55; }

.price-free {
  max-width: 960px; margin: 0 auto 18px; background: var(--accent-soft);
  border: 1px solid rgba(47,91,255,.16); border-radius: var(--r-card);
  padding: 22px 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px;
}
.price-free .free-tag { font-weight: 700; font-size: 17px; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.price-free ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.price-free li { color: var(--ink); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.price-free li svg { color: var(--accent); flex: none; }

.price-cards { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price-card { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 26px 26px 22px; }
.price-card.wide { grid-column: 1 / -1; }
.price-card h2 { font-size: 20px; font-weight: 650; letter-spacing: -0.02em; display: flex; align-items: center; gap: 11px; }
.price-card .pc-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.price-card .pc-sub { color: var(--muted-2); font-size: 14.5px; margin: 12px 0 0; line-height: 1.55; }
.price-card .pc-list { color: var(--muted-2); font-size: 15px; line-height: 1.6; margin: 14px 0 0; padding-left: 20px; }
.price-card .pc-list li { margin: 7px 0; }
.price-card .pc-list strong { color: var(--ink); font-weight: 600; }

.rate-list { margin: 16px 0 0; }
.rate-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.rate-row:first-child { border-top: 0; padding-top: 4px; }
.rate-row .rl { color: var(--muted-2); font-size: 14px; }
.rate-row .rl b { color: var(--ink); font-weight: 600; font-size: 15px; }
.rate-row .rv { font-weight: 650; font-size: 16px; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink); }
.rate-row .rv small { color: var(--muted); font-weight: 500; font-size: 12px; }

.tier-wrap { overflow-x: auto; margin: 16px 0 4px; }
.tier-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 420px; }
.tier-table th, .tier-table td { padding: 11px 12px; text-align: right; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.tier-table thead th { color: var(--ink); font-weight: 650; }
.tier-table th:first-child, .tier-table td:first-child { text-align: left; color: var(--muted-2); font-weight: 500; }
.tier-table tbody tr:last-child td { border-bottom: 0; }
.tier-table .tier-desc { display: block; color: var(--muted); font-weight: 500; font-size: 11px; margin-top: 2px; }

.oc { max-width: 960px; margin: 22px auto 0; }
.oc h2 { font-size: 20px; font-weight: 650; letter-spacing: -0.02em; display: flex; align-items: center; gap: 11px; }
.oc .pc-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.oc .pc-sub { color: var(--muted-2); font-size: 14.5px; margin: 12px 0 0; line-height: 1.55; max-width: 68ch; }
.oc-search { position: relative; margin: 18px 0 0; }
.oc-search input {
  width: 100%; height: 52px; padding: 0 20px 0 48px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink);
  font-family: var(--sans); font-size: 16px;
}
.oc-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.oc-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.oc-count { color: var(--muted); font-size: 13px; font-weight: 500; margin: 11px 2px 0; }
.oc-tablewrap { margin: 10px 0 0; background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; }
.oc-scroll { max-height: 520px; overflow-y: auto; }
.oc-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.oc-table th, .oc-table td { padding: 13px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.oc-table thead th { position: sticky; top: 0; background: var(--surface); z-index: 1; color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.oc-table th.oc-price, .oc-table td.oc-price { text-align: right; font-variant-numeric: tabular-nums; font-weight: 650; white-space: nowrap; }
.oc-table tbody tr:last-child td { border-bottom: 0; }
.oc-table .oc-flag { font-size: 18px; margin-right: 10px; }
.oc-table .oc-code { color: var(--muted); font-variant-numeric: tabular-nums; margin-left: 6px; }
.oc-empty { padding: 30px 20px; text-align: center; color: var(--muted); }

.price-note { max-width: 960px; margin: 20px auto 0; color: var(--muted); font-size: 13.5px; text-align: center; line-height: 1.6; }

@media (max-width: 720px) {
  .price-cards { grid-template-columns: 1fr; }
  .oc-table th, .oc-table td { padding: 12px 14px; }
}

/* ---------- Footer ---------- */
footer { margin-top: 24px; padding: 52px 0 44px; border-top: 1px solid var(--line); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 32ch; }
.foot-brand p { color: var(--muted); font-size: 14px; margin: 13px 0 0; line-height: 1.56; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin: 0 0 15px; font-weight: 600; }
.foot-col a { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 11px; opacity: .82; font-weight: 500; transition: opacity .2s, color .2s; }
.foot-col a:hover { opacity: 1; color: var(--accent); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px; font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { padding-top: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { max-width: none; }
  .callcard { justify-self: stretch; max-width: 560px; margin: 0 auto; }
  .features, .steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .features, .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 22px; }
  .notify { flex-direction: column; }
  .qa summary { padding: 19px 20px; font-size: 16.5px; }
  .qa .a { padding: 0 20px 20px; }
  .nav-in { gap: 12px; }
  .brand span { display: none; } /* keep just the mark on tiny screens */
}
