/* ============================================================
   Autogenic Labs — site design system
   Brand: Quiet Magician + Everyman. Warm-light register.
   Locked palette from brand/DESIGN.md. 60/30/10, one gold CTA/viewport.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Light register */
  --cream:      #F7F3EA;   /* page canvas */
  --card:       #FDFBF4;   /* raised surface */
  --ink:        #1F1C16;   /* headings / primary */
  --body:       #5E5847;   /* body copy */
  --border:     #E8DFCC;   /* borders / dividers */
  --border-strong: #DED2B8;

  /* Green accent */
  --green:      #2F8761;   /* alive, links, badges */
  --green-soft: #E4F0E8;   /* green tint fill */
  --green-line: #CDE3D5;

  /* Dark register (espresso) */
  --espresso:   #15120D;
  --espresso-card: #211C15;
  --espresso-fg: #F2ECDE;
  --espresso-body: #DCD2BE;
  --espresso-border: #3A3327;
  --green-dark: #4EC486;

  /* Gold CTA */
  --gold-a:     #F4DC8E;
  --gold-b:     #E6C461;
  --gold-a-h:   #F1D578;
  --gold-b-h:   #DCB94E;
  --on-gold:    #3A2B0A;

  /* Type */
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-input: 10px;
  --r-btn:   12px;
  --r-card:  14px;
  --r-pill:  999px;

  /* Rhythm */
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 11vh, 132px);

  --shadow-card: 0 1px 2px rgba(31,28,22,.04), 0 8px 24px -18px rgba(31,28,22,.28);
  --shadow-float: 0 2px 6px rgba(31,28,22,.06), 0 20px 48px -28px rgba(31,28,22,.38);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.14; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); font-weight: 800; letter-spacing: -0.028em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.022em; }
h3 { font-size: 1.24rem; letter-spacing: -0.012em; }
p { margin: 0; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img, svg { display: block; max-width: 100%; }
strong { color: var(--ink); font-weight: 600; }

::selection { background: var(--green-soft); color: var(--ink); }
:focus-visible { outline: 2.5px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(48px, 7vh, 80px) 0; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--body); max-width: 40ch; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft); border: 1px solid var(--green-line);
  padding: 5px 12px; border-radius: var(--r-pill);
}
.eyebrow--plain { background: none; border: none; padding: 0; }
.section-head { max-width: 30ch; margin-bottom: clamp(32px, 5vh, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 1rem; font-weight: 600; line-height: 1;
  padding: 15px 22px; border-radius: var(--r-btn);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-gold {
  color: var(--on-gold);
  background: linear-gradient(135deg, var(--gold-a), var(--gold-b));
  box-shadow: 0 1px 1px rgba(58,43,10,.16), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-a-h), var(--gold-b-h)); transform: translateY(-1px); }
.btn-gold:active { transform: translateY(0); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--card); border-color: var(--ink); }
.btn-plain { color: var(--ink); background: transparent; padding-left: 4px; padding-right: 4px; }
.btn-plain:hover { color: var(--green); }
.btn--lg { padding: 17px 26px; font-size: 1.05rem; }
.btn-arrow::after { content: "→"; font-weight: 500; transition: transform .18s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 14px; z-index: 60;
  width: calc(100% - 2 * var(--gutter)); max-width: var(--maxw);
  margin: 14px auto 0;
  display: flex; align-items: center; gap: 18px;
  padding: 9px 10px 9px 20px;
  background: rgba(253,251,244,.82); backdrop-filter: saturate(150%) blur(14px);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  box-shadow: var(--shadow-float);
}
.nav__brand { display: inline-flex; align-items: center; gap: 9px; margin-right: auto; }
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a { color: var(--body); font-size: .95rem; font-weight: 500; }
.nav__links a:hover { color: var(--ink); text-decoration: none; }
.nav__cta { margin-left: 8px; border-radius: var(--r-pill); padding: 12px 20px; }
.nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta { margin-left: auto; }
}

/* mobile nav dialog */
.m-nav { border: 0; padding: 0; background: transparent; max-width: 100%; width: 100%; }
.m-nav::backdrop { background: rgba(21,18,13,.42); backdrop-filter: blur(2px); }
.m-nav__panel {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 20px var(--gutter) 26px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-float);
}
.m-nav__panel a { color: var(--ink); font-weight: 600; font-size: 1.05rem; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.m-nav__panel a:hover { text-decoration: none; color: var(--green); }
.m-nav__panel .btn { margin-top: 12px; }
.m-nav__panel .btn-gold { border-bottom: 0; }

/* wordmark */
.wordmark { display: inline-flex; align-items: center; gap: 9px; }
.wordmark__spark { color: var(--green); display: inline-flex; }
.wordmark__logo { width: 24px; height: 24px; display: block; }
.wordmark__text {
  font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(40px, 6vh, 76px); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 44px; } }
.hero h1 { margin-top: 18px; }
.hero__sub { margin-top: 20px; font-size: clamp(1.08rem, 1.7vw, 1.28rem); max-width: 36ch; }
.hero__sub strong { color: var(--ink); }

/* signup mechanic */
.optin { margin-top: 30px; max-width: 460px; }
.optin__label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #837c69; margin-bottom: 10px; }
.optin__row { display: flex; gap: 10px; }
.optin__textme { flex: 0 0 auto; }
.optin__ok { margin-top: 10px; font-size: .9rem; font-weight: 600; color: var(--green); }
.optin__ok::before { content: "✓ "; }
.optin__or { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #a39a83; font-size: .82rem; }
.optin__or::before, .optin__or::after { content: ""; height: 1px; flex: 1; background: var(--border-strong); }
.optin__full { width: 100%; }
.finalcta .optin__label { color: var(--espresso-body); }
.finalcta .optin__ok { color: var(--green-dark); }
.finalcta .optin__or { color: var(--espresso-body); }
.finalcta .optin__or::before, .finalcta .optin__or::after { background: var(--espresso-border); }
.optin__input {
  flex: 1 1 auto; min-width: 0;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 15px 16px; border-radius: var(--r-input);
  border: 1px solid var(--border-strong); background: var(--card);
}
.optin__input::placeholder { color: #9a9280; }
.optin__input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.optin__note { margin-top: 12px; font-size: .86rem; color: #837c69; }
.optin__mech {
  margin-top: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .92rem; color: var(--body);
}
.optin__num {
  font-weight: 700; color: var(--ink);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 5px 12px;
}
.optin__kw { color: var(--green); font-weight: 700; }
@media (max-width: 480px) { .optin__row { flex-direction: column; } }

/* ---------- iPhone device — realistic iOS Messages ---------- */
.device-stage { position: relative; display: flex; justify-content: center; }
.phone {
  --ios-green: #62C766;   /* iOS SMS sent bubble */
  --ios-grey:  #E9E9EB;   /* iOS received bubble */
  --ios-blue:  #0A7CFF;
  --ios-screen:#FFFFFF;
  --ios-ink:   #000000;
  position: relative; width: min(342px, 86vw); aspect-ratio: 1290 / 2796;  /* iPhone 15/16 Pro */
  border-radius: 60px; padding: 12px;
  background: linear-gradient(148deg, #3c3f45 0%, #1c1d20 20%, #121316 50%, #1c1d20 80%, #45484e 100%);
  box-shadow:
    0 0 0 1.5px #08080a,
    inset 0 0 3px 1px rgba(255,255,255,.10),
    0 34px 60px -30px rgba(24,18,10,.55),
    var(--shadow-float);
  font-family: -apple-system, "SF Pro Text", "SF Pro", "Helvetica Neue", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
/* physical side buttons */
.phone__btn { position: absolute; background: #202226; border-radius: 2px; z-index: 0; box-shadow: inset 0 0 1px rgba(255,255,255,.15); }
.phone__btn--mute  { left: -2px; top: 15.5%; width: 3px; height: 3.2%; }
.phone__btn--up    { left: -2px; top: 21%;   width: 3px; height: 6.2%; }
.phone__btn--down  { left: -2px; top: 28.5%; width: 3px; height: 6.2%; }
.phone__btn--power { right: -2px; top: 23%;  width: 3px; height: 9.2%; }
.phone__screen {
  position: relative; height: 100%; width: 100%; overflow: hidden;
  background: var(--ios-screen); border-radius: 48px;
  box-shadow: inset 0 0 0 2px #050506;
  display: flex; flex-direction: column;
}
/* status bar */
.ios-status {
  position: relative; z-index: 4; height: 54px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 26px 0 34px; color: var(--ios-ink);
}
.ios-status__time { font-size: 15.5px; font-weight: 600; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.ios-status__icons { display: flex; align-items: center; gap: 6px; }
.ios-island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 90px; height: 27px; background: #000; border-radius: 999px; z-index: 6; }
/* messages header */
.ios-head {
  position: relative; z-index: 3; flex: 0 0 auto; padding: 2px 8px 8px;
  background: rgba(249,249,249,.86); backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: .5px solid rgba(0,0,0,.13);
  display: grid; grid-template-columns: 48px 1fr 48px; align-items: center;
}
.ios-head__back { color: var(--ios-blue); justify-self: start; display: flex; align-items: center; gap: 2px; padding-left: 8px; }
.ios-head__badge { font-size: 13px; font-weight: 500; }
.ios-head__center { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ios-head__avatar {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(157deg, #8FE0B0, #2F8761 88%); color: #fff; font-size: 21px;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.ios-head__name { font-size: 12px; color: #000; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }
.ios-head__name svg { opacity: .3; }
.ios-head__ft { color: var(--ios-blue); justify-self: end; padding-right: 10px; }
/* thread */
.ios-thread { flex: 1 1 auto; padding: 10px 15px 6px; overflow: hidden; display: flex; flex-direction: column; background: var(--ios-screen); }
.ios-sep { text-align: center; font-size: 11px; color: #8a8a8e; margin: 4px 0 12px; letter-spacing: .01em; }
.ios-sep b { color: #6e6e72; font-weight: 600; }
.msg {
  position: relative; max-width: 73%; padding: 8px 14px; margin-top: 3px;
  font-size: 16px; line-height: 1.3; border-radius: 20px; word-wrap: break-word; letter-spacing: -.01em;
  opacity: 0; transform: translateY(7px);
}
.msg.in { opacity: 1; transform: none; transition: opacity .34s ease, transform .34s cubic-bezier(.22,1,.36,1); }
.msg--me   { align-self: flex-end;   background: var(--ios-green); color: #fff; }
.msg--them { align-self: flex-start; background: var(--ios-grey);  color: var(--ios-ink); }
/* first bubble in a group gets extra top gap */
.msg--them + .msg--me, .msg--me + .msg--them { margin-top: 8px; }
/* bubble tails — only the last bubble in a group (.msg--tail) shows one */
.msg--tail::before, .msg--tail::after { content: ""; position: absolute; bottom: -0.5px; height: 17px; }
.msg--me.msg--tail::before   { right: -7px;  border-right: 16px solid var(--ios-green); border-bottom-left-radius: 16px 14px; }
.msg--me.msg--tail::after    { right: -23px; width: 13px; background: var(--ios-screen); border-bottom-left-radius: 13px; }
.msg--them.msg--tail::before { left: -7px;   border-left: 16px solid var(--ios-grey);  border-bottom-right-radius: 16px 14px; }
.msg--them.msg--tail::after  { left: -23px;  width: 13px; background: var(--ios-screen); border-bottom-right-radius: 13px; }
.msg__spark { color: #FFD34E; }
/* iOS rich link preview */
.ios-link {
  align-self: flex-end; width: 73%; margin-top: 5px; overflow: hidden;
  border-radius: 18px; background: var(--ios-grey); box-shadow: 0 1px 2px rgba(0,0,0,.05);
  opacity: 0; transform: translateY(8px);
}
.ios-link.in { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.ios-link__shot { padding: 13px 13px 12px; background: linear-gradient(142deg, #E1EFE7, #C8E5D3); }
.ios-link__brand { font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #2F8761; display: flex; align-items: center; gap: 4px; }
.ios-link__shot-title { margin-top: 7px; font-size: 14px; font-weight: 700; color: #143223; }
.ios-link__rows { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.ios-link__row { display: flex; justify-content: space-between; font-size: 11px; color: #3d6a51; }
.ios-link__row span:last-child { font-weight: 700; }
.ios-link__strip { padding: 8px 13px; background: #E3E3E6; }
.ios-link__title { font-size: 12.5px; font-weight: 600; color: #1a1a1a; line-height: 1.25; }
.ios-link__domain { font-size: 11px; color: #7a7a80; margin-top: 1px; }
/* typing */
.ios-typing {
  align-self: flex-start; width: fit-content; margin-top: 4px;
  background: var(--ios-grey); border-radius: 20px; padding: 12px 15px;
  display: inline-flex; gap: 5px; opacity: 0;
}
.ios-typing.in { opacity: 1; transition: opacity .28s; }
.ios-typing span { width: 8px; height: 8px; border-radius: 50%; background: #9d9da3; animation: typing 1.3s infinite; }
.ios-typing span:nth-child(2) { animation-delay: .18s; }
.ios-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
/* composer */
.ios-composer { flex: 0 0 auto; padding: 8px 13px 20px; display: flex; align-items: center; gap: 9px; background: var(--ios-screen); }
.ios-composer__plus { width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: #E7E7EC; color: #8a8a8f; display: grid; place-items: center; }
.ios-composer__pill { flex: 1; height: 34px; border: 1px solid #d1d1d6; border-radius: 999px; display: flex; align-items: center; padding: 0 8px 0 14px; color: #adadb3; font-size: 15px; }
.ios-composer__send { width: 28px; height: 28px; margin-left: auto; border-radius: 50%; background: var(--ios-green); color: #fff; display: grid; place-items: center; }
.ios-home { position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%); width: 128px; height: 5px; border-radius: 3px; background: #000; opacity: .92; z-index: 5; }

@media (prefers-reduced-motion: reduce) {
  .msg, .ios-link, .ios-typing { opacity: 1 !important; transform: none !important; }
  .ios-typing { display: none; }
}

/* compact chat bubbles for use-case snippet cards (not the realistic phone) */
.bubble { max-width: 88%; padding: 8px 12px; border-radius: 16px; font-size: .82rem; line-height: 1.35; }
.bubble--me   { align-self: flex-end;   background: #63C866; color: #fff; border-bottom-right-radius: 5px; }
.bubble--them { align-self: flex-start; background: #E9E9EB; color: #1a1a1a; border-bottom-left-radius: 5px; }
.bubble__spark { color: var(--gold-b); }

/* ---------- capability grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.tile {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 22px; box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-float); border-color: var(--border-strong); }
.tile__ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green); border: 1px solid var(--green-line);
  margin-bottom: 15px;
}
.tile h3 { margin-bottom: 7px; }
.tile p { font-size: .95rem; }
/* colored icon tints — a little life across the grid */
.grid-3 .tile:nth-child(2) .tile__ico { background:#FBF0D6; border-color:#F0E1B4; color:#B08421; }
.grid-3 .tile:nth-child(3) .tile__ico { background:#F7E8E1; border-color:#EFD5CB; color:#BE6749; }
.grid-3 .tile:nth-child(4) .tile__ico { background:#EAE7F3; border-color:#D9D4EC; color:#6A5FA8; }
.grid-3 .tile:nth-child(5) .tile__ico { background:#FBF0D6; border-color:#F0E1B4; color:#B08421; }
.grid-3 .tile:nth-child(6) .tile__ico { background:#F7E8E1; border-color:#EFD5CB; color:#BE6749; }

/* ---------- connectors wall ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } }
.chip {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 10px 17px; font-size: .92rem; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-card);
}
.chip img { width: 19px; height: 19px; opacity: .82; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step__n {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--green-line); color: var(--green);
  font-weight: 700; font-size: .9rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .92rem; }

/* ---------- use cases ---------- */
.uc { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card); padding: 18px; box-shadow: var(--shadow-card); }
.uc__tag { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green); }
.uc__thread { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.uc .bubble { opacity: 1; transform: none; max-width: 90%; }
.uc__cap { margin-top: 12px; font-size: .9rem; color: var(--body); }

/* verb marquee small */
.verbs { margin-top: 30px; }
.verb {
  display: inline-flex; flex: 0 0 auto; align-items: center;
  padding: 8px 15px; border-radius: var(--r-pill);
  border: 1px dashed var(--border-strong); color: var(--body); font-size: .9rem; font-weight: 500;
  background: rgba(253,251,244,.5);
}

/* ---------- split feature (scheduling / build) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split--flip .split__media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 32px; } .split--flip .split__media { order: 0; } }
.feat-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; }
.feat-list .ck { flex: 0 0 auto; margin-top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line); color: var(--green); display: grid; place-items: center; font-size: .7rem; }
.feat-list li > span { display: flex; flex-direction: column; }
.feat-list b { display: block; color: var(--ink); margin-bottom: 2px; }
.feat-list span span, .feat-list li > span { color: var(--body); }

/* flat-illustration frame */
.illo-frame { border-radius: 20px; overflow: hidden; background: #FBF6EA; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.illo-frame--green { background: var(--green-soft); border-color: var(--green-line); }
.illo { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* graphical "app window" (build-a-tool section) */
.appwin { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-float); }
.appwin__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #F1EBDB; border-bottom: 1px solid var(--border); }
.appwin__dot { width: 11px; height: 11px; border-radius: 50%; background: #D9CDB0; }
.appwin__bar .appwin__dot:nth-child(1) { background: #E58F76; }
.appwin__bar .appwin__dot:nth-child(2) { background: #E8C260; }
.appwin__bar .appwin__dot:nth-child(3) { background: #7FC79A; }
.appwin__addr { margin-left: 6px; flex: 1; background: var(--cream); border: 1px solid var(--border); border-radius: 999px; font-size: .74rem; color: #837c69; padding: 4px 12px; text-align: center; }
.appwin__body { padding: 22px; }
.appwin__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.appwin__eyebrow { font-size: .66rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green); display: flex; gap: 5px; align-items: center; }
.appwin__title { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; margin-top: 6px; color: var(--ink); }
.appwin__total { text-align: right; font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; flex: 0 0 auto; }
.appwin__total small { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: #9a9280; margin-top: 4px; }
.appwin__people { display: flex; margin: 20px 0 6px; }
.appwin__ava { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--card); display: grid; place-items: center; color: #fff; font-size: .78rem; font-weight: 700; margin-right: -9px; }
.appwin__ava:nth-child(1) { background: #2F8761; }
.appwin__ava:nth-child(2) { background: #E6C461; color: #3A2B0A; }
.appwin__ava:nth-child(3) { background: #C97B63; }
.appwin__ava:nth-child(4) { background: #6A5FA8; }
.appwin__bars { margin-top: 18px; display: flex; flex-direction: column; gap: 13px; }
.appwin__barhead { display: flex; justify-content: space-between; font-size: .84rem; color: var(--body); margin-bottom: 6px; }
.appwin__barhead b { color: var(--ink); font-weight: 600; }
.appwin__track { height: 9px; border-radius: 999px; background: var(--cream); border: 1px solid var(--border); overflow: hidden; }
.appwin__fill { height: 100%; border-radius: 999px; }
.appwin__foot { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.appwin__each { color: var(--body); font-size: .9rem; }
.appwin__each b { color: var(--ink); font-weight: 800; font-size: 1.1rem; }
.appwin__btn { background: linear-gradient(135deg, var(--gold-a), var(--gold-b)); color: var(--on-gold); font-weight: 700; font-size: .82rem; padding: 9px 18px; border-radius: 999px; }

/* schedule card visual */
.mediacard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card); padding: 20px; box-shadow: var(--shadow-float); }
.agenda { display: flex; flex-direction: column; gap: 10px; }
.agenda__item { display: flex; gap: 12px; align-items: center; padding: 11px 13px; border: 1px solid var(--border); border-radius: 11px; background: var(--cream); }
.agenda__time { font-size: .72rem; font-weight: 700; color: var(--green); width: 58px; flex: 0 0 auto; }
.agenda__what { font-size: .9rem; color: var(--ink); }
.agenda__item--proactive { background: var(--green-soft); border-color: var(--green-line); }

/* ---------- espresso bands ---------- */
.band-dark { background: var(--espresso); color: var(--espresso-body); }
.band-dark h2, .band-dark h3 { color: var(--espresso-fg); }
.band-dark .eyebrow { color: var(--green-dark); background: rgba(78,196,134,.12); border-color: rgba(78,196,134,.28); }
.band-dark .lede { color: var(--espresso-body); }
.band-dark a { color: var(--green-dark); }
.band-dark a.btn-gold { color: var(--on-gold); }   /* keep gold-button label dark on dark bands */
.band-dark a.btn-ghost { color: var(--espresso-fg); border-color: var(--espresso-border); }
.band-dark a.btn-ghost:hover { background: var(--espresso-card); border-color: var(--espresso-fg); }
.band-dark .thesis { max-width: 22ch; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; color: var(--espresso-fg); line-height: 1.12; }
.trust-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 720px) { .trust-trio { grid-template-columns: 1fr; gap: 22px; } }
.trust__ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(78,196,134,.12); border: 1px solid rgba(78,196,134,.28); color: var(--green-dark); margin-bottom: 13px; }
.trust h3 { font-size: 1.1rem; margin-bottom: 6px; }
.trust p { font-size: .93rem; color: var(--espresso-body); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 24px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-card);
}
.price--feat { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), var(--shadow-float); position: relative; }
.price--feat::before { content: "Most popular"; position: absolute; top: -11px; left: 22px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--green); padding: 3px 10px; border-radius: var(--r-pill); }
.price__name { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.price__amt { margin-top: 10px; font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price__amt small { font-size: .9rem; font-weight: 500; color: #837c69; letter-spacing: 0; }
.price__desc { margin-top: 8px; font-size: .92rem; min-height: 42px; }
.price__list { margin: 16px 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.price__list li { list-style: none; display: flex; gap: 9px; font-size: .9rem; color: var(--body); }
.price__list .ck { color: var(--green); font-weight: 700; }
.price .btn { margin-top: auto; width: 100%; }

/* ---------- proof ---------- */
.proof { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 820px) { .proof { grid-template-columns: 1fr; gap: 30px; } }
.founder-note { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); font-weight: 500; line-height: 1.42; }
.founder-note::before { content: "\201C"; color: var(--green); font-weight: 800; }
.founder-note::after { content: "\201D"; color: var(--green); font-weight: 800; }
.founder-sig { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.founder-sig__dot { width: 40px; height: 40px; border-radius: 50%; background: var(--green-soft); border: 1px solid var(--green-line); }
.founder-sig__name { color: var(--ink); font-weight: 700; font-size: .95rem; }
.founder-sig__role { font-size: .82rem; color: #837c69; }
.ba { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.ba__row { padding: 16px 18px; }
.ba__row + .ba__row { border-top: 1px solid var(--border); }
.ba__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9a9280; }
.ba__row--after .ba__label { color: var(--green); }
.ba__text { margin-top: 6px; color: var(--ink); font-size: .96rem; }
.ba__note { display: block; margin-top: 6px; font-size: .78rem; color: #9a9280; }

/* ---------- final CTA ---------- */
.finalcta { text-align: center; }
.finalcta h2 { color: var(--espresso-fg); max-width: 18ch; margin: 0 auto; }
.finalcta p { margin: 16px auto 28px; max-width: 42ch; }
.finalcta .optin { margin-left: auto; margin-right: auto; }
.finalcta .optin__input { background: var(--espresso-card); border-color: var(--espresso-border); color: var(--espresso-fg); }
.finalcta .optin__input::placeholder { color: #8a8271; }
.finalcta .optin__note, .finalcta .optin__mech { color: var(--espresso-body); }
.finalcta .optin__num { background: var(--espresso-card); border-color: var(--espresso-border); color: var(--espresso-fg); }

/* ---------- full-bleed lifestyle image band ---------- */
.imgband { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.imgband__bg { position: absolute; inset: 0; background-position: center right; background-size: cover; background-repeat: no-repeat; }
.imgband__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,243,234,.97) 0%, rgba(247,243,234,.9) 30%, rgba(247,243,234,.35) 58%, rgba(247,243,234,0) 82%); }
.imgband__inner { position: relative; z-index: 2; max-width: 34ch; }
.imgband__inner h2 { margin-top: 14px; }
.imgband__inner p { margin-top: 14px; }
@media (max-width: 640px) {
  .imgband { min-height: 520px; align-items: flex-end; padding-bottom: 40px; }
  .imgband__scrim { background: linear-gradient(0deg, rgba(247,243,234,.98) 26%, rgba(247,243,234,.6) 55%, rgba(247,243,234,.1) 100%); }
}

/* connector chip icon + monogram fallback */
.chip__ico { width: 20px; height: 20px; flex: 0 0 auto; display: grid; place-items: center; }
.chip__ico img { width: 20px; height: 20px; }
.chip__ico--mono { background: var(--green); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 700; }
.chip__ico--mono::before { content: attr(data-i); }

/* proof section photo */
.proof__photo img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-card); box-shadow: var(--shadow-float); }

/* ---------- footer ---------- */
.footer { background: var(--card); border-top: 1px solid var(--border); }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: clamp(32px, 6vw, 72px);
  padding: clamp(44px, 6vh, 64px) 0 36px;
}
.footer__brand .wordmark { margin-bottom: 14px; }
.footer__blurb { font-size: .84rem; line-height: 1.5; max-width: 30ch; color: var(--body); }
.footer__ent { margin-top: 16px; display: flex; flex-direction: column; gap: 3px; font-size: .78rem; line-height: 1.5; color: #8b8470; }
.footer__ent a { color: #8b8470; }
.footer__ent a:hover { color: var(--ink); text-decoration: none; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: #a39a83; margin: 0 0 12px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer__col a { color: var(--body); font-size: .84rem; }
.footer__col a:hover { color: var(--green); text-decoration: none; }
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 460px) { .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px 16px; } }

.footer__compliance {
  border-top: 1px solid var(--border); padding: 18px 0;
  font-size: .74rem; color: #948c78; line-height: 1.55; max-width: 92ch;
}
.footer__compliance strong { color: var(--body); font-weight: 600; }
.footer__compliance a { color: #948c78; text-decoration: underline; text-underline-offset: 2px; }
.footer__compliance a:hover { color: var(--ink); }
.footer__bar {
  border-top: 1px solid var(--border); padding: 16px 0 40px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center;
  font-size: .76rem; color: #a39a83;
}
.footer__bar .footer__tag { margin-left: auto; color: #b3a98f; }

/* ---------- generic page hero (sub-pages) ---------- */
.pagehero { padding-top: clamp(56px, 9vh, 108px); }
.pagehero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-top: 16px; }
.pagehero .lede { margin-top: 18px; max-width: 52ch; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 44px; margin-bottom: 14px; }
.prose h3 { margin-top: 30px; margin-bottom: 8px; }
.prose p { margin-bottom: 16px; }

/* utilities */
.mt-s { margin-top: 12px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 40px; }
.stack-gap > * + * { margin-top: 14px; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.hide-sm { } @media (max-width: 640px) { .hide-sm { display: none; } }
