/* =============================================================
   Tuzo Rewards — styles
   ============================================================= */

:root {
  /* palette */
  --bg: #0b2027;          /* page / hero */
  --bg-deep: #0a1a1f;     /* stats band, darker sections */
  --surface: #0f2e35;     /* cards on dark */
  --surface-2: #143a42;   /* rows inside cards */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --green: #27c376;
  --green-bright: #36d683;
  --green-deep: #178a52;
  --mint: #e9f8ef;
  --mint-line: #bfe8cf;
  --paper: #f6f8f7;
  --white: #ffffff;
  --ink: #0b2027;
  --ink-soft: #3d4f52;
  --text: #ffffff;
  --muted: #a9b8b8;
  --muted-2: #7f9192;
  --red: #e0474c;
  --red-bg: #fdeaea;
  --red-line: #f5c9c9;

  /* type */
  --font-display: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
hr { border: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 14px; border-radius: 8px; background: var(--green); color: var(--ink); font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- audience switching ---------- */
body[data-audience="iso"] .only-merchant { display: none !important; }
body[data-audience="merchant"] .only-iso { display: none !important; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 22px;
}
.eyebrow--ink { color: var(--ink); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.h3--lg { font-size: clamp(24px, 2.4vw, 31px); line-height: 1.15; margin-bottom: 20px; }
.h3--accent { color: var(--green-bright); font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 14px; }

.accent { color: var(--green-bright); }
.accent-deep { color: var(--green-deep) !important; }
.muted { color: var(--muted-2); }
.mono { font-family: var(--font-mono); font-size: 0.9em; }
.mono-num { font-family: var(--font-display); }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 22px;
}
.section--light .lede, .section--green .lede { color: var(--ink-soft); }
.section--green .lede { color: #123a29; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px; height: 54px; border-radius: 999px;
  font-weight: 600; font-size: 16px; white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { height: 42px; padding: 0 20px; font-size: 15px; }
.btn--green { background: var(--green); color: var(--ink); }
.btn--green:hover { background: var(--green-bright); box-shadow: 0 8px 24px rgba(39, 195, 118, 0.28); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #12333c; box-shadow: 0 10px 28px rgba(11, 32, 39, 0.28); }
.btn--block { width: 100%; }
.btn:focus-visible, .link-btn:focus-visible, .audience-toggle__btn:focus-visible, .seg__btn:focus-visible {
  outline: 3px solid var(--green-bright); outline-offset: 3px;
}

.link-btn {
  display: inline-flex; align-items: center; padding: 0 4px; height: 54px;
  font-weight: 600; font-size: 16px; border-radius: 6px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px; background-repeat: no-repeat; background-position: 4px 78%;
  transition: background-size .2s ease;
}
.link-btn:hover { background-size: calc(100% - 8px) 2px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 32, 39, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; min-height: var(--nav-h);
}
.nav__actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.nav__login { font-weight: 500; font-size: 15px; color: var(--muted); transition: color .15s; }
.nav__login:hover { color: var(--white); }

.logo { display: inline-flex; align-items: flex-start; gap: 2px; line-height: 1; color: var(--white); }
.logo__mark { width: 12px; height: 12px; color: var(--green); margin-top: 3px; margin-right: 2px; }
.logo__word { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.04em; }
.logo__dot { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--green); letter-spacing: -0.04em; }

.audience-toggle {
  display: inline-flex; padding: 4px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-strong);
}
.audience-toggle__btn {
  padding: 0 18px; height: 34px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--muted); white-space: nowrap;
  transition: color .15s, background-color .2s;
}
.audience-toggle__btn:hover { color: var(--white); }
.audience-toggle__btn[aria-selected="true"] { background: var(--green); color: var(--ink); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(72px, 9vw, 120px) clamp(56px, 6vw, 80px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); align-items: center; }
.hero__copy { max-width: 560px; }
.hero__lede { font-size: clamp(17px, 1.35vw, 19px); color: var(--muted); max-width: 52ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }

/* ---------- cards ---------- */
.card { border-radius: var(--radius); padding: 28px; }
.card--surface { background: var(--surface); border: 1px solid var(--line); color: var(--muted); padding: 32px; }
.card--surface .h3 { color: var(--white); }
.card--surface p { font-size: 16px; line-height: 1.6; }
.card--tight { padding: 26px; }
.card--dark { background: var(--surface); border: 1px solid var(--line-strong); }
.card--paper { background: var(--paper); border: 1px solid #dfe5e3; color: var(--ink); }
.card--mint { background: var(--mint); border: 1px solid var(--mint-line); color: var(--ink); }
.card--white { background: var(--white); color: var(--ink); box-shadow: 0 30px 60px rgba(4, 30, 20, 0.18); }
.card--glow { position: relative; }
.card--glow::before {
  content: ""; position: absolute; inset: -18px; z-index: -1; border-radius: 30px;
  background: radial-gradient(60% 60% at 60% 40%, rgba(39, 195, 118, 0.14), transparent 70%);
  filter: blur(18px);
}
.card__kicker { font-size: 13px; color: var(--muted-2); margin-bottom: 18px; }
.card--paper .card__kicker, .card--mint .card__kicker { color: #5b6b6b; }

.hero__card { padding: 32px; background: var(--surface); border: 1px solid var(--line-strong); }
.accent--block { display: block; }

.numbered { display: grid; gap: 18px; }
.numbered li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; font-size: 16px; line-height: 1.45; }
.numbered__n {
  width: 28px; height: 28px; border-radius: 50%; display: inline-grid; place-items: center;
  font-size: 12px; font-weight: 600; color: var(--green-bright); background: rgba(39, 195, 118, 0.14);
}
.numbered em { font-style: italic; }

.earners { display: grid; gap: 10px; }
.earners__row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 14px 16px; border-radius: 12px; background: var(--surface-2); font-size: 16px;
}
.earners__row .mono { font-size: 13px; }
.earners__row--you { background: transparent; border: 1px dashed var(--line-strong); }

/* ---------- stats ---------- */
.stats { background: var(--bg-deep); border-block: 1px solid var(--line); padding-block: 44px; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.03em; line-height: 1; }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--muted-2); }

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 9vw, 120px); }
.section--dark { background: var(--bg); }
.section--deep { background: var(--bg-deep); }
.section--light { background: var(--paper); color: var(--ink); }
.section--light .h2, .section--light .h3 { color: var(--ink); }
.section--green { background: var(--green); color: var(--ink); }
.section--green .h2 { color: var(--ink); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 56px); }
.section__head .h2 { max-width: 20ch; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.split__copy { max-width: 520px; }
.split--calc { align-items: start; }
.split--apply { gap: clamp(36px, 6vw, 72px); }
.stack { display: grid; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- moment ---------- */
.moment__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.portal { display: flex; flex-direction: column; color: var(--muted); }
.portal__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.portal__name { font-size: 13px; color: var(--muted-2); }
.pill { display: inline-flex; align-items: center; height: 22px; padding: 0 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.pill--live { color: var(--green-bright); background: rgba(39,195,118,.12); border: 1px solid rgba(39,195,118,.35); }
.portal__label { font-size: 13px; color: var(--muted-2); }
.portal__balance { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: -0.03em; line-height: 1.1; color: var(--white); margin: 4px 0 22px; }
.portal__goal { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; color: var(--white); font-weight: 500; }
.portal__pct { font-weight: 600; }
.progress { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); margin: 10px 0 12px; overflow: hidden; }
.progress__bar { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.portal__note { font-size: 13px; line-height: 1.45; color: var(--muted-2); }
.portal__rule { height: 1px; background: var(--line-strong); margin: 22px 0 18px; }
.portal .portal__rule { margin-top: auto; }

.offer__rate { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.offer__rate-value { font-family: var(--font-display); font-weight: 700; font-size: 42px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.offer__rate-suffix { font-size: 18px; color: #5b6b6b; }
.range__ends { display: flex; justify-content: space-between; font-size: 11px; color: #8a9797; margin: 8px 0 24px; }
.offer__row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 12px; background: var(--white); border: 1px solid #e3e8e6; font-size: 15px; color: var(--ink);
}
.offer__row + .offer__row { margin-top: 10px; }
.offer__row .mono { font-size: 17px; font-weight: 500; }
.offer__row--loss { background: var(--red-bg); border-color: var(--red-line); }
.offer__row--loss .mono { color: var(--red); }

.quote { display: flex; flex-direction: column; }
.quote__text { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2vw, 27px); line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); }
.quote__body { margin-top: auto; padding-top: 48px; font-size: 15px; line-height: 1.6; color: #2f4340; }

/* ---------- range inputs ---------- */
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin: 0; border-radius: 999px; background: #d5dcda; outline: none; cursor: pointer; }
.range:focus-visible { box-shadow: 0 0 0 4px rgba(39,195,118,.3); }
.range::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(var(--green), var(--green)) no-repeat, var(--track-bg, #d5dcda); background-size: var(--fill, 0%) 100%; }
.range::-moz-range-track { height: 6px; border-radius: 999px; background: var(--track-bg, #d5dcda); }
.range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--green); }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -6px; border-radius: 50%; background: var(--green); border: 3px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.range::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 3px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.section--light .calc .range { --track-bg: #1f3a3f; background: #1f3a3f; }

/* ---------- sales floor ---------- */
.sales__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 32px; }
.sales__head .lede { max-width: 54ch; }
.seg { display: inline-flex; flex-shrink: 0; padding: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-strong); }
.seg__btn { padding: 0 16px; height: 34px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); transition: color .15s, background-color .2s; }
.seg__btn:hover { color: var(--white); }
.seg__btn[aria-selected="true"] { background: var(--green); color: var(--ink); }

.sales { padding: 36px; }
.sales__pane { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.sales__pane[hidden] { display: none; }
.sales__explain p:not(.card__kicker) { font-size: 16px; line-height: 1.6; }
.sales__explain .h3--lg { color: var(--white); }

.chat { display: grid; gap: 14px; }
.chat__msg { display: flex; align-items: flex-start; gap: 10px; }
.chat__msg--merchant { justify-content: flex-end; }
.chat__avatar {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: .04em; background: var(--surface-2); color: var(--muted); border: 1px solid var(--line-strong);
}
.chat__bubble { max-width: 82%; padding: 16px 18px; border-radius: 14px; background: var(--surface-2); color: var(--white); font-size: 15px; line-height: 1.5; }
.chat__msg--agent .chat__bubble { border-top-left-radius: 4px; }
.chat__msg--merchant .chat__bubble { background: var(--green-deep); border-top-right-radius: 4px; }

/* ---------- calculator ---------- */
.calc { margin-top: 36px; display: grid; gap: 30px; max-width: 520px; }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 12px; font-size: 15px; color: var(--ink); }
.calc__row output { font-size: 14px; color: var(--ink); }

.results { padding: 36px; color: var(--muted-2); }
.results__label { font-size: 13px; margin-bottom: 6px; }
.results__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 4.6vw, 60px); line-height: 1; letter-spacing: -0.03em; color: var(--white); margin-bottom: 26px; }
.results__value--loss { color: var(--red); }
.results__rule { height: 1px; background: var(--line-strong); margin: 4px 0 22px; }
.results__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 15px; color: var(--white); }
.results__row .mono { font-size: 14px; white-space: nowrap; }
.results__fine { margin-top: 14px; font-size: 13px; }

/* ---------- steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding-top: 26px; border-top: 1px solid var(--line-strong); color: var(--muted); }
.step--first { border-top-color: var(--green); }
.step__n { display: block; font-size: 12px; color: var(--green-bright); margin-bottom: 18px; }
.step .h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.55; }

/* ---------- implementation rows ---------- */
.rows { display: grid; gap: 12px; }
.row {
  display: grid; grid-template-columns: 22px 1fr; gap: 22px; align-items: center;
  padding: 18px 22px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-size: 16px;
}
.row .mono { font-size: 12px; }

/* ---------- apply ---------- */
.mini-steps { display: grid; gap: 12px; margin-top: 36px; font-size: 15px; color: var(--ink); }
.mini-steps li { display: flex; gap: 12px; align-items: baseline; }
.mini-steps .mono { font-size: 12px; color: #1d5c3d; }

.form { padding: 32px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); }
.field__opt { display: block; font-weight: 400; color: #7f8f8f; font-size: 12px; margin-top: 2px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--white);
  border: 1px solid #cfd8d5; border-radius: 10px; padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa8a6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(39,195,118,.2); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230b2027' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form .btn { margin-top: 24px; }
.form__fine { margin-top: 14px; text-align: center; font-size: 13px; color: #7f8f8f; }
.form__error { margin-top: 18px; font-size: 14px; color: var(--red); }
.form__success { margin-top: 20px; padding: 20px; border-radius: 12px; background: var(--mint); border: 1px solid var(--mint-line); color: var(--ink); font-size: 15px; }
.form__success .h3 { margin-bottom: 6px; }
.form.is-sent .form__grid, .form.is-sent .btn, .form.is-sent .form__fine, .form.is-sent .form__error { display: none; }

/* ---------- merchant CTA ---------- */
.cta { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.cta .h2 { max-width: 13ch; }
.cta__side .lede { margin-top: 0; margin-bottom: 20px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-block: 36px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer .logo__word, .footer .logo__dot { font-size: 28px; }
.footer__links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.footer__links a:hover { color: var(--white); }
.footer__right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.footer__copy { font-size: 13px; color: var(--muted-2); }
.social { display: flex; gap: 8px; }
.social a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--muted); border: 1px solid var(--line-strong); transition: color .15s, border-color .15s; }
.social a:hover { color: var(--white); border-color: var(--green); }
.social svg { width: 15px; height: 15px; }


/* ---------- subpages (Get Started, Contact, Terms) ---------- */
.subnav { border-bottom: 1px solid var(--line); }
.subnav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .15s; }
.back-link:hover { color: var(--white); }
.back-link svg { width: 14px; height: 14px; }

.page { padding-block: clamp(56px, 8vw, 96px); min-height: calc(100vh - 72px - 108px); }
.page__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.page__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; max-width: 14ch; }
.page__lede { margin-top: 22px; font-size: clamp(17px, 1.3vw, 19px); color: var(--muted); max-width: 46ch; }
.page .form { padding: 36px; }
.page .form__grid { grid-template-columns: 1fr; gap: 18px; }
.page .form__grid .field--half { grid-column: span 1; }
@media (min-width: 640px) { .page .form__grid { grid-template-columns: 1fr 1fr; } .page .form__grid .field--full { grid-column: 1 / -1; } }
.contact-list { display: grid; gap: 14px; margin-top: 36px; }
.contact-list a { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; color: var(--white); }
.contact-list a:hover { color: var(--green-bright); }
.contact-list svg { width: 18px; height: 18px; color: var(--green-bright); }
.form__fail { margin-top: 18px; font-size: 14px; color: var(--red); }
.required { color: var(--green-deep); }

.prose { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; color: var(--white); margin: 44px 0 14px; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); margin: 30px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--green-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose__updated { font-size: 13px; color: var(--muted-2); margin-top: 16px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1080px) {
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .moment__grid { grid-template-columns: 1fr 1fr; }
  .moment__grid .quote { grid-column: 1 / -1; }
  .quote__body { padding-top: 20px; }
}

@media (max-width: 900px) {
  :root { --nav-h: auto; }
  .nav__inner { grid-template-columns: 1fr auto; grid-template-rows: auto auto; padding-block: 12px; row-gap: 12px; }
  .audience-toggle { grid-column: 1 / -1; grid-row: 2; justify-self: stretch; display: grid; grid-template-columns: 1fr 1fr; }
  .audience-toggle__btn { padding: 0 8px; }
  .nav__actions { gap: 14px; }
  .hero__grid, .split, .cta, .sales__pane, .page__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .sales__head { flex-direction: column; align-items: flex-start; }
  .stats__grid { gap: 28px 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; justify-items: start; }
  .footer__right { justify-self: start; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav__login { display: none; }
  .btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
  .logo__word, .logo__dot { font-size: 28px; }
  .hero { padding-top: 48px; }
  .hero__title { font-size: clamp(36px, 11vw, 48px); }
  .hero__card, .card, .card--surface, .sales, .results, .form { padding: 22px; }
  .moment__grid, .grid-4, .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: 12px 18px; }
  .chat__bubble { max-width: 100%; }
}
