/* ============================================================
   AI Lease Management (GroSpace) — "Every lease, read and working"
   Blueprint: light editorial real-estate intelligence
   Sora / Inter · deep emerald + antique gold on cream
   ============================================================ */

:root {
  --cream: #F8F6F0;
  --cream-deep: #F2EFE6;
  --surface: #FFFFFF;
  --ink: #12211B;
  --ink-2: #5F6B63;
  --hair: #E6E2D6;
  --hair-2: #EDEAE0;
  --emerald: #047857;
  --emerald-deep: #065F46;
  --emerald-tint: #E7F2ED;
  --gold: #B08D57;
  --gold-tint: #F3ECDE;
  --mint: #C7E7D4;
  --mint-soft: #E4F3EA;
  --shadow-sm: 0 1px 2px rgba(18,33,27,.05), 0 2px 6px rgba(18,33,27,.04);
  --shadow-md: 0 12px 30px -12px rgba(18,33,27,.18), 0 4px 10px -6px rgba(18,33,27,.10);
  --shadow-lg: 0 40px 80px -30px rgba(18,33,27,.30), 0 12px 28px -14px rgba(18,33,27,.16);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --serif: 'Sora', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { 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);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "cv05" 1, "ss01" 1;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

.num { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

::selection { background: var(--mint); color: var(--emerald-deep); }

:focus-visible {
  outline: 2.5px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: ""; width: 22px; height: 1.5px; background: var(--gold);
  display: inline-block;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--emerald); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,240,.78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--hair);
  background: rgba(248,246,240,.9);
}
.nav {
  display: flex; align-items: center; gap: 20px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(150deg, var(--emerald), var(--emerald-deep));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 12px -4px rgba(4,120,87,.55);
  flex: none;
}
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.brand-sub { font-size: 11px; color: var(--ink-2); letter-spacing: .04em; margin-top: -2px; }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .2s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--ink); }

.built-by {
  display: none; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  padding: 7px 12px; border: 1px solid var(--hair); border-radius: 999px;
  background: var(--surface); transition: all .2s var(--ease);
}
.built-by:hover { border-color: var(--gold); color: var(--ink); }
.built-by .arw { color: var(--gold); }

.btn {
  --btn-fg: #fff; --btn-bg: var(--emerald);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 6px 18px -8px rgba(4,120,87,.6);
  white-space: nowrap;
}
.btn:hover { background: var(--emerald-deep); transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(4,120,87,.7); }
.btn:active { transform: translateY(0); }
.btn.ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--hair); box-shadow: none;
}
.btn.ghost:hover { background: var(--surface); border-color: var(--ink-2); transform: translateY(-1px); }
.btn.sm { padding: 9px 16px; font-size: 14px; }
.btn.lg { padding: 15px 26px; font-size: 16px; }
.btn .ico { width: 17px; height: 17px; }

.nav .btn { display: none; }

/* mobile menu toggle */
.menu-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--hair); background: var(--surface);
  cursor: pointer; color: var(--ink);
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--hair);
  background: var(--cream);
  padding: 12px 24px 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 4px; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--hair-2); color: var(--ink);
}
.mobile-menu .btn { display: flex; margin-top: 16px; width: 100%; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .built-by { display: inline-flex; }
  .nav .btn { display: inline-flex; }
  .menu-btn { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 62px 0 40px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 12%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 90% at 70% 12%, #000 0%, transparent 62%);
  opacity: .5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-top { max-width: 660px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.35rem);
  margin: 22px 0 0;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  color: var(--emerald);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  margin: 22px 0 0; font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: var(--ink-2); max-width: 560px; line-height: 1.55;
}
.hero-cta {
  margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.hero-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--ink-2); margin-left: 2px;
}
.hero-note svg { color: var(--emerald); flex: none; }

/* ---- Signature extraction visual ---- */
.extract {
  position: relative; z-index: 1;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .extract { grid-template-columns: 1.05fr 0.95fr; gap: 26px; align-items: stretch; }
}

.doc-plate, .fields-plate {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.plate-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--hair-2);
  font-size: 12.5px; color: var(--ink-2); font-weight: 500;
}
.plate-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hair); }
.plate-bar .dot.g { background: var(--emerald); }
.plate-bar .badge {
  margin-left: auto; font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; background: var(--cream-deep);
  color: var(--ink-2); border: 1px solid var(--hair-2);
}

/* document with clause lines */
.doc-body { padding: 20px 22px 24px; position: relative; }
.doc-title {
  font-family: var(--serif); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 16px;
}
.doc-para { margin-bottom: 15px; }
.doc-line {
  height: 8px; border-radius: 4px; background: var(--hair-2); margin: 7px 0;
}
.doc-line.w95 { width: 95%; } .doc-line.w80 { width: 80%; }
.doc-line.w70 { width: 70%; } .doc-line.w60 { width: 60%; }
.doc-line.w45 { width: 45%; }
.clause-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  color: var(--ink-2); text-transform: uppercase; margin-bottom: 6px;
}
.doc-line.hot {
  background: linear-gradient(90deg, var(--mint-soft), var(--emerald-tint));
  position: relative;
}
.doc-line.hot::after {
  content: ""; position: absolute; inset: -3px -4px;
  border: 1.5px solid var(--emerald); border-radius: 5px; opacity: 0;
  transition: opacity .3s var(--ease);
}
.doc-line.hot.pinged::after { opacity: .55; }

/* scan sweep */
.doc-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 90px;
  background: linear-gradient(180deg, rgba(4,120,87,0) 0%, rgba(4,120,87,.10) 60%, rgba(4,120,87,.16) 100%);
  border-bottom: 1.5px solid rgba(4,120,87,.5);
  pointer-events: none; opacity: 0;
}
.extract.run .doc-scan { animation: scan 3.6s var(--ease) .3s infinite; }
@keyframes scan {
  0% { transform: translateY(-90px); opacity: 0; }
  8% { opacity: 1; }
  55% { transform: translateY(360px); opacity: 1; }
  70%, 100% { transform: translateY(360px); opacity: 0; }
}

/* fields list */
.fields-body { padding: 8px 14px 12px; }
.field-row {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 8px; border-bottom: 1px solid var(--hair-2);
  opacity: 0; transform: translateX(14px);
}
.field-row:last-child { border-bottom: 0; }
.extract.run .field-row { animation: dockIn .55s var(--ease-out) forwards; }
.extract.run .field-row:nth-child(1) { animation-delay: .5s; }
.extract.run .field-row:nth-child(2) { animation-delay: .8s; }
.extract.run .field-row:nth-child(3) { animation-delay: 1.1s; }
.extract.run .field-row:nth-child(4) { animation-delay: 1.4s; }
.extract.run .field-row:nth-child(5) { animation-delay: 1.7s; }
@keyframes dockIn {
  0% { opacity: 0; transform: translateX(16px); }
  100% { opacity: 1; transform: translateX(0); }
}

.ring { width: 38px; height: 38px; flex: none; position: relative; }
.ring svg { width: 38px; height: 38px; transform: rotate(-90deg); }
.ring .track { stroke: var(--hair-2); }
.ring .prog { stroke: var(--emerald); stroke-linecap: round;
  stroke-dasharray: 100; stroke-dashoffset: 100; }
.extract.run .ring .prog { animation: fill 1s var(--ease) forwards; }
.field-row:nth-child(1) .ring .prog { animation-delay: .7s !important; }
.field-row:nth-child(2) .ring .prog { animation-delay: 1s !important; }
.field-row:nth-child(3) .ring .prog { animation-delay: 1.3s !important; }
.field-row:nth-child(4) .ring .prog { animation-delay: 1.6s !important; }
.field-row:nth-child(5) .ring .prog { animation-delay: 1.9s !important; }
@keyframes fill { to { stroke-dashoffset: var(--off, 6); } }
.ring .pct {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: var(--emerald);
  font-variant-numeric: tabular-nums;
}
.field-meta { min-width: 0; }
.field-key {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-2);
}
.field-val {
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  color: var(--ink); letter-spacing: -.01em; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.field-tag {
  margin-left: auto; flex: none;
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--gold-tint); color: var(--gold);
}
.fields-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-top: 1px solid var(--hair-2);
  font-size: 12px; color: var(--ink-2);
}
.fields-foot .live { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.extract.run .fields-foot .live { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(4,120,87,.4); } 50% { box-shadow: 0 0 0 5px rgba(4,120,87,0); } }

/* flying chips overlay */
.flyer {
  position: absolute; z-index: 5; left: 0; top: 0;
  font-size: 11px; font-weight: 600; letter-spacing: .02em;
  padding: 6px 11px; border-radius: 999px;
  background: var(--emerald); color: #fff;
  box-shadow: 0 8px 20px -6px rgba(4,120,87,.6);
  white-space: nowrap; opacity: 0; pointer-events: none;
  display: none;
}

/* ---- logo strip ---- */
.trust {
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  background: var(--cream-deep);
  margin-top: 54px;
}
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding: 22px 0;
}
.trust-lead {
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-2); margin-right: 4px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--ink); font-weight: 500;
}
.trust-item svg { color: var(--emerald); flex: none; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: 88px 0; }
.section.tight { padding: 68px 0; }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin: 16px 0 0; letter-spacing: -.03em;
}
.section-head p {
  margin: 16px 0 0; font-size: 1.08rem; color: var(--ink-2); line-height: 1.55;
}

/* ---- stats band ---- */
.band {
  background: linear-gradient(160deg, var(--ink) 0%, #0c1712 100%);
  color: #EAF1ED;
  position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(90% 100% at 20% 0%, #000, transparent 70%);
  mask-image: radial-gradient(90% 100% at 20% 0%, #000, transparent 70%);
}
.band .wrap { position: relative; }
.band-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  padding: 56px 0;
}
@media (min-width: 720px) { .band-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.stat { padding: 20px 26px; position: relative; }
@media (min-width: 720px) {
  .stat + .stat { border-left: 1px solid rgba(255,255,255,.12); }
}
.stat-num {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600; letter-spacing: -.03em; line-height: 1;
  color: #fff;
}
.stat-num .unit { color: var(--gold); font-size: .55em; margin-left: 2px; }
.stat-label { margin-top: 12px; font-size: 14px; color: #A9B8AF; line-height: 1.45; max-width: 200px; }

/* ============================================================
   Pipeline (PDF -> portfolio) — 3 steps
   ============================================================ */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  counter-reset: step;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.step {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 28px 26px 30px;
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hair); }
.step-idx {
  counter-increment: step;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 13px; font-weight: 600;
  color: var(--emerald); letter-spacing: .04em;
}
.step-idx::before {
  content: "0" counter(step);
  font-variant-numeric: tabular-nums;
  font-size: 13px; color: var(--gold);
}
.step-ico {
  width: 46px; height: 46px; border-radius: 13px; margin: 20px 0 18px;
  display: grid; place-items: center;
  background: var(--emerald-tint); color: var(--emerald);
  border: 1px solid #D3E7DE;
}
.step h3 { font-size: 1.28rem; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15px; margin: 0; }
.step .flow-arrow {
  display: none; position: absolute; right: -22px; top: 50%;
  transform: translateY(-50%); color: var(--gold); z-index: 2;
}
@media (min-width: 820px) {
  .step:not(:last-child) .flow-arrow { display: block; }
}

.activate-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.activate-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink); font-weight: 500;
}
.activate-list svg { color: var(--emerald); flex: none; }

/* ============================================================
   Ask (chat) split
   ============================================================ */
.ask { background: var(--cream-deep); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.ask-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 920px) { .ask-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }

.chat-demo {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 10px; padding: 15px 20px;
  border-bottom: 1px solid var(--hair-2);
}
.chat-avatar {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: var(--emerald-tint); color: var(--emerald);
  display: grid; place-items: center;
}
.chat-head b { font-size: 14px; }
.chat-head .live-tag {
  margin-left: auto; font-size: 11.5px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.chat-head .live-tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); font-style: normal; }
.chat-body { padding: 20px; display: grid; gap: 14px; }
.bubble { max-width: 88%; padding: 12px 15px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.bubble.q { justify-self: end; background: var(--emerald); color: #fff; border-bottom-right-radius: 5px; }
.bubble.a { justify-self: start; background: var(--cream-deep); color: var(--ink); border: 1px solid var(--hair-2); border-bottom-left-radius: 5px; }
.bubble.a .cite {
  display: block; margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--hair);
  font-size: 11.5px; color: var(--ink-2);
}
.mini-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 66px; margin: 12px 0 4px;
}
.mini-chart span {
  flex: 1; background: var(--mint); border-radius: 4px 4px 0 0;
  height: calc(var(--h, .3) * 100%); min-height: 6px; position: relative;
  transform-origin: bottom; transform: scaleY(0);
  transition: transform .6s var(--ease-out);
}
.chat-demo.in .mini-chart span { transform: scaleY(1); }
.chat-demo.in .mini-chart span:nth-child(1){transition-delay:.05s}
.chat-demo.in .mini-chart span:nth-child(2){transition-delay:.1s}
.chat-demo.in .mini-chart span:nth-child(3){transition-delay:.15s}
.chat-demo.in .mini-chart span:nth-child(4){transition-delay:.2s}
.chat-demo.in .mini-chart span:nth-child(5){transition-delay:.25s}
.chat-demo.in .mini-chart span:nth-child(6){transition-delay:.3s}
.chat-demo.in .mini-chart span:nth-child(7){transition-delay:.35s}
.chat-demo.in .mini-chart span:nth-child(8){transition-delay:.4s}
.chat-demo.in .mini-chart span:nth-child(9){transition-delay:.45s}
.chat-demo.in .mini-chart span:nth-child(10){transition-delay:.5s}
.mini-chart span.tall { background: var(--emerald); }
.chat-input {
  display: flex; align-items: center; gap: 10px; margin: 4px 20px 20px;
  padding: 11px 15px; border: 1px solid var(--hair); border-radius: 12px;
  color: var(--ink-2); font-size: 13.5px;
}
.chat-input svg { margin-left: auto; color: var(--emerald); flex: none; }

.ask-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.ask-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink);
}
.ask-list .qmark {
  flex: none; width: 26px; height: 26px; border-radius: 8px; margin-top: 1px;
  background: var(--gold-tint); color: var(--gold);
  display: grid; place-items: center; font-family: var(--serif);
  font-size: 13px; font-weight: 600;
}

/* ============================================================
   Product tour (screenshots)
   ============================================================ */
.tour { display: grid; gap: 64px; }
.shot {
  display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center;
}
@media (min-width: 900px) {
  .shot { grid-template-columns: 0.82fr 1.18fr; gap: 44px; }
  .shot.flip .shot-copy { order: 2; }
  .shot.flip .shot-frame { order: 1; }
}
.shot-copy .kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.shot-copy h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 14px 0 0; }
.shot-copy p { color: var(--ink-2); margin: 14px 0 0; font-size: 1.02rem; }
.shot-feat { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.shot-feat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.shot-feat svg { color: var(--emerald); flex: none; margin-top: 3px; }

.shot-frame {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--hair);
  box-shadow: var(--shadow-lg);
}
.frame-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 15px;
  background: var(--cream-deep); border-bottom: 1px solid var(--hair-2);
}
.frame-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--hair); font-style: normal; }
.frame-bar i:nth-child(2){ background:#E6DCC8; } .frame-bar i:nth-child(3){ background: var(--mint); }
.frame-bar .url {
  margin-left: 12px; font-size: 12px; color: var(--ink-2);
  background: var(--surface); padding: 4px 12px; border-radius: 999px;
  border: 1px solid var(--hair-2); font-variant-numeric: tabular-nums;
}
.shot-frame img { display: block; width: 100%; }
.shot-cap {
  font-size: 13px; color: var(--ink-2); padding: 12px 16px;
  border-top: 1px solid var(--hair-2); background: var(--surface);
}
.shot-cap b { color: var(--ink); font-weight: 600; }

/* ============================================================
   Feature grid
   ============================================================ */
.features {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--hair); border: 1px solid var(--hair);
  border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feat {
  background: var(--surface); padding: 30px 26px 32px;
  transition: background .25s var(--ease);
}
.feat:hover { background: var(--cream); }
.feat-ico {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: var(--emerald-tint); color: var(--emerald);
  border: 1px solid #D3E7DE;
}
.feat h3 { font-size: 1.16rem; margin-bottom: 9px; }
.feat p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.feat .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat .chips span {
  font-size: 11.5px; font-weight: 500; padding: 4px 9px; border-radius: 999px;
  background: var(--cream-deep); color: var(--ink-2); border: 1px solid var(--hair-2);
}

/* ---- tech chips ---- */
.tech { text-align: center; }
.tech-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 30px;
}
.tech-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--hair);
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.tech-chip:hover { transform: translateY(-2px); border-color: var(--gold); }
.tech-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }

/* ============================================================
   CTA
   ============================================================ */
.cta-wrap { padding: 92px 0; }
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--emerald) 0%, var(--emerald-deep) 100%);
  border-radius: 28px; padding: 60px 40px; text-align: center;
  color: #fff;
  box-shadow: 0 40px 80px -34px rgba(4,120,87,.6);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(80% 120% at 50% 0%, #000, transparent 75%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.03em; }
.cta p { color: #CFE6DC; max-width: 520px; margin: 18px auto 0; font-size: 1.08rem; }
.cta .hero-cta { justify-content: center; margin-top: 32px; }
.cta .btn { --btn-bg: #fff; --btn-fg: var(--emerald-deep); box-shadow: 0 10px 30px -10px rgba(0,0,0,.4); }
.cta .btn:hover { --btn-bg: var(--cream); }
.cta .btn.ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.cta .btn.ghost:hover { --btn-bg: rgba(255,255,255,.1); border-color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink); color: #B7C5BC;
  padding: 60px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 34px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: 14.5px; max-width: 320px; margin: 16px 0 0; line-height: 1.6; }
.footer-brand .brand-sub { color: #8A9990; }
.foot-col h4 {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #8A9990;
  margin-bottom: 16px;
}
.foot-col a, .foot-col span { display: block; font-size: 14.5px; color: #B7C5BC; margin-bottom: 11px; transition: color .2s var(--ease); white-space: nowrap; }
.foot-col a:hover { color: #fff; }
.foot-col .arw { color: var(--gold); }

.footer-credit {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  padding-top: 28px; font-size: 13.5px;
}
.bs-lockup {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; color: #fff;
}
.bs-mark {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 12.5px; color: #fff;
}
.footer-credit .tagline { color: #8A9990; }
.footer-credit .legal { margin-left: auto; color: #8A9990; }

/* ============================================================
   Contact page
   ============================================================ */
.page-hero {
  padding: 72px 0 20px; position: relative; overflow: hidden;
}
.page-hero .hero-grid-bg { opacity: .45; }
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 30px 0 92px; align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 60px; } }

.contact-aside h1 { font-size: clamp(2.2rem, 5vw, 3.1rem); letter-spacing: -.03em; }
.contact-aside p { color: var(--ink-2); font-size: 1.08rem; margin: 18px 0 0; }
.contact-points { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-points li { display: flex; gap: 14px; align-items: flex-start; }
.cp-ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--emerald-tint); color: var(--emerald);
  display: grid; place-items: center; border: 1px solid #D3E7DE;
}
.cp-ico.gold { background: var(--gold-tint); color: var(--gold); border-color: #E8DCC4; }
.cp-txt b { display: block; font-family: var(--serif); font-size: 15px; }
.cp-txt span, .cp-txt a { color: var(--ink-2); font-size: 14px; }
.cp-txt a:hover { color: var(--emerald); }

.form-card {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-md);
}
.field-group { margin-bottom: 20px; }
.field-group label {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.field-group .req { color: var(--emerald); }
.field-group input, .field-group textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--hair); border-radius: 11px;
  background: var(--cream); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field-group input::placeholder, .field-group textarea::placeholder { color: #9AA69E; }
.field-group input:focus, .field-group textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(4,120,87,.12); background: var(--surface);
}
.field-group textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; margin-top: 4px; }
.form-note {
  display: flex; align-items: center; gap: 9px; justify-content: center;
  margin-top: 16px; font-size: 13px; color: var(--ink-2); text-align: center;
}
.form-note svg { color: var(--emerald); flex: none; }
.form-alt {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--hair-2);
  font-size: 13.5px; color: var(--ink-2); text-align: center;
}
.form-alt a { color: var(--emerald); font-weight: 600; }

/* ============================================================
   Thank you page
   ============================================================ */
.thanks {
  min-height: 62vh; display: grid; place-items: center;
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.thanks-inner { max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.success-badge {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 28px;
  background: var(--emerald-tint); color: var(--emerald);
  display: grid; place-items: center; border: 1px solid #CDE5DB;
  position: relative;
}
.success-badge::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid var(--mint); opacity: .7;
}
.thanks h1 { font-size: clamp(2rem, 5vw, 2.9rem); letter-spacing: -.03em; }
.thanks p { color: var(--ink-2); font-size: 1.1rem; margin: 18px auto 0; max-width: 440px; }
.thanks .hero-cta { justify-content: center; margin-top: 32px; }
.thanks .email-line { margin-top: 26px; font-size: 14px; color: var(--ink-2); }
.thanks .email-line a { color: var(--emerald); font-weight: 600; }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .field-row { opacity: 1 !important; transform: none !important; }
  .ring .prog { stroke-dashoffset: var(--off, 6) !important; }
  .mini-chart span { transform: scaleY(1) !important; }
  .flyer { display: none !important; }
  html { scroll-behavior: auto; }
}
