/* ============================================================
   raiseit.dev — landing page
   Sandstone-style: cinematic hero · serif display · warm
   cream ⇄ warm-black alternating palette · terracotta accent
   ============================================================ */

:root {
  /* warm neutral palette */
  --cream:     #f0ece3;
  --cream-2:   #e9e3d6;   /* panels / tint on cream */
  --cream-3:   #e0d8c8;
  --sand-line: #d8cfbe;   /* borders on cream */

  --ink:       #1b1611;   /* text on cream */
  --ink-2:     #4a4238;
  --ink-3:     #766c5d;   /* muted on cream */
  --ink-4:     #a99f8c;

  --night:     #16130f;   /* dark sections */
  --night-2:   #1f1a14;   /* cards on dark */
  --night-3:   #272117;
  --night-line:#332b20;
  --on-night:  #f1ebe0;   /* text on dark */
  --on-night-2:#cbc3b5;   /* muted on dark — brightened for readability */

  --clay:      #b4623c;   /* terracotta accent */
  --clay-2:    #9c5230;
  --clay-soft: #c98a52;

  --radius:    14px;
  --radius-lg: 20px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
::selection { background: var(--clay); color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 32px; }

.reveal, [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.is-in { opacity: 1 !important; transform: none !important; }

/* serif display defaults */
h1, h2, .serif-h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; line-height: 1.08; }

/* ============================================================
   Buttons + links
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500; font-size: 15px; line-height: 1;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .1s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--clay { background: var(--clay); color: #fdf6ee; }
.btn--clay:hover { background: var(--clay-2); }
.btn--line { background: transparent; color: var(--on-night); border-color: rgba(236,229,216,.28); }
.btn--line:hover { border-color: rgba(236,229,216,.6); background: rgba(236,229,216,.06); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  color: var(--clay-soft); transition: gap .2s var(--ease), color .2s;
}
.feat--cream .link-arrow, .section--cream .link-arrow { color: var(--clay); }
.link-arrow:hover { gap: 13px; }

/* ============================================================
   Wordmark
   ============================================================ */
.wordmark {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -.01em;
  color: var(--on-night);
}
.wordmark__ico { width: 22px; height: 22px; margin-right: 9px; flex-shrink: 0; color: var(--clay-soft); }
.nav.is-scrolled .wordmark__ico { color: var(--clay); }
.wordmark--light .wordmark__ico { color: var(--clay-soft); }
.wordmark__tld { color: var(--clay-soft); }
.nav.is-scrolled .wordmark { color: var(--ink); }
.nav.is-scrolled .wordmark__tld { color: var(--clay); }
.wordmark--light { color: var(--on-night); }
.wordmark--light .wordmark__tld { color: var(--clay-soft); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(240,236,227,.82); backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--sand-line); }
.nav__inner { max-width: 1320px; margin-inline: auto; padding: 22px 32px; display: flex; align-items: center; gap: 24px; }
.nav__menu { display: flex; align-items: center; gap: 28px; margin-left: auto; }
/* section links — muted */
.nav__link { font-size: 14px; font-weight: 500; color: rgba(236,229,216,.72); transition: color .2s; }
.nav__link:hover { color: var(--on-night); }
.nav.is-scrolled .nav__link { color: var(--ink-3); }
.nav.is-scrolled .nav__link:hover { color: var(--ink); }
/* account/conversion cluster — brighter, separated by a divider */
.nav__signup { font-size: 14px; font-weight: 500; color: var(--on-night); transition: color .2s; padding-left: 24px; border-left: 1px solid rgba(236,229,216,.16); }
.nav__signup:hover { color: var(--clay-soft); }
.nav.is-scrolled .nav__signup { color: var(--ink); border-left-color: var(--sand-line); }
.nav.is-scrolled .nav__signup:hover { color: var(--clay); }
.nav__cta { font-size: 14px; font-weight: 500; color: var(--on-night); display: inline-flex; gap: 7px; align-items: center; }
.nav__cta span { color: var(--clay-soft); transition: transform .2s var(--ease); }
.nav__cta:hover span { transform: translateX(4px); }
.nav.is-scrolled .nav__cta { color: var(--ink); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 1.5px; background: var(--on-night); transition: .2s; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

/* ============================================================
   Hero (cinematic)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__veil { position: absolute; inset: 0; background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(0,0,0,.28), transparent 70%),
    linear-gradient(180deg, rgba(20,17,13,.42) 0%, transparent 34%, transparent 62%, rgba(20,17,13,.30) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 900px; padding: 0 28px; }
.hero__title {
  color: #f6efe4; font-size: clamp(2.1rem, 4.6vw, 3.9rem); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.12; text-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.hero__sub {
  margin: 26px auto 0; max-width: 40em; color: rgba(246,239,228,.82);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem); font-weight: 400; line-height: 1.62;
  text-shadow: 0 1px 20px rgba(0,0,0,.3);
}
.hero__cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1.5px solid rgba(246,239,228,.5); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: rgba(246,239,228,.8); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   Statement (cream, scroll word highlight)
   ============================================================ */
.statement { background: var(--cream); padding: clamp(110px, 16vw, 200px) 0; }
.statement__big {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.15rem); line-height: 1.28; letter-spacing: -.01em;
  max-width: 17em; margin: 0 auto; text-align: center;
}
.statement__big .w { color: var(--ink-4); transition: color .35s var(--ease); }
.statement__big .w.on { color: var(--ink); }
.statement__intro { text-align: center; margin-top: 40px; font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--clay); }

/* ============================================================
   Feature rows
   ============================================================ */
.feat { padding: clamp(80px, 11vw, 148px) 0; }
.feat--dark { background: var(--night); color: var(--on-night); }
.feat--cream { background: var(--cream); color: var(--ink); }
.feat--cream + .feat--cream { border-top: 1px solid var(--sand-line); }
.feat__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
/* reversed rows put the panel in col 1 — widen it so the mockup gets equal room */
.feat__grid--rev { grid-template-columns: 1.1fr 0.9fr; }
.feat__grid--rev .feat__text { order: 2; }
.feat__idx { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--clay-soft); }
.feat--cream .feat__idx { color: var(--clay); }
.feat__text h2 { margin: 18px 0 20px; font-size: clamp(1.9rem, 3.6vw, 3rem); }
.feat__text p { font-size: clamp(1rem, 1.3vw, 1.14rem); color: var(--on-night-2); max-width: 30em; }
.feat--cream .feat__text p { color: var(--ink-2); }

/* product panel */
.feat__panel { display: grid; place-items: center; }
.feat--dark .feat__panel > * , .feat--cream .feat__panel > * { width: 100%; }
.feat__panel .capture, .feat__panel .board, .feat__panel .voice, .feat__panel .flow {
  border-radius: var(--radius-lg); box-shadow: 0 40px 90px -50px rgba(0,0,0,.6);
}

/* --- capture mock (light) --- */
.capture { background: #fbf8f1; border: 1px solid var(--sand-line); overflow: hidden; }
.capture__bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--sand-line); background: var(--cream-2); }
.capture__dots { display: flex; gap: 6px; }
.capture__dots i { width: 10px; height: 10px; border-radius: 50%; background: #c9beaa; }
.capture__url { font-family: var(--mono); font-size: 12px; color: var(--ink-3); background: #fff; border: 1px solid var(--sand-line); padding: 6px 12px; border-radius: 7px; flex: 1; }
.capture__badge { font-size: 11px; font-weight: 600; color: var(--clay); letter-spacing: .04em; }
.capture__body { padding: 22px; }
.capture__shot { position: relative; background: #fff; border: 1px solid var(--sand-line); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 12px; min-height: 172px; }
.sk { height: 15px; border-radius: 7px; background: linear-gradient(90deg, #efe9dd, #e2d9c8, #efe9dd); background-size: 200% 100%; animation: shimmer 1.9s linear infinite; }
.sk--lg { height: 28px; width: 60%; } .sk--sm { width: 42%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.capture__cursor { position: absolute; right: 34px; bottom: 28px; width: 16px; height: 16px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 7px rgba(180,98,60,.18); animation: cursor 2.8s var(--ease) infinite; }
@keyframes cursor { 0%,100% { transform: translate(0,0); } 42% { transform: translate(-74px,-42px); } 72% { transform: translate(-42px,-8px); } }
.capture__signals { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.chip { font-family: var(--mono); font-size: 11px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--sand-line); color: var(--ink-3); background: #fff; }
.chip--net { color: #a2472b; border-color: #e6c8b8; }
.chip--con { color: #977420; border-color: #e6d6ac; }
.chip--dom { color: var(--clay); border-color: #e2c6b4; }

/* --- board mock (light) --- */
.board { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; background: #fbf8f1; border: 1px solid var(--sand-line); padding: 20px; }
.board__col { display: flex; flex-direction: column; gap: 10px; }
.board__h { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-4); }
.board__card { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12.5px; line-height: 1.3; background: #fff; border: 1px solid var(--sand-line); border-radius: 9px; padding: 10px 11px; color: var(--ink-2); }
.board__card em { font-style: normal; font-weight: 700; font-size: 9px; letter-spacing: .03em; color: var(--ink-4); flex-shrink: 0; }
.board__card--hi { border-color: #e6c8b8; background: #fbeee6; color: var(--ink); }
.board__card--hi em { color: var(--clay); }
.board__card--ok { border-color: #d8c9b0; background: var(--cream-2); color: var(--clay-2); font-weight: 500; }

/* --- voice mock (light) --- */
.voice { background: #fbf8f1; border: 1px solid var(--sand-line); padding: 34px 30px; text-align: center; }
.voice__wave { display: flex; align-items: center; justify-content: center; gap: 5px; height: 46px; margin-bottom: 20px; }
.voice__wave i { width: 5px; border-radius: 3px; background: var(--clay); animation: wave 1.1s ease-in-out infinite; }
.voice__wave i:nth-child(1){height:16px;animation-delay:0s}.voice__wave i:nth-child(2){height:30px;animation-delay:.1s}.voice__wave i:nth-child(3){height:44px;animation-delay:.2s}.voice__wave i:nth-child(4){height:24px;animation-delay:.3s}.voice__wave i:nth-child(5){height:38px;animation-delay:.4s}.voice__wave i:nth-child(6){height:20px;animation-delay:.5s}.voice__wave i:nth-child(7){height:34px;animation-delay:.6s}.voice__wave i:nth-child(8){height:28px;animation-delay:.7s}.voice__wave i:nth-child(9){height:16px;animation-delay:.8s}
@keyframes wave { 0%,100% { transform: scaleY(.4); opacity:.55 } 50% { transform: scaleY(1); opacity:1 } }
.voice__line { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--ink); }
.voice__line strong { color: var(--clay); font-weight: 500; }
.voice__status { display: inline-block; margin-top: 18px; font-size: 12px; font-family: var(--mono); color: var(--clay-2); }

/* --- flow mock (light) --- */
.flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 11px; background: #fbf8f1; border: 1px solid var(--sand-line); padding: 40px 26px; }
.node { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; padding: 11px 15px; border-radius: 10px; border: 1px solid var(--sand-line); background: #fff; color: var(--ink); }
.node svg { width: 15px; height: 15px; flex-shrink: 0; }
.node--a { background: var(--clay); color: #fdf6ee; border-color: var(--clay); }
.node--b { background: var(--cream-2); border-color: #d8c9b0; color: var(--clay-2); }
.wire { width: 26px; height: 1.5px; background: #cbbfa8; position: relative; }
.wire::after { content:""; position:absolute; right:0; top:-3px; border-left:6px solid #cbbfa8; border-block:4px solid transparent; }

/* ============================================================
   Generic sections
   ============================================================ */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--dark { background: var(--night); color: var(--on-night); }
.section--hairline { border-top: 1px solid var(--sand-line); }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.kicker { display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
.kicker--light { color: var(--clay-soft); }
.serif-h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); color: var(--ink); }
.serif-h2--light { color: var(--on-night); }
.lede { margin-top: 20px; font-size: 1.14rem; color: var(--ink-2); max-width: 40em; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.stat { border-top: 1px solid var(--sand-line); padding-top: 26px; }
.stat__num { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: var(--ink); display: inline-flex; align-items: baseline; letter-spacing: -.02em; }
.stat__num span { font-size: .42em; color: var(--clay); margin-left: 3px; }
.stat p { margin-top: 16px; font-size: 1.02rem; color: var(--ink-2); max-width: 20em; }
.stat__src { display: block; margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--ink-4); }

/* integrations */
.logos { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 14px; max-width: 860px; margin: 0 auto; }
.logos li { font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.7rem); color: var(--on-night-2); padding: 12px 22px; border: 1px solid var(--night-line); border-radius: 999px; transition: color .2s, border-color .2s; }
.logos li:hover { color: var(--on-night); border-color: rgba(236,229,216,.35); }

/* compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--sand-line); border-radius: var(--radius-lg); background: #fbf8f1; }
.compare { width: 100%; border-collapse: collapse; min-width: 740px; }
.compare th, .compare td { padding: 18px 20px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--sand-line); }
.compare thead th { font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-3); }
.compare tbody th { text-align: left; font-weight: 600; color: var(--ink); }
.compare td { color: var(--ink-4); }
.compare td.y { color: var(--clay); font-size: 15px; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare__us { background: var(--cream-2); }
.compare__us th { color: var(--clay-2); }

/* traction */
.traction { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.traction__nums { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tnum { border-top: 1px solid var(--sand-line); padding-top: 22px; }
.tnum__n { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--clay); letter-spacing: -.02em; }
.tnum p { margin-top: 12px; font-size: .92rem; color: var(--ink-2); }
.shipped { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.shipped li { position: relative; padding-left: 30px; font-size: 1rem; color: var(--ink-2); }
.shipped li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }

/* ============================================================
   CTA (cinematic)
   ============================================================ */
.cta { position: relative; overflow: hidden; color: #f6efe4; padding: clamp(110px, 15vw, 190px) 0; text-align: center; }
.cta__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; padding: 0 28px; }
.cta h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 300; letter-spacing: -.02em; }
.cta p { margin: 22px auto 38px; max-width: 34em; color: rgba(246,239,228,.82); font-size: 1.14rem; }
.cta__actions { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.cta__mail { font-family: var(--mono); font-size: 14px; color: var(--clay-soft); }
.cta__mail:hover { color: #f6efe4; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--night); color: var(--on-night-2); padding: 54px 0; border-top: 1px solid var(--night-line); }
.footer__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer__tag { flex: 1; min-width: 250px; font-size: 14px; max-width: 32em; }
.footer__meta { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.footer__meta a:hover { color: var(--on-night); }

/* ============================================================
   Hero ⌘K cue
   ============================================================ */
.hero__kbd { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(246,239,228,.6); }
.hero__kbd kbd { font-family: var(--mono); font-size: 11px; color: rgba(246,239,228,.9); background: rgba(246,239,228,.08); border: 1px solid rgba(246,239,228,.2); border-radius: 6px; padding: 3px 7px; }

/* ============================================================
   Living demo
   ============================================================ */
.demo { position: relative; overflow: hidden; background: var(--night); color: var(--on-night); padding: clamp(88px, 12vw, 150px) 0 clamp(48px, 5vw, 72px); }
/* demo is dark and the first feature is dark — tighten the seam so it doesn't read as a void */
#features .feat:first-child { padding-top: clamp(44px, 5vw, 68px); }
.demo__grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .22; }
.demo__head { position: relative; text-align: center; max-width: 740px; margin: 0 auto 52px; }
.demo__head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.demo__sub { margin-top: 20px; color: var(--on-night-2); font-size: 1.08rem; max-width: 40em; margin-inline: auto; }

.demo__stage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.demo__steps { grid-column: 1 / -1; order: -1; list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.demo__steps li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--on-night-2); padding: 9px 17px; border: 1px solid var(--night-line); border-radius: 999px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.demo__steps li span { width: 19px; height: 19px; border-radius: 50%; background: var(--night-3); color: var(--on-night-2); display: grid; place-items: center; font-size: 11px; font-family: var(--mono); transition: .3s var(--ease); }
.demo__steps li.on { color: var(--on-night); border-color: rgba(180,98,60,.42); }
.demo__steps li.on span { background: var(--clay); color: #fdf6ee; }

/* app panel */
.demo__app { position: relative; background: #100e0a; border: 1px solid var(--night-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px -50px rgba(0,0,0,.7); }
.demo__bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--night-line); background: #16130c; }
.demo__dots i { width: 10px; height: 10px; border-radius: 50%; background: #3a3226; display: inline-block; margin-right: 6px; }
.demo__url { font-family: var(--mono); font-size: 12px; color: var(--on-night-2); background: #0c0a07; border: 1px solid var(--night-line); border-radius: 7px; padding: 6px 12px; flex: 1; }
.demo__rec { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: #6e6047; opacity: .5; transition: .3s; }
.demo__rec.on { color: var(--clay-soft); opacity: 1; animation: recblink 1s steps(2, jump-none) infinite; }
@keyframes recblink { 50% { opacity: .35; } }
.demo__screen { position: relative; padding: 22px; min-height: 188px; display: flex; flex-direction: column; gap: 12px; }
.demo__sk { height: 15px; border-radius: 7px; background: linear-gradient(90deg, #1c1810, #2a2317, #1c1810); background-size: 200% 100%; animation: shimmer 2.1s linear infinite; }
.demo__sk--lg { height: 26px; width: 58%; } .demo__sk--sm { width: 42%; }
.demo__cursor { position: absolute; right: 44px; bottom: 74px; width: 16px; height: 16px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 7px rgba(180,98,60,.18); opacity: 0; transition: opacity .3s; }
.demo__app.capturing .demo__cursor { opacity: 1; animation: democursor 2.2s var(--ease); }
@keyframes democursor { 0% { transform: translate(56px, 22px); } 60% { transform: translate(-44px, -30px); } 100% { transform: translate(0,0); } }
.demo__cmd { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%) scale(.94); display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: rgba(18,15,10,.94); border: 1px solid var(--night-line); border-radius: 12px; box-shadow: 0 24px 50px -20px #000; opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.demo__cmd kbd { font-family: var(--mono); font-size: 11px; color: var(--on-night); background: rgba(236,229,216,.1); border: 1px solid rgba(236,229,216,.18); border-radius: 6px; padding: 3px 7px; }
.demo__cmd span { font-size: 13px; color: var(--on-night-2); }
.demo__app.cmd .demo__cmd { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.demo__signals { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 16px; }
.dsig { font-family: var(--mono); font-size: 11px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--night-line); color: var(--on-night-2); opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.dsig.in { opacity: 1; transform: none; }
.dsig--warn.in { color: #d8a04e; border-color: #4a3f22; }
.dsig--err.in { color: #d98a6a; border-color: #4a2d28; }

/* agent panel */
.demo__agent { display: flex; flex-direction: column; background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: 0 40px 90px -50px rgba(0,0,0,.7); }
.demo__agenthead { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--night-line); margin-bottom: 18px; }
.demo__spark { color: var(--clay-soft); font-size: 15px; display: inline-block; }
.demo__agent.working .demo__spark { animation: spin 1.5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.demo__agentname { font-weight: 600; color: var(--on-night); font-size: 14px; }
.demo__agentstatus { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--on-night-2); }
.demo__fields { display: flex; flex-direction: column; gap: 14px; }
.dfield { display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: baseline; }
.dfield dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--on-night-2); }
.dfield dd { font-size: 14px; line-height: 1.4; color: var(--on-night); min-height: 1.3em; }
.dfield dd.typing::after { content: "▍"; color: var(--clay-soft); margin-left: 1px; animation: caret 1s steps(2, jump-none) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.dsev { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .05em; color: var(--clay-soft); background: rgba(180,98,60,.16); border: 1px solid rgba(180,98,60,.32); padding: 4px 8px; border-radius: 6px; opacity: 0; transform: scale(.8); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.dsev.in { opacity: 1; transform: none; }
.demo__route { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--night-line); opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.demo__route.in { opacity: 1; transform: none; }
.droute__done { font-size: 13px; font-weight: 600; color: #9caf6a; }
.droute__chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: var(--on-night-2); border: 1px solid var(--night-line); border-radius: 999px; padding: 5px 10px; }
.droute__chip svg { width: 12px; height: 12px; flex-shrink: 0; opacity: .85; }

/* ============================================================
   Logo marquee
   ============================================================ */
.marquee { position: relative; overflow: hidden; margin-top: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo { display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; border: 1px solid var(--night-line); border-radius: 14px; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--on-night-2); white-space: nowrap; transition: color .2s, border-color .2s; }
.logo svg { width: 25px; height: 25px; flex-shrink: 0; }
.logo:hover { color: var(--on-night); border-color: rgba(236,229,216,.3); }

/* ============================================================
   Trust & security
   ============================================================ */
.lede--light { color: var(--on-night-2); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__item { background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--radius-lg); padding: 28px; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.trust__item:hover { border-color: rgba(236,229,216,.24); transform: translateY(-3px); }
.trust__ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(180,98,60,.14); color: var(--clay-soft); margin-bottom: 20px; }
.trust__ic svg { width: 22px; height: 22px; }
.trust__item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 10px; color: var(--on-night); }
.trust__item p { font-size: .95rem; color: var(--on-night-2); }

/* ============================================================
   Book-a-demo modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(16,13,10,.66); backdrop-filter: blur(3px); animation: fade .25s var(--ease); }
.modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--cream); color: var(--ink); border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: 34px 34px 30px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.6);
  animation: pop .32s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 16px; right: 18px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--ink-3); cursor: pointer; padding: 4px; border-radius: 6px; transition: color .15s; }
.modal__close:hover { color: var(--ink); }
.modal__title { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1.15; margin: 12px 0 8px; letter-spacing: -.02em; }
.modal__lede { color: var(--ink-2); font-size: .98rem; margin-bottom: 22px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field .opt { color: var(--ink-4); font-weight: 400; }
.field input, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--sand-line); border-radius: var(--radius); padding: 11px 13px; width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 76px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(180,98,60,.14); }
.field input:user-invalid { border-color: #b4472f; }
.modal__hp { position: absolute; left: -9999px; opacity: 0; width: 1px; height: 1px; }
.modal__submit { width: 100%; margin-top: 6px; }
.modal__submit[disabled] { opacity: .65; cursor: default; }
.modal__err { margin-top: 12px; font-size: 13px; color: #b4472f; text-align: center; }

.modal__done { text-align: center; padding: 18px 4px 6px; }
.modal__check { width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%; background: var(--brand-surface, #e7f2ec); color: #2f7a52; display: grid; place-items: center; font-size: 26px; }
.modal__done h2 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 8px; }
.modal__done p { color: var(--ink-2); margin-bottom: 22px; }
.btn--line-dark { background: transparent; color: var(--ink-2); border-color: var(--border-2); }
.btn--line-dark:hover { border-color: var(--ink-3); background: var(--cream-2); }
@media (prefers-reduced-motion: reduce) { .modal__backdrop, .modal__card { animation: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .trust { grid-template-columns: 1fr 1fr; }
  /* stack feature rows + demo so panels get full width instead of a cramped half-column */
  .feat__grid, .feat__grid--rev { grid-template-columns: 1fr; gap: 44px; }
  .feat__grid--rev .feat__text { order: 0; }
  .feat__panel { max-width: 560px; }
  .demo__stage { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); border-bottom: 1px solid var(--sand-line); padding: 8px 32px 18px; }
  .nav__menu.is-open a { padding: 14px 0; font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--sand-line); }
  .nav__menu.is-open .nav__signup { border-left: 0; padding-left: 0; color: var(--clay); font-weight: 600; }
  .nav__menu.is-open .nav__cta { color: var(--clay); font-weight: 600; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
  .traction { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 22px; }
  .traction__nums { grid-template-columns: 1fr 1fr; }
  .cta__actions { flex-direction: column; gap: 16px; }
  .board { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .logo { font-size: 1.15rem; padding: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
