/* ==========================================================================
   Solace — design system
   Light mode only. Warm paper ground, deep evergreen ink, clay accent.
   ========================================================================== */

:root {
  /* Colour */
  --paper:        #FAF7F2;
  --paper-warm:   #F3EEE5;
  --paper-green:  #EDF1EE;
  --surface:      #FFFFFF;
  --ink:          #1B2A25;
  --ink-soft:     #3D4F49;
  --muted:        #6B7B75;
  --green:        #2C4A41;
  --green-deep:   #1E332C;
  --green-tint:   #DCE6E1;
  --clay:         #B87B52;
  --clay-tint:    #F2E4D8;
  --line:         #E3DCD1;
  --line-soft:    #EFE9DF;

  /* Type */
  --serif: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Space & shape */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 9vw, 128px);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(27, 42, 37, .05), 0 4px 14px rgba(27, 42, 37, .05);
  --shadow-md: 0 2px 6px rgba(27, 42, 37, .05), 0 18px 44px rgba(27, 42, 37, .09);

  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; line-height: 1.14; }
p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-warm); }
.section--green-tint { background: var(--paper-green); }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 18px;
}
.section-head { max-width: 720px; }
.h-display { font-size: clamp(2.5rem, 6.4vw, 5rem); font-weight: 300; line-height: 1.02; letter-spacing: -.03em; }
.h-section  { font-size: clamp(2rem, 3.7vw, 3.05rem); font-weight: 300; letter-spacing: -.025em; }
.h-card     { font-size: 1.22rem; font-weight: 500; letter-spacing: -.01em; }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--ink-soft); line-height: 1.62; }
.small { font-size: .875rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-size: .95rem; font-weight: 500; letter-spacing: -.005em; text-decoration: none;
  cursor: pointer; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { background: var(--paper-warm); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); background: rgba(44, 74, 65, .04); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.42); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.7); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .28s ease, border-color .28s ease, backdrop-filter .28s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; gap: 28px; }
.site-header--solid,
.site-header--opaque {
  background: rgba(250, 247, 242, .88);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 29px; height: 31px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.42rem; font-weight: 400; letter-spacing: -.02em; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; text-decoration: none; font-size: .94rem; font-weight: 450; padding-block: 4px;
  color: inherit; opacity: .82; transition: opacity .18s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); }

/* Over-hero (transparent) state */
.site-header--over { color: #fff; }
.site-header--over .brand__mark .mark-body { fill: #fff; }
.site-header--over .brand__mark .mark-dot { fill: var(--clay-tint); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent;
  border-radius: var(--r-pill); cursor: pointer; align-items: center; justify-content: center;
}
.site-header--over .nav-toggle { border-color: rgba(255,255,255,.4); }
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: currentColor; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top: 5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-header .nav,
  .site-header .header-cta { display: none; }
  .mobile-nav[data-open="true"] { display: block; }
}
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 26px;
  box-shadow: var(--shadow-md);
}
.mobile-nav a {
  display: block; padding: 14px 0; text-decoration: none; font-size: 1.05rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { margin-top: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(92vh, 860px);
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(20, 30, 26, .86) 0%, rgba(20, 30, 26, .55) 38%, rgba(20, 30, 26, .22) 68%, rgba(20, 30, 26, .38) 100%),
    linear-gradient(to right, rgba(20, 30, 26, .55) 0%, rgba(20, 30, 26, .12) 62%, rgba(20, 30, 26, 0) 100%);
}
.hero__inner { max-width: 800px; color: #fff; }
.hero h1 { text-wrap: balance; }
.hero__sub { margin-top: 24px; max-width: 620px; font-size: clamp(1.05rem, 1.45vw, 1.24rem); line-height: 1.6; color: rgba(255,255,255,.9); }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Platform (numbered accordion + sticky panel) ---------- */
.platform__lede { margin-top: 20px; }
.platform {
  margin-top: 56px; display: grid; gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
}
@media (max-width: 980px) { .platform { grid-template-columns: 1fr; gap: 28px; } }

/* --- the numbered tab list --- */
.platform__list { display: flex; flex-direction: column; }
.ptab {
  display: flex; align-items: flex-start; gap: 16px; width: 100%;
  padding: 22px 0; background: none; border: 0; border-top: 1px solid var(--line);
  text-align: left; cursor: pointer;
}
.ptab:first-child { border-top: 0; }
.ptab__num {
  font-family: var(--serif); font-size: .9rem; font-variant-numeric: tabular-nums;
  color: var(--muted); margin-top: 5px; transition: color .2s ease;
}
.ptab[aria-selected="true"] .ptab__num { color: var(--green); }
.ptab__main { flex: 1; min-width: 0; }
.ptab__title {
  display: block; font-family: var(--serif); font-size: clamp(1.18rem, 1.7vw, 1.4rem);
  font-weight: 400; line-height: 1.3; letter-spacing: -.01em;
  color: var(--muted); transition: color .2s ease;
}
.ptab[aria-selected="true"] .ptab__title { color: var(--ink); }
.ptab:hover .ptab__title { color: var(--green); }
.ptab__reveal {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .32s ease, opacity .28s ease;
}
.ptab[aria-selected="true"] .ptab__reveal { grid-template-rows: 1fr; opacity: 1; }
.ptab__desc { display: block; overflow: hidden; }
.ptab__reveal > .ptab__desc { min-height: 0; }
.ptab__desc { padding-top: 0; font-size: .95rem; line-height: 1.62; color: var(--ink-soft); }
.ptab[aria-selected="true"] .ptab__desc { padding-top: 12px; }
.ptab__chev {
  flex: none; width: 28px; height: 28px; margin-top: 4px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--green);
  display: grid; place-items: center; transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.ptab__chev svg { width: 14px; height: 14px; }
.ptab:hover .ptab__chev { border-color: var(--green); }
.ptab[aria-selected="true"] .ptab__chev { background: var(--green); border-color: var(--green); color: #fff; }

/* --- the sticky visual panel --- */
.platform__panel { position: sticky; top: calc(var(--header-h) + 26px); }
@media (max-width: 980px) { .platform__panel { position: static; } }
.platform__frame {
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--green-tint) 0%, #FFFFFF 52%, var(--paper-warm) 100%);
  padding: clamp(10px, 1.4vw, 18px); box-shadow: var(--shadow-md);
}
.platform__caption { margin-top: 12px; text-align: center; font-size: .76rem; color: var(--muted); }

/* --- shared product-view frame --- */
.pvis {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); padding: 18px; animation: pv-in .34s ease both;
}
.pvis[hidden] { display: none; }
@keyframes pv-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pvis { animation: none; } }
.pvis__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-bottom: 1px solid var(--line-soft); padding-bottom: 13px; margin-bottom: 15px;
}
.pvis__estate { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pvis__title { font-size: .92rem; font-weight: 550; color: var(--ink); margin-top: 3px; }
.pvis__meta {
  flex: none; background: var(--paper-green); color: var(--green);
  border-radius: var(--r-pill); padding: 4px 11px; font-size: .68rem; font-weight: 550;
}
.pvis__body { display: flex; flex-direction: column; gap: 13px; }

/* pills & chips used across the views */
.pill {
  display: inline-block; margin-top: 5px; border-radius: var(--r-pill);
  padding: 2px 9px; font-size: .655rem; font-weight: 500;
  background: var(--green-tint); color: var(--green);
}
.pill--soft   { background: var(--paper-warm); color: var(--muted); }
.pill--clay   { background: var(--clay-tint); color: #8C5A34; }
.pill--strong { background: #CFDED7; color: var(--green-deep); }
.chip {
  display: inline-block; border-radius: var(--r-pill); padding: 4px 11px;
  font-size: .68rem; border: 1px solid rgba(44, 74, 65, .2); color: var(--green-deep); background: #fff;
}
.chip--solid { background: var(--green); border-color: var(--green); color: #fff; }
.chip--source { font-size: .655rem; color: var(--green); border-color: var(--line); }

/* 01 checklist */
.pv-progress__row { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); }
.pv-progress__pct { font-weight: 600; color: var(--green); }
.pv-progress__track { margin-top: 7px; height: 6px; border-radius: 3px; background: var(--green-tint); overflow: hidden; }
.pv-progress__track i { display: block; height: 100%; background: var(--green); border-radius: 3px; }
.pv-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.pv-step {
  display: flex; align-items: flex-start; gap: 11px;
  border: 1px solid transparent; border-radius: 11px; padding: 9px 11px; background: var(--paper);
}
.pv-step--active { border-color: #B9CCC3; background: var(--paper-green); }
.pv-step strong { display: block; font-size: .8rem; font-weight: 550; color: var(--ink); }
.pv-step em { display: block; font-style: normal; font-size: .69rem; color: var(--muted); margin-top: 2px; }
.pv-step:not(.pv-step--done):not(.pv-step--active) strong { font-weight: 400; color: var(--muted); }
.pv-dot {
  flex: none; width: 16px; height: 16px; border-radius: 50%; margin-top: 2px;
  border: 2px solid var(--line); background: #fff; display: grid; place-items: center;
}
.pv-dot--active { border-color: var(--green); }
.pv-dot--done { border-color: var(--green); background: var(--green); color: #fff; }
.pv-dot--done svg { width: 10px; height: 10px; }

/* 02 assets + 03 documents rows */
.pv-rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.pv-rows > li {
  display: flex; align-items: center; justify-content: space-between; gap: 11px;
  border: 1px solid var(--line-soft); border-radius: 11px; padding: 9px 11px; background: var(--paper);
}
.pv-rows strong { display: block; font-size: .8rem; font-weight: 550; color: var(--ink); }
.pv-rows > li > span:first-child { min-width: 0; }
.pv-amount { flex: none; font-size: .82rem; font-weight: 550; font-variant-numeric: tabular-nums; color: var(--ink); }
.pv-amount--neg { color: #A4653C; }
.pv-note {
  display: flex; align-items: center; gap: 9px; margin-top: auto;
  background: var(--paper-green); border-radius: 11px; padding: 10px 12px;
  font-size: .72rem; color: var(--green-deep);
}
.pv-note__dot { flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.pv-docs { flex-direction: row; gap: 14px; align-items: stretch; }
.pv-docs .pv-rows { flex: 1; min-width: 0; align-content: start; }
.pv-rows--files > li { gap: 9px; justify-content: flex-start; }
.pv-file { flex: none; width: 15px; height: 15px; color: var(--green); }
.pv-filename {
  flex: 1; min-width: 0; font-size: .76rem; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pv-rows--files .pill { margin-top: 0; flex: none; }
.pv-phone {
  flex: none; width: 118px; align-self: center;
  border: 5px solid var(--green-deep); border-radius: 20px; background: var(--green-deep); padding: 4px;
  box-shadow: var(--shadow-md);
}
.pv-phone__screen { border-radius: 14px; background: var(--paper-green); padding: 9px 8px 10px; }
.pv-phone__notch { display: block; width: 30px; height: 3px; border-radius: 2px; background: #B9CCC3; margin: 0 auto 9px; }
.pv-phone__scan {
  position: relative; border: 1px dashed #8FAA9F; border-radius: 8px; background: #fff;
  padding: 9px 8px; display: grid; gap: 5px;
}
.pv-phone__scan i { display: block; height: 4px; border-radius: 2px; background: var(--green-tint); }
.pv-phone__scan i:first-child, .pv-phone__scan i:last-child { background: #B9CCC3; }
.pv-phone__beam {
  position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%);
  width: 58px; height: 2px; border-radius: 2px; background: var(--clay);
}
.pv-phone p { margin-top: 12px; text-align: center; font-size: .58rem; line-height: 1.35; color: var(--green); }
@media (max-width: 560px) { .pv-docs { flex-direction: column; } .pv-phone { align-self: center; } }

/* 04 correspondence */
.pv-threads { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.pv-threads > li {
  border: 1px solid var(--line-soft); border-radius: 11px; padding: 9px 11px; background: var(--paper);
}
.pv-threads > li > div { display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.pv-threads strong { font-size: .8rem; font-weight: 550; color: var(--ink); }
.pv-threads .pill { margin-top: 0; flex: none; }
.pv-threads em { display: block; font-style: normal; font-size: .69rem; color: var(--muted); margin-top: 4px; }
.pv-approve {
  margin-top: auto; border: 1px solid #B9CCC3; border-radius: 11px;
  background: var(--paper-green); padding: 12px;
}
.pv-approve__title { font-size: .74rem; font-weight: 600; color: var(--ink); }
.pv-approve__body { margin-top: 5px; font-size: .73rem; line-height: 1.5; color: var(--ink-soft); }
.pv-approve__actions { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 7px; }

/* 05 chat */
.pv-chat { gap: 11px; }
.pv-bubble { border-radius: 15px; padding: 11px 14px; font-size: .8rem; line-height: 1.55; }
.pv-bubble--you {
  margin-left: auto; max-width: 86%; background: var(--green); color: #fff; border-bottom-right-radius: 5px;
}
.pv-bubble--ai {
  max-width: 94%; background: var(--paper); border: 1px solid var(--line-soft);
  color: var(--ink); border-bottom-left-radius: 5px;
}
.pv-bubble__follow { margin-top: 9px; color: var(--ink-soft); }
.pv-sources { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 6px; }
.pv-disclaimer {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 3px;
  font-size: .69rem; line-height: 1.5; color: var(--muted);
}
.pv-disclaimer svg { flex: none; width: 13px; height: 13px; margin-top: 2px; color: var(--green); }

/* ---------- How we help ---------- */
.help-grid {
  margin-top: 52px; display: grid; gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}
.help-grid > * { grid-column: span 2; }
.help-grid > :nth-child(4), .help-grid > :nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid > *, .help-grid > :nth-child(4), .help-grid > :nth-child(5) { grid-column: span 1; }
}
@media (max-width: 620px) {
  .help-grid { grid-template-columns: 1fr; }
}

.help-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 30px 28px 32px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line); }
.illus { width: 58px; height: 58px; margin-bottom: 20px; }
/* Illustration palette — duotone greens with a clay accent */
.il-bg        { fill: #E7EEEA; }
.il-white     { fill: #FFFFFF; }
.il-white-soft{ fill: rgba(255,255,255,.72); }
.il-line      { stroke: var(--green); }
.il-deep      { stroke: var(--green-deep); }
.il-deep-fill { fill: var(--green-deep); }
.il-mid       { stroke: #6E8C81; }
.il-fill      { fill: var(--green); }
.il-fill-mid  { fill: #6E8C81; }
.il-mute      { stroke: #9FB6AD; }
.il-mute-fill { fill: #9FB6AD; }
.il-faint     { stroke: #D2DFD9; }
.il-clay      { stroke: var(--clay); }
.il-clay-fill { fill: #D7A784; }
.help-card h3 { margin-bottom: 11px; }
.help-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.62; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-top: 44px; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.16rem; font-weight: 400; letter-spacing: -.01em; line-height: 1.35;
  transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green); }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq p { padding: 0 60px 24px 0; color: var(--ink-soft); font-size: .97rem; line-height: 1.65; }
.faq p + p { padding-top: 0; margin-top: -8px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; }
.cta-band__inner {
  padding-block: clamp(60px, 7.5vw, 96px); display: grid; gap: 34px;
  grid-template-columns: 1.25fr .75fr; align-items: center;
}
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { font-size: clamp(1.9rem, 3.3vw, 2.8rem); font-weight: 300; letter-spacing: -.025em; }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,.8); max-width: 520px; line-height: 1.62; }
.cta-band .eyebrow { color: var(--clay-tint); }
.cta-band__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.cta-band__actions .small { color: rgba(255,255,255,.62); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.72); font-size: .9rem; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-top {
  padding-block: 56px 40px; display: grid; gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .brand { color: #fff; margin-right: 0; }
.footer-brand .brand__mark .mark-body { fill: #fff; }
.footer-brand .brand__mark .mark-dot { fill: var(--clay); }
.footer-brand p { margin-top: 16px; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.13); padding-block: 28px 40px; }
.footer-legal p { font-size: .8rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 900px; }
.footer-legal p + p { margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13); padding-block: 20px 30px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ---------- Sub-page header spacer & page hero ---------- */
.page { padding-top: var(--header-h); }
.page-hero { padding-block: clamp(56px, 7vw, 92px) clamp(8px, 2vw, 24px); }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); font-weight: 300; letter-spacing: -.03em; }
.page-hero .lede { margin-top: 20px; max-width: 620px; }

/* ---------- Access form ---------- */
.access-page { background: linear-gradient(to bottom, var(--paper-green) 0%, var(--paper) 46%); }
.access-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(34px, 5vw, 64px); align-items: start;
  padding-block: clamp(50px, 7vw, 92px) var(--section-y);
}
@media (max-width: 940px) { .access-layout { grid-template-columns: 1fr; } }

.access-intro h1 {
  margin-top: 16px; max-width: 560px; text-wrap: balance;
  font-size: clamp(2.2rem, 4.4vw, 3.25rem); font-weight: 300; letter-spacing: -.03em;
}
.access-intro .lede { margin-top: 22px; max-width: 500px; }

.expectations { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 24px; max-width: 500px; }
.expectations li { display: flex; gap: 16px; }
.expectations__dot {
  flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 8px;
}
.expectations strong { display: block; font-size: .95rem; font-weight: 550; color: var(--ink); margin-bottom: 5px; }
.expectations span:last-child { font-size: .95rem; line-height: 1.6; color: var(--ink-soft); }


.access-form-col { padding-top: 4px; }
.form-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: clamp(26px, 3.4vw, 40px);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 520px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field-grid .field { margin-bottom: 0; }
.field-grid + .field { margin-top: 20px; }
.field label { font-size: .875rem; font-weight: 550; letter-spacing: -.005em; }
.field .hint { font-size: .76rem; color: var(--muted); line-height: 1.5; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(44, 74, 65, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #A9B3AF; }
.field.is-invalid input { border-color: #C2543F; background: #FDF7F5; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  margin: 22px 0 0; border-radius: 12px; background: var(--clay-tint);
  padding: 12px 15px; font-size: .875rem; line-height: 1.6; color: #8C4A2E;
}
.form-alert[hidden] { display: none; }
#submitBtn { margin-top: 26px; }
#submitBtn[disabled] { opacity: .6; cursor: default; }
.form-footnote { margin-top: 16px; font-size: .76rem; color: var(--muted); line-height: 1.6; }

.form-success { display: none; }
.form-success[data-visible="true"] { display: block; }
.form-success .tick {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-tint); color: var(--green);
  display: grid; place-items: center;
}
.form-success h2 { margin-top: 20px; font-size: 1.55rem; font-weight: 400; }
.form-success p { margin-top: 13px; font-size: .95rem; line-height: 1.65; color: var(--ink-soft); }
.form-success p a { color: var(--green); text-underline-offset: 4px; text-decoration-color: #A9C0B6; }
.form-success .btn { margin-top: 28px; }

.tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--r-pill); background: var(--green-tint); color: var(--green);
  white-space: nowrap;
}
.tag--clay { background: var(--clay-tint); color: #8C5A34; }
.tag--soft { background: var(--paper-warm); color: var(--muted); }

/* ---------- Resources placeholder ---------- */
.placeholder {
  margin-top: 44px; margin-bottom: var(--section-y);
  border: 1px dashed var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: clamp(40px, 7vw, 90px) clamp(24px, 5vw, 60px); text-align: center;
}
.placeholder__icon { width: 56px; height: 56px; margin: 0 auto 26px; color: var(--green); opacity: .8; }
.placeholder h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 400; }
.placeholder p { margin-top: 16px; color: var(--ink-soft); max-width: 480px; margin-inline: auto; line-height: 1.62; }
.placeholder__list {
  list-style: none; margin: 34px auto 0; padding: 0; max-width: 560px;
  display: grid; gap: 10px; text-align: left;
}
.placeholder__list li {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  font-size: .93rem; color: var(--ink-soft);
}
.placeholder__list .tag { margin-left: auto; }
.placeholder .btn { margin-top: 34px; }

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


