/* ============================================================
   Thriv3 marketing site v2 — "The Progress Board"
   Parent-first. Warm paper throughout; app-style solid colour tiles.
   Depends on tokens.css + base.css.
   ============================================================ */

/* ---- utilities --------------------------------------------- */
.mono { font-family: var(--mono); letter-spacing: 0; }
.board .mono, .tile .mono { font-variant-numeric: tabular-nums; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--ink-fg); padding: 10px 14px;
  border-radius: var(--radius-sm); font-weight: 600; transition: top var(--dur-fast);
}
.skip-link:focus { top: 12px; }

/* app-tile colour classes — solid fills, white type, as in the app */
.t-teal   { --c: var(--teal);   --c-l: var(--teal-l); }
.t-blue   { --c: var(--blue);   --c-l: var(--blue-l); }
.t-amber  { --c: var(--amber);  --c-l: var(--amber-l); }
.t-purple { --c: var(--purple); --c-l: var(--purple-l); }
.t-rose   { --c: var(--rose);   --c-l: var(--rose-l); }

/* reveal — fail-safe: only hides when JS is present, and JS
   un-hides anything already in view on load. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce), print { html.js .reveal { opacity: 1; transform: none; } }

/* ---- buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.97rem; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), color var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--sm { padding: 9px 16px; font-size: .9rem; }
.btn--lg { padding: 16px 26px; font-size: 1.05rem; }
.btn--solid { background: var(--teal); color: #fff; box-shadow: 0 8px 24px -10px rgba(14,122,99,.55); }
.btn--solid:hover { background: var(--teal-m); }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal-l); }

/* ---- nav --------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,241,235,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto; padding: 12px var(--pad-x);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand__mark { width: 30px; height: auto; }
.nav__links { display: flex; gap: 26px; margin-left: 12px; font-weight: 500; font-size: .95rem; }
.nav__links a { color: var(--ink-soft); transition: color var(--dur-fast); padding: 6px 0; }
.nav__links a:hover { color: var(--ink); }
/* explore dropdown */
.nav__drop { position: relative; }
.nav__dropbtn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; font-weight: 500; font-size: .95rem; color: var(--ink-soft); transition: color var(--dur-fast); }
.nav__dropbtn:hover, .nav__drop.is-open .nav__dropbtn { color: var(--ink); }
.nav__dropbtn svg { transition: transform var(--dur); }
.nav__drop.is-open .nav__dropbtn svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: -12px; min-width: 260px;
  display: grid; gap: 2px; padding: 8px;
  background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.nav__drop.is-open .nav__menu, .nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
.nav__menu a { display: grid; gap: 1px; padding: 10px 12px; border-radius: var(--radius-sm); }
.nav__menu a:hover, .nav__menu a:focus-visible { background: var(--teal-l); }
.nav__menu b { font-weight: 600; font-size: .95rem; color: var(--ink); }
.nav__menu span { font-size: .8rem; color: var(--text-m); }
.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav__signin { font-weight: 500; font-size: .95rem; color: var(--ink-soft); }
.nav__signin:hover { color: var(--ink); }
.nav .btn--solid { box-shadow: none; }
.nav__toggle { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: var(--radius-sm); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__toggle span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--dur), opacity var(--dur); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; }
.nav__mobile[hidden] { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__mobile:not([hidden]) {
    display: flex; flex-direction: column; gap: 4px;
    padding: 8px var(--pad-x) 20px; border-top: 1px solid var(--line);
  }
  .nav__mobile a { padding: 12px 4px; font-weight: 500; font-size: 1.05rem; }
  .nav__mobilelabel { margin-top: 10px; padding: 8px 4px 2px; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
  .nav__mobile a.nav__sub { padding: 9px 4px 9px 16px; font-size: 1rem; color: var(--ink-soft); }
  .nav__mobile .btn { margin-top: 8px; justify-content: center; }
}

/* ---- hero -------------------------------------------------- */
.hero {
  background: var(--bg); color: var(--ink);
  position: relative; overflow: hidden;
  padding: clamp(24px, 3vw, 36px) 0 clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 84% 22%, rgba(14,122,99,.10), transparent 70%),
    radial-gradient(38% 40% at 6% 92%, rgba(169,118,28,.08), transparent 70%);
}
.hero > .container { position: relative; }

/* slider controls */
.hero__ctrl { margin-top: clamp(18px, 2.5vw, 26px); display: flex; align-items: center; gap: 14px; }
.hero__arrow {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line); color: var(--ink); font-size: 1.5rem; line-height: 1; padding-bottom: 3px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur-fast);
}
.hero__arrow:hover { background: var(--teal-l); border-color: var(--teal); color: var(--teal); }
.hero__arrow:active { transform: scale(.96); }
.hero__dots { display: flex; gap: 8px; align-items: center; }
.hero__dots [role="tab"] { width: 10px; height: 10px; border-radius: 999px; background: var(--gray-m); transition: width var(--dur) var(--ease), background var(--dur); }
.hero__dots [role="tab"]:hover { background: var(--text-mm); }
.hero__dots [role="tab"][aria-selected="true"] { width: 28px; background: var(--teal); }
.hero__current { font-size: .9rem; font-weight: 600; color: var(--ink-soft); margin-left: 4px; }
.hero__ctrl { touch-action: pan-y; }
.hero__panel { touch-action: pan-y; }

/* panels */
.hero__panel {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  margin-top: 0;
}
.hero__panel[hidden] { display: none; }
html.js .hero__panel { animation: heroIn .45s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { html.js .hero__panel { animation: none; } }

.hero__h1 {
  color: var(--ink); font-weight: 700; font-size: clamp(2rem, 1.35rem + 2.6vw, 3.4rem);
  line-height: 1.02; letter-spacing: var(--tr-hero); margin-top: 12px;
}
.hero__line2 { color: var(--teal); display: block; }
h2.hero__h1 { font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3.1rem); }
.hero__sub { margin-top: 14px; font-size: clamp(1rem, .95rem + .4vw, 1.2rem); line-height: 1.5; color: var(--text-m); max-width: 36em; }
.hero__ctas { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px 24px; color: var(--text-m); font-size: .88rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero__trust .mono { color: var(--ink); font-weight: 500; }

.hero__visual { position: relative; display: flex; align-items: center; min-height: 0; }

/* the board — white card, app-style solid tiles */
.board {
  position: relative; width: 100%; max-width: 385px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 20px 22px 22px;
  box-shadow: var(--shadow-lg);
}
.board__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.board__who { display: block; font-family: var(--display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.board__where { display: block; margin-top: 6px; color: var(--text-m); font-size: .9rem; }
.board__demo { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-m); border: 1px solid var(--line); border-radius: 999px; padding: 4px 9px; }
.board__stats { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.board__stats li { background: var(--c); color: #fff; border-radius: 12px; padding: 10px 10px 9px; }
.board__stats b { display: block; font-size: 1.35rem; font-weight: 600; line-height: 1; color: #fff; }
.board__stats span { display: block; margin-top: 6px; font-size: .72rem; color: rgba(255,255,255,.88); line-height: 1.2; }
.board__label { margin-top: 16px; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-m); }
.board__areas { margin-top: 8px; display: grid; gap: 7px; }
.board__areas li { display: grid; grid-template-columns: 8.6em 1fr 3.2em; align-items: center; gap: 12px; font-size: .85rem; }
.board__area { color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.board__bar { height: 8px; border-radius: 999px; background: var(--gray-l); overflow: hidden; }
.board__bar i { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--c); transition: width 1.3s var(--ease); }
.board.in .board__bar i { width: calc(var(--v) * 1%); }
.board__areas li.is-new .board__bar { background: repeating-linear-gradient(90deg, var(--gray-m) 0 6px, transparent 6px 12px); }
.board__pct { text-align: right; color: var(--text-m); font-size: .82rem; }
.board__areas li.is-new .board__pct { color: var(--c); }
.board__goal { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.board__goal .board__label { margin-top: 0; }
.board__goaltext { margin-top: 8px; font-weight: 500; color: var(--ink); line-height: 1.35; }
.board__goalrow { margin-top: 12px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.board__score { font-size: 1.5rem; font-weight: 600; line-height: 1; color: var(--teal); }
.board__band { font-size: .78rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--gray-l); color: var(--ink-soft); transition: background var(--dur), color var(--dur); }
.board__band.b-emerging { background: var(--amber-l); color: var(--amber); }
.board__band.b-prompt { background: var(--teal-l); color: var(--teal); }
.board__by { font-size: .8rem; color: var(--text-m); }
@media (prefers-reduced-motion: reduce) {
  .board__bar i { transition: none; width: calc(var(--v) * 1%); }
}

/* other hero visuals: phone + floating tile, and white cards */
.hero__visual--phone { justify-content: center; }
.hero .phone--hero { max-width: 210px; }
.tile {
  display: grid; gap: 2px; padding: 16px 18px; border-radius: 14px;
  background: var(--c); color: #fff; box-shadow: var(--shadow-lg);
}
.tile b { font-size: 1.9rem; font-weight: 600; line-height: 1; }
.tile span { font-size: .88rem; color: rgba(255,255,255,.9); }
.tile small { margin-top: 6px; font-size: .74rem; color: rgba(255,255,255,.75); }
.tile--float { position: absolute; left: 0; bottom: 12%; max-width: 230px; transform: rotate(-2deg); }

.card {
  width: 100%; max-width: 400px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 22px 24px 24px; box-shadow: var(--shadow-lg);
}
.card__label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-m); }
/* forum */
.thread { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); transition: background var(--dur-fast); }
.thread:last-child { border-bottom: 0; padding-bottom: 4px; }
.thread:first-of-type { margin-top: 8px; }
.thread__av { width: 38px; height: 38px; border-radius: 11px; background: var(--c); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--display); }
.thread b { display: block; font-weight: 600; color: var(--ink); line-height: 1.3; font-size: .97rem; }
.thread small { display: block; margin-top: 3px; color: var(--text-m); font-size: .8rem; }
.thread:hover b { color: var(--teal); }
/* events */
.event { display: grid; grid-template-columns: 58px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.event:last-child { border-bottom: 0; padding-bottom: 4px; }
.event:first-of-type { margin-top: 8px; }
.event__date { width: 58px; height: 58px; border-radius: 12px; background: var(--c); color: #fff; display: grid; place-content: center; text-align: center; line-height: 1; }
.event__date b { font-size: 1.4rem; font-weight: 600; }
.event__date span { margin-top: 3px; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.event > div:last-child b { display: block; font-weight: 600; color: var(--ink); line-height: 1.3; font-size: .97rem; }
.event > div:last-child small { display: block; margin-top: 3px; color: var(--text-m); font-size: .8rem; }
.event__meta { display: inline-block; margin-top: 7px; font-size: .76rem; padding: 3px 8px; border-radius: 999px; background: var(--c-l); color: var(--c); }
/* directories */
.dir { display: grid; gap: 2px; padding: 14px 16px; margin-top: 8px; border-radius: 14px; background: var(--c); color: #fff; transition: transform var(--dur-fast) var(--ease); }
.dir:first-of-type { margin-top: 12px; }
.dir:hover { transform: translateX(4px); }
.dir b { font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.dir small { font-size: .84rem; color: rgba(255,255,255,.85); }
.dir b::after { content: " \2192"; font-family: var(--font); font-weight: 500; }

@media (max-width: 980px) {
  .hero__panel { grid-template-columns: 1fr; }
  .hero__visual { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 20px; }
  .board { width: 100%; max-width: none; }
    .hero__visual--phone { grid-template-columns: 1fr; justify-items: center; }
  .card { max-width: none; }
}
@media (max-width: 600px) {
  .hero__visual { grid-template-columns: 1fr; }
    .board { padding: 20px 18px 22px; }
  .board__stats { grid-template-columns: repeat(2, 1fr); }
  .board__areas li { grid-template-columns: 7.4em 1fr 3em; gap: 10px; }
  .hero .phone--hero { max-width: 200px; }
  .tile--float { position: static; transform: none; max-width: none; width: 100%; margin-top: 16px; }
}

/* ---- plain words ------------------------------------------- */
.plain { background: var(--bg); padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--line); }
.plain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.plain__grid dt { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); }
.plain__grid dd { margin-top: 10px; color: var(--ink-soft); line-height: 1.55; font-size: 1rem; }
@media (max-width: 800px) { .plain__grid { grid-template-columns: 1fr; gap: 22px; } }

/* ---- sections ---------------------------------------------- */
section h2 { font-size: var(--fs-2); font-weight: 700; letter-spacing: var(--tr-tight); }
.eyebrow + h2 { margin-top: 14px; }
h2 + .lead { margin-top: 14px; }

/* phone frames */
.phone { position: relative; width: 100%; max-width: 320px; margin: 0; }
.phone img { width: 100%; height: auto; border-radius: 30px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(33,31,27,.08); }
.phone--sm { max-width: 240px; }

/* ---- how ------------------------------------------------- */
.how { padding: var(--section-y) 0; }
.how__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.how__grid .phone { justify-self: center; }
.steps { margin-top: 32px; display: grid; gap: 22px; max-width: 34em; }
.steps li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.steps__n { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-l); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }
.steps b { display: block; font-weight: 600; color: var(--ink); }
.steps p { margin-top: 4px; color: var(--text-m); font-size: 1rem; line-height: 1.5; }
@media (max-width: 860px) {
  .how__grid { grid-template-columns: 1fr; }
  .how__grid .phone { order: 2; max-width: 260px; }
}

/* ---- views ------------------------------------------------ */
.views { padding: var(--section-y) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.views__head { max-width: 640px; }
.views__grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.views__grid li { display: grid; justify-items: start; }
.views__grid .phone { justify-self: center; }
.views__grid h3 { margin-top: 24px; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 10px; }
.views__grid h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--c); }
.views__grid p { margin-top: 8px; color: var(--text-m); font-size: 1rem; line-height: 1.5; }
@media (max-width: 860px) {
  .views__grid { grid-template-columns: 1fr; gap: 40px; }
  .views__grid li { grid-template-columns: 140px 1fr; column-gap: 20px; align-items: center; }
  .views__grid .phone { grid-row: span 2; max-width: 140px; }
  .views__grid h3 { margin-top: 0; align-self: end; }
  .views__grid p { align-self: start; }
}
@media (max-width: 359px) {
  .views__grid li { grid-template-columns: 1fr; }
  .views__grid .phone { grid-row: auto; max-width: 200px; justify-self: start; }
  .views__grid h3 { margin-top: 18px; }
}

/* ---- providers -------------------------------------------- */
.prov { padding: var(--section-y) 0; }
.prov__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.prov__copy .btn { margin-top: 28px; }
.prov__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.prov__list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 12em) 1fr; gap: 16px; align-items: start; }
.prov__list b { font-weight: 600; color: var(--ink); }
.prov__list p { color: var(--text-m); font-size: 1rem; line-height: 1.5; }
@media (max-width: 860px) { .prov__grid { grid-template-columns: 1fr; } .prov__list li { grid-template-columns: 1fr; gap: 4px; } }

/* ---- pricing ---------------------------------------------- */
.price { padding: var(--section-y) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.price__head { max-width: 640px; }
.price__lanes { margin-top: 40px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }
.lane {
  display: grid; grid-template-rows: auto auto 1fr auto; gap: 0; padding: 30px;
  border-radius: var(--radius-xl); background: var(--card); border: 2px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
/* the free lane is highlighted at rest; on hover the highlight follows the cursor */
.lane--free { border-color: var(--teal); box-shadow: var(--shadow-lg); }
.lane:hover, .lane:focus-within { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow-lg); }
.price__lanes:hover .lane--free:not(:hover) { border-color: var(--line); box-shadow: none; }
@media (hover: none) { .lane:hover { transform: none; } }
.lane header h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: .01em; color: inherit; }
.lane__price { margin-top: 10px; font-size: 2.6rem; line-height: 1; font-weight: 600; display: flex; align-items: baseline; gap: 8px; }
.lane__price small { font-family: var(--font); font-size: .95rem; font-weight: 500; color: var(--text-m); }
.lane ul { margin-top: 24px; display: grid; gap: 10px; align-content: start; }
.lane li { display: flex; gap: 10px; align-items: start; line-height: 1.4; font-size: 1rem; }
.lane li::before { content: ""; flex: none; margin-top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.lane__note { margin-top: 24px; font-size: .9rem; line-height: 1.5; color: var(--text-m); }
.lane .btn { margin-top: 24px; justify-self: start; }
.price__fine { margin-top: 16px; font-size: .85rem; color: var(--text-mm); }
@media (max-width: 860px) { .price__lanes { grid-template-columns: 1fr; } }

/* ---- faq --------------------------------------------------- */
.faq { padding: var(--section-y) 0; }
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq__list { display: grid; }
.faq__list > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq__list > div:first-child { padding-top: 0; }
.faq__list dt { font-weight: 600; color: var(--ink); }
.faq__list dd { margin-top: 6px; color: var(--text-m); line-height: 1.55; font-size: 1rem; max-width: 60ch; }
.faq__list dd a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; } }

/* ---- explore ---------------------------------------------- */
.explore { padding: 0 0 var(--section-y); }
.explore__head { max-width: 680px; }
.explore__grid { margin-top: 32px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1100px) { .explore__grid { grid-template-columns: repeat(3, 1fr); } }
.explore__grid a {
  display: grid; align-content: start; height: 100%; padding: 22px 20px 20px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.explore__grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--c-2, var(--c)); }
.explore__grid b { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.explore__grid b::before { content: ""; flex: none; width: 12px; height: 12px; border-radius: 4px; background: var(--c); }
.explore__grid p { margin-top: 8px; color: var(--text-m); font-size: .97rem; line-height: 1.5; }
.explore__go { margin-top: 18px; font-weight: 600; font-size: .92rem; color: var(--c); }
.explore__go::after { content: " \2192"; }
@media (max-width: 800px) { .explore__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .explore__grid { grid-template-columns: 1fr; } }

/* ---- get / close ------------------------------------------ */
.get { background: var(--bg-2); color: var(--ink); padding: clamp(64px, 8vw, 112px) 0; position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.get::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(50% 60% at 15% 50%, rgba(14,122,99,.09), transparent 70%); }
.get__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.get__h2 { color: var(--ink); font-size: var(--fs-3); }
.get__sub { margin-top: 16px; color: var(--text-m); font-size: var(--fs-lead); max-width: 30em; }
.badges { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge img { height: 45px; width: auto; border-radius: 8px; transition: transform var(--dur-fast); }
.badge:hover img { transform: translateY(-2px); }
.get__formlabel { color: var(--text-m); font-size: .95rem; }
.notify { margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.notify input {
  flex: 1 1 220px; min-width: 0; padding: 14px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--gray-m); background: var(--card); color: var(--ink);
  font: inherit; font-size: 1rem;
}
.notify input::placeholder { color: var(--text-mm); }
.notify input:focus { border-color: var(--teal); box-shadow: var(--ring); outline: none; }
.notify__msg { margin-top: 10px; min-height: 1.4em; font-size: .9rem; color: var(--teal); }
.notify__msg.err { color: var(--red); }
@media (max-width: 860px) { .get__grid { grid-template-columns: 1fr; } }

/* ---- footer ----------------------------------------------- */
.foot { background: var(--bg); color: var(--text-m); border-top: 1px solid var(--line); padding: 48px 0 28px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.foot__brand .brand { color: var(--ink); }
.foot__brand p { margin-top: 14px; font-size: .95rem; line-height: 1.5; max-width: 30em; }
.foot nav { display: grid; gap: 8px; align-content: start; font-size: .95rem; }
.foot h4 { color: var(--ink); font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.foot nav a { color: var(--ink-soft); } .foot nav a:hover { color: var(--teal); }
.foot__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .85rem; }
@media (max-width: 760px) { .foot__grid { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ============================================================
   Photography layer (concept copy) — real photos under paper /
   teal overlays. The board, tiles and cards stay the subject;
   the photo is context. No new tokens, no new motion.
   ============================================================ */

/* ---- hero: photo behind the board / phone / card ------------ */
.hero__visual {
  position: relative;
  min-height: clamp(440px, 40vw, 580px);
  padding: clamp(28px, 3vw, 44px) 0;
}
.hero__photo {
  position: absolute; top: 0; bottom: 0;
  left: clamp(120px, 28%, 170px);
  /* bleed to the viewport's right edge; the hero clips overflow */
  right: calc(-1 * max(var(--pad-x), (100vw - var(--container)) / 2 + var(--pad-x)));
  margin: 0; overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: var(--gray-l);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: var(--pos, 50% 40%);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244,241,235,.62) 0%, rgba(244,241,235,0) 42%),
    linear-gradient(180deg, rgba(14,122,99,.12) 0%, rgba(14,122,99,0) 38%, rgba(28,36,32,.22) 100%);
}
.hero__visual > .board,
.hero__visual > .card,
.hero__visual > .phone { position: relative; z-index: 1; }
.hero__visual > .tile--float { z-index: 1; }
.hero__visual > .board,
.hero__visual > .card { margin-left: calc(-1 * clamp(0px, 3vw, 40px)); }
.hero__visual--phone { justify-content: flex-start; }
.hero__visual--phone .phone--hero { margin-left: clamp(4px, 2vw, 24px); }
.hero__visual--phone .tile--float { left: auto; right: 8%; bottom: 6%; transform: rotate(2deg); }

@media (max-width: 980px) {
  .hero__visual { min-height: 0; padding: 0; gap: 0; }
  .hero__photo {
    position: relative; inset: auto; left: auto; right: auto;
    aspect-ratio: 16 / 10; border-radius: 0;
    margin-inline: calc(-1 * var(--pad-x));
  }
  .hero__photo::after {
    background: linear-gradient(180deg, rgba(14,122,99,.08) 0%, rgba(14,122,99,0) 40%, rgba(28,36,32,.28) 100%);
  }
  .hero__visual > .board,
  .hero__visual > .card,
  .hero__visual--phone .phone--hero { margin-top: -56px; margin-left: 0; }
  .hero__visual--phone { justify-items: center; }
  .hero__visual--phone .phone--hero { margin-left: 0; }
  .hero__visual--phone .tile--float { position: static; transform: none; max-width: none; width: 100%; margin-top: 16px; }
}

/* ---- section bands ----------------------------------------- */
.pband { position: relative; overflow: hidden; background: var(--gray-l); }
.pband img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: var(--pos, 50% 50%);
}
.pband::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.pband__text {
  position: relative; z-index: 1; margin: 0;
  font-family: var(--display); font-weight: 700;
  letter-spacing: var(--tr-tight); line-height: 1.1; text-wrap: balance;
}
.has-band { padding-top: 0; }
.pband { margin-bottom: clamp(36px, 5vw, 64px); }

/* bleed: full width; a paper gradient fades the photo into the section */
.pband--bleed { height: clamp(170px, 20vw, 300px); }
.pband--bleed::after {
  background:
    linear-gradient(180deg, rgba(14,122,99,.10), rgba(14,122,99,0) 35%),
    linear-gradient(180deg, rgba(244,241,235,0) 28%, var(--pb-bg, var(--bg)) 100%);
}
.pband--bleed .container { position: relative; z-index: 1; height: 100%; display: flex; align-items: flex-end; padding-bottom: 10px; }
.pband--bleed .pband__text { color: var(--ink); font-size: clamp(1.15rem, 1rem + 1vw, 1.75rem); max-width: 24em; }

/* inset: rounded panel inside the container, teal-toned, white type */
.pband--inset {
  height: clamp(160px, 18vw, 260px); border-radius: var(--radius-xl);
  display: flex; align-items: flex-end; padding: clamp(20px, 3vw, 32px);
}
.pband--inset::after {
  background:
    linear-gradient(90deg, rgba(12,74,61,.86) 0%, rgba(12,74,61,.48) 50%, rgba(12,74,61,.14) 100%),
    linear-gradient(180deg, rgba(12,74,61,0) 50%, rgba(12,74,61,.35) 100%);
}
.pband--inset .pband__text { color: #fff; font-size: clamp(1.2rem, 1rem + 1.2vw, 1.9rem); max-width: 21em; }

/* split: photo on the right, paper on the left, statement in ink */
.pband--split { height: clamp(190px, 22vw, 320px); }
.pband--split img { left: 34%; width: 66%; }
.pband--split::after {
  background:
    linear-gradient(90deg, var(--pb-bg, var(--bg-2)) 33%, rgba(239,235,227,.88) 44%, rgba(239,235,227,0) 66%),
    linear-gradient(180deg, rgba(239,235,227,0) 55%, var(--pb-bg, var(--bg-2)) 100%);
}
.pband--split .container { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; }
.pband--split .pband__text { color: var(--ink); font-size: clamp(1.3rem, 1rem + 1.6vw, 2.3rem); max-width: 15em; }

@media (max-width: 700px) {
  .pband--split img { left: 0; width: 100%; }
  .pband--split::after { background: linear-gradient(180deg, rgba(239,235,227,0) 22%, var(--pb-bg, var(--bg-2)) 96%); }
  .pband--split .container { align-items: flex-end; padding-bottom: 10px; }
  .pband--split .pband__text { font-size: clamp(1.2rem, 1rem + 1.2vw, 1.6rem); }
}

/* ============================================================
   FULL-BLEED variant — photos fill the whole hero and every band
   runs edge to edge. Copy over the hero goes white on an ink
   gradient; the board/phone/card stays the white subject.
   ============================================================ */
.hero { background: var(--ink-bg); color: var(--ink-fg); border-bottom: 0; }
.hero::before { display: none; }
.hero > .container, .hero__visual { position: static; }
.hero__visual { min-height: clamp(440px, 40vw, 580px); padding: clamp(28px, 3vw, 44px) 0; }
.hero__photo {
  position: absolute; inset: 0; left: 0; right: 0;
  border-radius: 0; margin: 0; background: var(--ink-bg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 40%); }
.hero__photo::after {
  background:
    linear-gradient(90deg, rgba(28,36,32,.90) 0%, rgba(28,36,32,.78) 34%, rgba(28,36,32,.38) 62%, rgba(28,36,32,.18) 100%),
    linear-gradient(180deg, rgba(28,36,32,.12) 0%, rgba(28,36,32,0) 40%, rgba(28,36,32,.55) 100%);
}
.hero__copy, .hero__ctrl { position: relative; z-index: 1; }
.hero__visual > .board, .hero__visual > .card { margin-left: 0; }
.hero .eyebrow { color: var(--teal-2); }
.hero__h1, h2.hero__h1 { color: #fff; }
.hero__line2 { color: var(--teal-2); }
.hero__sub { color: rgba(255,255,255,.84); }
.hero__trust { color: rgba(255,255,255,.78); }
.hero__trust li::before { background: var(--teal-2); }
.hero__trust .mono { color: #fff; }
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.7); }
.hero .btn--outline:hover { background: rgba(255,255,255,.12); }
.hero .btn--solid { box-shadow: 0 10px 28px -10px rgba(0,0,0,.6); }
.hero__arrow { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); color: #fff; }
.hero__arrow:hover { background: rgba(255,255,255,.22); border-color: #fff; color: #fff; }
.hero__dots [role="tab"] { background: rgba(255,255,255,.38); }
.hero__dots [role="tab"]:hover { background: rgba(255,255,255,.65); }
.hero__dots [role="tab"][aria-selected="true"] { background: var(--teal-2); }
.hero__current { color: rgba(255,255,255,.9); }
.board { box-shadow: var(--shadow-ink); border-color: transparent; }
.card { box-shadow: var(--shadow-ink); border-color: transparent; }
.hero .tile--float { box-shadow: var(--shadow-ink); }
@media (max-width: 980px) {
  .hero__visual { min-height: 0; padding: 0 0 8px; }
  .hero__photo { position: absolute; inset: 0; aspect-ratio: auto; margin-inline: 0; }
  .hero__photo::after {
    background:
      linear-gradient(180deg, rgba(28,36,32,.86) 0%, rgba(28,36,32,.72) 45%, rgba(28,36,32,.55) 100%);
  }
  .hero__visual > .board, .hero__visual > .card, .hero__visual--phone .phone--hero { margin-top: 24px; }
}

/* bands: one treatment, edge to edge, photo fully visible, statement bottom-left */
.pband--full { height: clamp(240px, 28vw, 420px); border-radius: 0; margin-inline: 0; }
.pband--full img { left: 0; width: 100%; }
.pband--full::after {
  background:
    linear-gradient(180deg, rgba(28,36,32,.10) 0%, rgba(28,36,32,0) 35%, rgba(28,36,32,.62) 100%),
    linear-gradient(90deg, rgba(28,36,32,.42) 0%, rgba(28,36,32,0) 55%);
}
.pband--full .container { position: relative; z-index: 1; height: 100%; display: flex; align-items: flex-end; padding-bottom: clamp(18px, 2.4vw, 30px); }
.pband--full .pband__text { color: #fff; font-size: clamp(1.3rem, 1rem + 1.6vw, 2.3rem); max-width: 18em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.pband { margin-bottom: clamp(44px, 6vw, 80px); }
.has-band { padding-top: 0; }
@media (max-width: 700px) {
  .pband--full { height: clamp(220px, 60vw, 300px); }
  .pband--full .pband__text { font-size: clamp(1.2rem, 1rem + 1.2vw, 1.6rem); }
}
/* the panel's entry animation (transform) turned it into the containing block for the
   absolute photo; move the animation onto the copy + subject so the photo can span the hero */
html.js .hero__panel { animation: none; }
html.js .hero__copy, html.js .hero__visual > :not(.hero__photo) { animation: heroIn .45s var(--ease) both; }
@keyframes photoIn { from { opacity: 0; } to { opacity: 1; } }
html.js .hero__photo { animation: photoIn .6s ease both; }
@media (prefers-reduced-motion: reduce) { html.js .hero__copy, html.js .hero__visual > :not(.hero__photo), html.js .hero__photo { animation: none; } }
@media (max-width: 980px) {
  /* lighter veil on small screens so the photo actually reads behind the copy */
  .hero__photo::after {
    background: linear-gradient(180deg, rgba(28,36,32,.66) 0%, rgba(28,36,32,.60) 40%, rgba(28,36,32,.80) 100%);
  }
  .hero__h1, .hero__sub { text-shadow: 0 1px 12px rgba(0,0,0,.35); }
}
