 /* ============================================================
   Alora — site-wide styles
   Single typeface: Outfit. Emphasis = weight, never a 2nd font.
   Two color directions via [data-theme]: "clay" and "teal".
   Earthy framework; terracotta demoted from flood → accent.
   ============================================================ */

:root {
  /* Constant earthy tokens */
  --cream:        #f6f3ee;
  --cream-warm:   #faf7f1;
  --cream-deep:   #efe8dc;
  --paper:        #f4f1eb;
  --warm-bg:      #fcfbf9;
  --text-main:    #38322f;
  --text-muted:   #6c645e;
  --text-faint:   #9b938b;
  --border-soft:  #e4ddd2;

  --terracotta:   #cf7a61;
  --terracotta-deep:#a8553f;
  --teal:         #2a5a63;
  --teal-deep:    #163e44;
  --sage:         #8b9f8a;
  --sage-deep:    #5f7360;
  --mustard:      #e0a94e;
  --mustard-deep: #946821;
  --rose:         #c08382;
  --rust:         #b5533b;
  --navy:         #2c3a4a;
  --cream-on-dark:#faf3e7;

  --maxw: 1180px;
  --ease-emph: cubic-bezier(0.2, 0, 0, 1);
  --ease-dec:  cubic-bezier(0.05, 0.7, 0.1, 1);
}

/* ---- Single palette. Warm terracotta stays on the wordmark + hero;
   everything else flows from --accent-deep so the Tweaks accent picker
   recolors the whole site from one muted, comforting value. ---- */
:root[data-theme="clay"], :root {
  --accent:        var(--terracotta);   /* warm — hero word + glows + closing CTA */
  --accent-deep:   #5a7493;        /* slate — the cool half of the slate + terracotta framework */
  --accent-wash:   color-mix(in srgb, var(--accent-deep) 13%, transparent);
  --accent-line:   color-mix(in srgb, var(--accent-deep) 30%, transparent);

  --accent2:       var(--terracotta);
  --accent2-deep:  var(--accent-deep);
  --accent2-wash:  var(--accent-wash);
  --accent2-line:  var(--accent-line);

  --em-color:      var(--accent-deep);

  --bg:       var(--cream);
  --bg-alt:   var(--cream-deep);
  --bg-tint:  color-mix(in srgb, var(--accent-deep) 9%, var(--cream));

  --cta-bg-1: #cf7a61;             /* warm terracotta closing moment */
  --cta-bg-2: #b05538;
  --cta-soft: #e0976f;
  --cta-text: var(--cream-on-dark);

  --glow-1: rgba(224,169,78,0.40);  /* mustard */
  --glow-2: rgba(207,122,97,0.34);  /* terracotta */
  --glow-3: rgba(139,159,138,0.30); /* sage */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); transition: background .4s ease; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: "Outfit", system-ui, sans-serif;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent-wash); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Type primitives (one font; weight + line breaks do the work) ---- */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-deep);
}
.eyebrow.muted { color: var(--text-faint); }
/* display headline */
.display {
  font-weight: 300; font-size: clamp(46px, 8vw, 86px);
  line-height: 1.0; letter-spacing: -0.035em; margin: 0;
}
.h-section {
  font-weight: 300; font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.05; letter-spacing: -0.03em; margin: 0;
}
.h-sub { font-weight: 300; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.025em; margin: 0; }
.em { font-weight: 500; letter-spacing: -0.028em; color: var(--em-color, var(--teal)); }
.em.tint { color: var(--accent); }
.lead {
  font-size: clamp(17px, 1.55vw, 21px); line-height: 1.62;
  font-weight: 400; color: var(--text-muted); letter-spacing: -0.004em;
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.pad { padding: clamp(82px, 13vh, 152px) 0; }
.pad-sm { padding: clamp(56px, 8vh, 92px) 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: inherit; font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em; border-radius: 999px;
  padding: 15px 26px; border: none; cursor: pointer;
  transition: transform .22s var(--ease-emph), box-shadow .22s var(--ease-emph), background .22s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent-deep); color: var(--cream-on-dark);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14), 0 2px 6px rgba(0,0,0,0.08);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.10); }
.btn-ghost {
  background: rgba(56,50,47,0.04); color: var(--text-main);
  border: 1.25px solid var(--border-soft);
}
.btn-ghost:hover { background: rgba(56,50,47,0.07); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.16); color: var(--cream-on-dark); border: 1.25px solid rgba(255,255,255,0.34); }
.btn-light:hover { background: rgba(255,255,255,0.26); transform: translateY(-2px); }
.btn-onaccent { background: var(--cream-on-dark); color: var(--accent-deep); box-shadow: 0 10px 26px rgba(0,0,0,0.16); }
.btn-onaccent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.2); }
.btn-sm { padding: 11px 18px; font-size: 14.5px; }

.textlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--accent-deep);
  border-bottom: 1.5px solid transparent; transition: border-color .2s;
}
.textlink svg { width: 16px; height: 16px; transition: transform .2s; }
.textlink:hover { border-color: var(--accent-line); }
.textlink:hover svg { transform: translateX(3px); }

/* ============================================================  NAV  */
.nav { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 36px); max-width: 1100px; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 12px 10px 22px; border-radius: 40px;
  background: rgba(252,251,249,0.62);
  backdrop-filter: blur(20px) saturate(1.7); -webkit-backdrop-filter: blur(20px) saturate(1.7);
  border: 1.25px solid rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(56,50,47,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled .nav-inner { background: rgba(252,251,249,0.84); box-shadow: 0 12px 34px rgba(56,50,47,0.12), inset 0 1px 0 rgba(255,255,255,0.6); }
.nav-logo { height: 32px; width: auto; display: block; }
.nav-mid { display: flex; align-items: center; gap: 26px; }
.nav-mid a { font-size: 15px; font-weight: 500; color: var(--text-muted); letter-spacing: -0.01em; transition: color .2s; }
.nav-mid a:hover, .nav-mid a.active { color: var(--text-main); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-waitlist { font-size: 14.5px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.nav-waitlist:hover { text-decoration: underline; }
@media (max-width: 900px) { .nav-mid { display: none; } }
@media (max-width: 560px) { .nav-waitlist { display: none; } }

/* ============================================================  HERO  */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(132px, 20vh, 205px); padding-bottom: clamp(40px, 6vh, 78px);
  background: radial-gradient(120% 80% at 50% -10%, var(--bg-alt) 0%, rgba(0,0,0,0) 58%), var(--bg);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; opacity: 0.6; }
.hero-glow.g1 { width: 520px; height: 520px; top: -160px; left: -80px; background: radial-gradient(closest-side, var(--glow-1), transparent 70%); animation: drift1 22s ease-in-out infinite; }
.hero-glow.g2 { width: 460px; height: 460px; top: -120px; right: -60px; background: radial-gradient(closest-side, var(--glow-2), transparent 70%); animation: drift2 26s ease-in-out infinite; }
.hero-glow.g3 { width: 380px; height: 380px; bottom: -120px; left: 32%; background: radial-gradient(closest-side, var(--glow-3), transparent 70%); animation: drift1 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,30px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-36px,26px)} }

.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero h1 { font-size: clamp(48px, 8.6vw, 92px); line-height: 0.98; letter-spacing: -0.04em; margin: 0; font-weight: 300; }
.hero h1 .line-1 { font-weight: 300; }
.rotator { display: block; margin-top: 2px; min-height: 1.04em; white-space: nowrap; }
.rotator-word { display: inline-block; font-weight: 600; color: var(--accent); letter-spacing: -0.04em; transition: opacity .42s var(--ease-emph), transform .42s var(--ease-emph); }
.rotator-word.out { opacity: 0; transform: translateY(-12px); }
.rotator-word.in  { opacity: 1; transform: translateY(0); }
.hero .lead { max-width: 600px; margin: 30px auto 0; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--text-faint); font-weight: 500; }
.hero-note b { color: var(--text-muted); font-weight: 600; }

/* Hero media slot (image or video) + flanking phones */
.hero-stage { position: relative; z-index: 2; margin-top: clamp(46px, 6vh, 70px); display: flex; justify-content: center; align-items: flex-end; }
.hero-stage .phone-img { width: clamp(220px, 27vw, 300px); filter: drop-shadow(0 40px 60px rgba(56,50,47,0.22)); }
.hero-stage .phone-side { width: clamp(150px, 18vw, 208px); filter: drop-shadow(0 30px 46px rgba(56,50,47,0.16)); opacity: 0.97; }
.hero-stage .phone-side.left  { transform: rotate(-7deg) translateY(34px); margin-right: -34px; }
.hero-stage .phone-side.right { transform: rotate(7deg)  translateY(34px); margin-left: -34px; }
@media (max-width: 680px) { .hero-stage .phone-side { display: none; } }

/* Full media slot variant — for the user's hero image/video */
.hero-media-slot {
  position: relative; z-index: 2; margin: clamp(44px,6vh,66px) auto 0; width: min(960px, 92%);
  aspect-ratio: 16 / 9; border-radius: 26px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  border: 1.25px solid var(--border-soft);
  box-shadow: 0 40px 80px rgba(56,50,47,0.16);
  display: flex; align-items: center; justify-content: center;
}
.hero-media-slot video, .hero-media-slot img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-slot .placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--text-faint); text-align: center; padding: 24px; }
.hero-media-slot .placeholder svg { width: 46px; height: 46px; color: var(--accent); opacity: 0.7; }
.hero-media-slot .placeholder b { color: var(--text-muted); font-weight: 600; font-size: 16px; }
.hero-media-slot .placeholder span { font-size: 13.5px; max-width: 280px; }

.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 40px; color: var(--text-faint); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 1; transition: opacity 0.5s ease; pointer-events: auto; }
.scroll-cue.hidden { opacity: 0; pointer-events: none; }
.scroll-cue .arrow { width: 22px; height: 22px; animation: bob 1.8s ease-in-out infinite; color: var(--accent); }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================================================  STATS TICKER  */
.ticker-sec { padding: 36px 0; background: var(--bg); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.ticker { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.ticker-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stat { display: flex; align-items: center; gap: 13px; padding: 0 40px; border-right: 1px solid var(--border-soft); }
.stat .ico { width: 44px; height: 44px; border-radius: 14px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--accent-wash); color: var(--accent-deep); }
.stat .ico svg { width: 22px; height: 22px; }
.stat .num { font-size: 25px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.stat .lbl { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
.stat .stat-phrase { font-size: 15px; font-weight: 500; color: var(--text); }

/* ============================================================  CENTERED HEADS  */
.center-head { text-align: center; max-width: 800px; margin: 0 auto; }
.center-head .h-section { margin-top: 16px; }
.center-head .lead { margin: 20px auto 0; max-width: 620px; }

/* ============================================================  SHOWCASE  */
.showcase { background: var(--bg-alt); }
.showcase-stage { display: flex; justify-content: center; margin-top: clamp(40px,6vh,68px); position: relative; }
.showcase-stage::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(closest-side, var(--accent-wash), transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0; }
.showcase-stage .phone-img { position: relative; z-index: 1; width: clamp(250px, 30vw, 332px); filter: drop-shadow(0 44px 64px rgba(56,50,47,0.2)); }

/* ============================================================  FEATURE SECTIONS  */
.feature { overflow: hidden; }
.feature .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
.feature.flip .feat-copy { order: 2; }
.feature.flip .feat-media { order: 1; }
.feat-copy .eyebrow { margin-bottom: 18px; display: block; }
.feat-copy .h-section { margin-bottom: 20px; }
.feat-copy .lead { margin-bottom: 26px; }
.feat-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 13px; }
.feat-bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--text-main); font-weight: 400; line-height: 1.45; }
.feat-bullets .dot { width: 23px; height: 23px; border-radius: 7px; flex: none; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.feat-bullets .dot svg { width: 13px; height: 13px; }

.feat-media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }
.feat-media::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0; }
.feat-media .phone-img { position: relative; z-index: 1; width: clamp(230px, 26vw, 296px); filter: drop-shadow(0 40px 60px rgba(56,50,47,0.2)); }
.feat-media .phone-img.pair-2 { width: clamp(180px,21vw,236px); }
.feat-media .pair { display: flex; align-items: flex-end; justify-content: center; }
.feat-media .pair .a { transform: rotate(-5deg); margin-right: -28px; z-index: 1; }
.feat-media .pair .b { transform: rotate(5deg); margin-bottom: 22px; z-index: 2; }

/* accent roles — colors flow from theme variables */
.accent-primary   { background: var(--bg); }
.accent-primary   .dot { background: color-mix(in srgb, var(--accent) 16%, transparent);  color: var(--accent); }
.accent-primary   .feat-media::before { background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%); }
.accent-sage      { background: var(--bg-alt); }
.accent-sage      .dot { background: var(--accent-wash); color: var(--accent-deep); }
.accent-sage      .eyebrow { color: var(--accent-deep); }
.accent-sage      .feat-media::before { background: radial-gradient(closest-side, var(--accent-wash), transparent 70%); }
.accent-secondary { background: var(--bg-tint); }
.accent-secondary .dot { background: var(--accent2-wash); color: var(--accent2-deep); }
.accent-secondary .eyebrow { color: var(--accent2-deep); }
.accent-secondary .feat-media::before { background: radial-gradient(closest-side, var(--accent2-wash), transparent 70%); }
.accent-mustard   { background: var(--bg); }
.accent-mustard   .dot { background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }
.accent-mustard   .eyebrow { color: var(--accent); }
.accent-mustard   .feat-media::before { background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%); }

@media (max-width: 820px) {
  .feature .wrap { grid-template-columns: 1fr; gap: 40px; }
  .feature.flip .feat-copy { order: 1; }
  .feature.flip .feat-media { order: 2; }
  .feat-media { min-height: 0; }
  .feat-copy { text-align: center; }
  .feat-bullets li { text-align: left; }
  .feat-copy .eyebrow { margin-left: auto; margin-right: auto; }
}

/* ============================================================  CATEGORY ROW  */
.cats { background: var(--bg); }
.cat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px,4vw,56px); margin-top: 56px; }
.cat { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 132px; text-align: center; }
.cat .circle { width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--warm-bg); border: 1.25px solid var(--border-soft); box-shadow: 0 6px 16px rgba(56,50,47,0.06); transition: transform .25s var(--ease-emph), box-shadow .25s; }
.cat:hover .circle { transform: translateY(-5px); box-shadow: 0 14px 26px rgba(56,50,47,0.12); }
.cat .circle svg { width: 32px; height: 32px; }
.cat .name { font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; }
.cat .sub { font-size: 12.5px; color: var(--text-faint); }
.cat:nth-child(1) .circle { color: var(--accent); }
.cat:nth-child(2) .circle { color: var(--accent-deep); }
.cat:nth-child(3) .circle { color: var(--accent); }
.cat:nth-child(4) .circle { color: var(--accent-deep); }
.cat:nth-child(5) .circle { color: var(--accent); }

/* ============================================================  KINETIC WORDS  */
.kinetic { background: var(--bg-alt); text-align: left; }
.kinetic .wrap { max-width: 1000px; }
.kinetic-poem { font-weight: 300; font-size: clamp(28px, 4.7vw, 56px); line-height: 1.28; letter-spacing: -0.03em; }
.kinetic-poem .w { opacity: 0; transform: translateY(18px); display: inline-block; transition: opacity .6s var(--ease-dec), transform .6s var(--ease-dec); }
.kinetic-poem .w.show { opacity: 1; transform: translateY(0); }
.kinetic-poem .ghost { color: var(--text-faint); }
.kinetic-poem .ghost.show { opacity: 0.45; }
.kinetic-poem .strong { color: var(--text-main); }
.kinetic-poem .accent { font-weight: 700; color: var(--accent); }

/* ============================================================  TESTIMONIALS  */
.testi { background: var(--bg); overflow: hidden; }
.testi .center-head { margin-bottom: 56px; }
.testi-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.testi-track { display: flex; gap: 18px; width: max-content; padding: 9px 0; }
.testi-track.left  { animation: marquee 60s linear infinite; }
.testi-track.right { animation: marquee-r 60s linear infinite; }
.testi-row:hover .testi-track { animation-play-state: paused; }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tcard { width: 332px; flex: none; border-radius: 22px; padding: 24px 24px 22px; color: var(--cream-on-dark); box-shadow: 0 10px 28px rgba(56,50,47,0.12); display: flex; flex-direction: column; gap: 12px; }
.tcard .stars { display: flex; gap: 1px; color: #ffd9a8; font-size: 14px; letter-spacing: 1px; }
.tcard .quote { font-size: 16px; line-height: 1.5; font-weight: 400; letter-spacing: -0.01em; }
.tcard .src { font-size: 12.5px; opacity: 0.76; font-weight: 500; margin-top: 2px; }
.tcard.c-navy  { background: var(--navy); }
.tcard.c-teal  { background: #5a7493; }
.tcard.c-sage  { background: #3f5777; }
.tcard.c-terra { background: var(--terracotta); }
.tcard.c-rose  { background: #a96d6c; }
.tcard.c-rust  { background: var(--rust); }

/* ============================================================  FAQ  */
.faq { background: var(--bg); }
.faq.tinted { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 40%, var(--bg-tint) 100%); }
.faq-grid { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(56,50,47,0.12); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-family: inherit; font-size: clamp(18px,2.2vw,23px); font-weight: 500; color: var(--text-main); letter-spacing: -0.02em; }
.faq-q .pm { width: 26px; height: 26px; flex: none; position: relative; color: var(--accent-deep); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 16px; height: 2px; }
.faq-q .pm::after  { width: 2px; height: 16px; transition: transform .3s var(--ease-emph); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .42s var(--ease-emph); }
.faq-a-inner { padding: 0 4px 26px; font-size: 16.5px; line-height: 1.62; color: var(--text-muted); max-width: 660px; }
.faq-cta { text-align: center; margin-top: 48px; }

/* ============================================================  FINAL CTA  */
.final {
  background: radial-gradient(120% 90% at 50% 112%, var(--cta-soft) 0%, rgba(0,0,0,0) 56%), linear-gradient(180deg, var(--cta-bg-1) 0%, var(--cta-bg-2) 100%);
  color: var(--cta-text); text-align: center; overflow: hidden; padding: clamp(110px, 16vh, 180px) 0;
}
.final .star { position: absolute; color: rgba(255,255,255,0.15); pointer-events: none; }
.final h2 { font-weight: 300; font-size: clamp(40px, 6.6vw, 80px); line-height: 1.0; letter-spacing: -0.035em; margin: 0; position: relative; z-index: 2; color: #fff; }
.final h2 .em { color: #fff; }
.final .stat-big { position: relative; z-index: 2; margin: 26px auto 0; font-size: clamp(16px,1.7vw,20px); color: rgba(255,255,255,0.88); font-weight: 400; max-width: 560px; line-height: 1.55; }
.final .hero-cta { margin-top: 38px; position: relative; z-index: 2; }
.final .hero-note { color: rgba(255,255,255,0.72); }
.final .hero-note b { color: #fff; }

/* ============================================================  FOOTER  */
.f-cta-strip { background: var(--accent-deep); color: var(--cream-on-dark); padding: clamp(54px,8vh,80px) 0; text-align: center; }
.f-cta-strip .h-sub { color: #fff; }
.f-cta-strip p { margin: 12px auto 24px; max-width: 520px; color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.5; }
footer .f-links { background: var(--navy); color: rgba(255,255,255,0.9); padding: 60px 0 38px; }
.f-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.f-brand .logo { height: 30px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.f-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 250px; margin: 0 0 18px; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.82); transition: background .2s, color .2s; }
.f-social a:hover { background: rgba(255,255,255,0.2); color: #fff; }
.f-social svg { width: 17px; height: 17px; }
.f-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin: 0 0 16px; font-weight: 600; }
.f-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,0.82); margin-bottom: 11px; transition: color .2s; }
.f-col a:hover { color: #fff; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.f-bottom a { color: rgba(255,255,255,0.6); }
.f-bottom a:hover { color: #fff; }
@media (max-width: 720px) { .f-cols { grid-template-columns: 1fr 1fr; } .f-brand { grid-column: 1 / -1; } }

/* ============================================================  GENERIC PAGE HEADER (sub-pages)  */
.page-head { padding: clamp(132px,18vh,180px) 0 clamp(40px,7vh,72px); text-align: center; background: radial-gradient(120% 80% at 50% -20%, var(--bg-alt) 0%, rgba(0,0,0,0) 60%), var(--bg); position: relative; overflow: hidden; }
.page-head .eyebrow { display: block; margin-bottom: 16px; }
.page-head .lead { margin: 22px auto 0; max-width: 600px; }
.page-head .hero-cta { margin-top: 30px; }

/* prose (article / legal / about body) */
.prose { max-width: 720px; margin: 0 auto; }
.prose > * + * { margin-top: 22px; }
.prose p { font-size: 18px; line-height: 1.7; color: var(--text-main); margin: 0; }
.prose h2 { font-size: clamp(26px,3vw,34px); font-weight: 600; letter-spacing: -0.025em; margin: 46px 0 0; line-height: 1.15; }
.prose h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 32px 0 0; }
.prose ul { margin: 4px 0 0; padding-left: 22px; }
.prose li { font-size: 18px; line-height: 1.7; color: var(--text-main); margin-top: 8px; }
.prose .lead { font-size: 21px; color: var(--text-muted); }
.prose blockquote { margin: 28px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--accent-line); font-size: 22px; font-weight: 300; line-height: 1.4; letter-spacing: -0.02em; color: var(--text-main); }

/* cards grid (features / blog / help) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--warm-bg); border: 1.25px solid var(--border-soft); border-radius: 22px;
  padding: 30px 28px; box-shadow: 0 6px 18px rgba(56,50,47,0.05);
  transition: transform .25s var(--ease-emph), box-shadow .25s; display: flex; flex-direction: column;
}
.card.link:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(56,50,47,0.12); }
.card .c-ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--accent-wash); color: var(--accent-deep); margin-bottom: 20px; }
.card .c-ico svg { width: 25px; height: 25px; }
.card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 10px; }
.card p { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.card .meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.card .more { margin-top: auto; padding-top: 18px; }

/* blog featured */
.blog-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; background: var(--bg-alt); border-radius: 26px; padding: 40px; }
.blog-feature .thumb { aspect-ratio: 4/3; border-radius: 18px; background: linear-gradient(135deg, var(--accent-deep), var(--accent)); }
@media (max-width: 760px) { .blog-feature { grid-template-columns: 1fr; padding: 28px; } }

/* ============================================================  SCROLL REVEAL  */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .75s var(--ease-dec), transform .75s var(--ease-dec); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-glow, .scroll-cue .arrow, .ticker-track, .testi-track { animation: none; }
}

/* ============================================================  TWEAKS PANEL (vanilla)  */
.twk { position: fixed; right: 16px; bottom: 16px; z-index: 2147483646; width: 248px; display: none;
  background: rgba(250,249,247,0.82); color: #2c2723; backdrop-filter: blur(22px) saturate(1.6); -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 0.5px solid rgba(255,255,255,0.6); border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 40px rgba(0,0,0,0.18);
  font: 12px/1.4 "Outfit", system-ui, sans-serif; overflow: hidden; }
.twk.open { display: block; }
.twk-hd { display: flex; align-items: center; justify-content: space-between; padding: 11px 10px 11px 15px; }
.twk-hd b { font-size: 12.5px; font-weight: 600; }
.twk-x { border: 0; background: transparent; color: rgba(44,39,35,0.55); width: 22px; height: 22px; border-radius: 6px; cursor: pointer; font-size: 13px; }
.twk-x:hover { background: rgba(0,0,0,0.06); color: #2c2723; }
.twk-body { padding: 2px 15px 15px; display: flex; flex-direction: column; gap: 12px; }
.twk-sect { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(44,39,35,0.45); }
.twk-swatches { display: flex; flex-direction: column; gap: 4px; }
.twk-sw { display: flex; align-items: center; gap: 11px; border: 0; background: transparent; color: inherit; font: inherit; padding: 7px 8px; border-radius: 8px; cursor: pointer; text-align: left; transition: background .15s; }
.twk-sw:hover { background: rgba(0,0,0,0.05); }
.twk-sw span { width: 18px; height: 18px; border-radius: 50%; background: var(--sw); box-shadow: 0 0 0 .5px rgba(0,0,0,0.18); flex: none; transition: box-shadow .15s; }
.twk-sw[aria-checked="true"] { background: rgba(0,0,0,0.06); font-weight: 600; }
.twk-sw[aria-checked="true"] span { box-shadow: 0 0 0 2px #faf9f7, 0 0 0 4px var(--sw); }
.twk-note { font-size: 11px; color: rgba(44,39,35,0.55); line-height: 1.45; margin-top: 2px; }
