:root {
  --bg: oklch(0.985 0.005 240);
  --bg-tint: oklch(0.965 0.015 240);
  --bg-card: #ffffff;
  --ink: oklch(0.22 0.02 250);
  --ink-soft: oklch(0.42 0.02 250);
  --ink-mute: oklch(0.58 0.015 250);
  --line: oklch(0.92 0.01 240);
  --line-strong: oklch(0.86 0.015 240);
  --accent: oklch(0.55 0.13 245);
  --accent-deep: oklch(0.42 0.14 250);
  --accent-soft: oklch(0.94 0.04 240);
  --success: oklch(0.62 0.12 160);
  --shadow-sm: 0 1px 2px rgba(20,30,60,.04), 0 1px 1px rgba(20,30,60,.03);
  --shadow-md: 0 4px 16px rgba(20,30,60,.06), 0 2px 4px rgba(20,30,60,.04);
  --shadow-lg: 0 24px 60px -20px rgba(20,40,90,.18), 0 8px 20px -8px rgba(20,40,90,.10);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'cv11','ss01','ss03';
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: grid; place-items: center; color: white; font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 10px -4px var(--accent);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 0; border-radius: 9px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.35), transparent 50%);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 450; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, border-color .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: oklch(0.15 0.02 250); transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(20,30,60,.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--ink-mute); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--accent); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 84px 0 100px;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklch, var(--accent) 8%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklch, var(--accent) 8%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-content { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero-content { grid-template-columns: 1fr; gap: 48px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: white; border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-soft); font-weight: 450;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px color-mix(in oklch, var(--success) 25%, transparent); }
.eyebrow-tag { background: var(--accent-soft); color: var(--accent-deep); padding: 2px 8px; border-radius: 999px; font-weight: 500; font-size: 11px; }

h1.hero-title {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 22px 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
h1.hero-title .em { color: var(--accent-deep); }

.hero-sub {
  font-size: 18px; color: var(--ink-soft); max-width: 520px;
  line-height: 1.55; text-wrap: pretty;
}
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; color: var(--ink-mute); font-size: 13px; }
.hero-meta-item svg { color: var(--accent); }

/* ---------- HERO MOCKUP ---------- */
.hero-mock {
  position: relative;
  aspect-ratio: 5/4.4;
  perspective: 1400px;
}
.mock-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-dashboard {
  inset: 6% 8% 14% 0;
  transform: rotate(-1.5deg);
}
.mock-chat {
  width: 240px; bottom: 0; right: 4%;
  transform: rotate(2deg);
  background: white;
  padding: 14px;
  border-radius: 18px;
  z-index: 3;
}
.mock-cal {
  width: 215px; top: 8%; right: -2%;
  transform: rotate(3deg);
  padding: 14px 12px 12px;
  z-index: 2;
}

/* dashboard internals */
.dash-top { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--bg-tint); }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 9px; height: 9px; border-radius: 50%; background: oklch(0.88 0.01 240); }
.dash-url { flex: 1; text-align: center; font-size: 11px; color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; }
.dash-body { padding: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.dash-stat { background: var(--bg-tint); border-radius: 10px; padding: 12px; }
.dash-stat-label { font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-stat-num { font-size: 20px; font-weight: 600; margin-top: 4px; letter-spacing: -0.02em; }
.dash-stat-trend { font-size: 10px; color: var(--success); margin-top: 2px; }
.dash-chart { grid-column: 1 / -1; height: 120px; background: var(--bg-tint); border-radius: 10px; padding: 12px; position: relative; overflow: hidden; }
.dash-chart-svg { width: 100%; height: 100%; }
.dash-list { grid-column: 1 / -1; }
.dash-row { display: flex; align-items: center; gap: 10px; padding: 8px 4px; border-bottom: 1px solid var(--line); font-size: 12px; }
.dash-row:last-child { border-bottom: 0; }
.dash-row .av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); flex-shrink: 0; }
.dash-row .nm { flex: 1; color: var(--ink); }
.dash-row .tm { color: var(--ink-mute); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* mini calendar */
.cal-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal-h .m { font-weight: 600; font-size: 12.5px; letter-spacing: -0.01em; }
.cal-h .nav-mini { display: flex; gap: 4px; }
.cal-h .nav-mini i { width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 5px; display: grid; place-items: center; color: var(--ink-mute); font-style: normal; font-size: 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; font-size: 10.5px; }
.cal-grid .dow { color: var(--ink-mute); text-align: center; padding: 4px 0; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-grid .d { aspect-ratio: 1; display: grid; place-items: center; border-radius: 6px; color: var(--ink-soft); cursor: pointer; transition: background .15s; }
.cal-grid .d:hover { background: var(--bg-tint); }
.cal-grid .d.active { background: var(--accent); color: white; font-weight: 500; }
.cal-grid .d.has { position: relative; color: var(--ink); font-weight: 500; }
.cal-grid .d.has::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--accent); }
.cal-grid .d.muted { color: oklch(0.78 0.01 240); }

/* mini chat */
.chat-h { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.chat-av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); display: grid; place-items: center; color: white; font-size: 11px; font-weight: 600; }
.chat-name { font-size: 12.5px; font-weight: 600; line-height: 1.2; }
.chat-name small { display: block; color: var(--success); font-weight: 400; font-size: 10px; }
.chat-msgs { display: flex; flex-direction: column; gap: 6px; }
.bubble { max-width: 80%; padding: 7px 10px; border-radius: 10px; font-size: 11.5px; line-height: 1.35; }
.bubble.them { background: var(--bg-tint); color: var(--ink); border-top-left-radius: 3px; align-self: flex-start; }
.bubble.me { background: var(--accent); color: white; border-top-right-radius: 3px; align-self: flex-end; }
.bubble.typing { padding: 8px 12px; }
.bubble.typing span { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); margin-right: 3px; animation: blink 1.4s infinite; }
.bubble.typing span:nth-child(2) { animation-delay: .2s; }
.bubble.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }

/* ---------- LOGOS STRIP ---------- */
.logos-strip {
  padding: 32px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.logos-label { text-align: center; font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; }
.logos-row { display: flex; justify-content: space-around; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 28px; opacity: .68; }
.logos-row .lg { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-soft); font-family: 'Instrument Serif', serif; font-style: italic; }
.logos-row .lg.sans { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; letter-spacing: -0.04em; }
.logos-row .lg.mono { font-family: 'JetBrains Mono', monospace; font-style: normal; font-weight: 500; font-size: 14px; letter-spacing: 0; }

/* ---------- SECTION ---------- */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.sec-eyebrow { display: inline-block; font-size: 12px; color: var(--accent-deep); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; margin-bottom: 14px; }
.sec-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 500; margin: 0 0 16px; text-wrap: balance; }
.sec-sub { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; text-wrap: pretty; }

/* ---------- MODULES ---------- */
.modules-stack { display: flex; flex-direction: column; gap: 32px; }

.module-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}
.module-panel.reverse { grid-template-columns: 1.05fr 1fr; }
.module-panel.reverse > div:first-child { order: 2; }
.module-panel.reverse > div:last-child { order: 1; }
@media (max-width: 900px) {
  .module-panel, .module-panel.reverse { grid-template-columns: 1fr; padding: 32px; gap: 40px; min-height: 0; }
  .module-panel.reverse > div:first-child { order: 1; }
  .module-panel.reverse > div:last-child { order: 2; }
}

.module-meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.module-title { font-size: 36px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; margin: 0 0 14px; text-wrap: balance; }
.module-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin-bottom: 24px; max-width: 460px; }
.module-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.module-bullets li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); }
.module-bullets .ck {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-top: 1px;
}
.module-stat { display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 16px; background: var(--bg-tint); border-radius: 10px; }
.module-stat .n { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--accent-deep); }
.module-stat .l { font-size: 13px; color: var(--ink-soft); }

.module-visual { position: relative; min-height: 420px; }

/* ---------- PILLARS ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.pillar h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.pillar p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ---------- TESTIMONIALS ---------- */
.testi-section { background: var(--bg-tint); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.testi-quote { font-size: 16px; line-height: 1.55; color: var(--ink); letter-spacing: -0.005em; flex: 1; text-wrap: pretty; }
.testi-quote::before { content: '"'; font-family: 'Instrument Serif', serif; font-size: 36px; color: var(--accent); line-height: 0.5; vertical-align: -0.1em; margin-right: 4px; }
.testi-meta { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-soft), var(--accent)); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12.5px; color: var(--ink-mute); }

/* ---------- LAURA CHAT BIG ---------- */
.chat-demo {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  height: 460px;
  max-width: 420px;
  margin-left: auto;
}
.chat-demo-h { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.chat-demo-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); display: grid; place-items: center; color: white; font-weight: 600; }
.chat-demo-info .nm { font-size: 15px; font-weight: 600; }
.chat-demo-info .st { font-size: 12px; color: var(--success); display: flex; align-items: center; gap: 6px; }
.chat-demo-info .st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.chat-demo-body { flex: 1; padding: 16px 4px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.chat-demo-body::-webkit-scrollbar { width: 0; }
.chat-demo .bubble { max-width: 85%; padding: 10px 14px; font-size: 13.5px; }
.chat-demo .bubble.them { background: var(--bg-tint); }
.bubble-time { font-size: 10px; color: var(--ink-mute); margin-top: -4px; padding: 0 8px; }
.bubble-time.me { align-self: flex-end; }
.chat-demo-input { display: flex; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.chat-demo-input .inp { flex: 1; padding: 10px 14px; background: var(--bg-tint); border-radius: 999px; font-size: 13px; color: var(--ink-mute); border: none; }

/* ---------- POSTURE VISUAL ---------- */
.posture-vis {
  background: linear-gradient(180deg, oklch(0.97 0.015 240) 0%, white 100%);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 28px;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.posture-tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.posture-tabs .pt { padding: 6px 12px; border-radius: 999px; font-size: 11.5px; background: white; border: 1px solid var(--line); color: var(--ink-soft); cursor: pointer; }
.posture-tabs .pt.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.posture-canvas {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  height: 290px; position: relative;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
  display: grid; place-items: center;
  overflow: hidden;
}
.posture-figure { width: 90px; height: 240px; position: relative; }
.posture-figure svg { width: 100%; height: 100%; }
.posture-marker { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 25%, transparent); transform: translate(-50%, -50%); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 25%, transparent); } 50% { box-shadow: 0 0 0 6px color-mix(in oklch, var(--accent) 10%, transparent); } }
.posture-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.posture-stat { padding: 10px; background: white; border: 1px solid var(--line); border-radius: 8px; text-align: center; }
.posture-stat .v { font-size: 20px; font-weight: 600; color: var(--accent-deep); letter-spacing: -0.02em; }
.posture-stat .l { font-size: 10.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ---------- ZOE VISUAL ---------- */
.zoe-vis { background: white; border: 1px solid var(--line); border-radius: 18px; height: 460px; padding: 24px; position: relative; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.zoe-rec { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--bg-tint); border-radius: 10px; margin-bottom: 16px; }
.zoe-mic { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: white; flex-shrink: 0; position: relative; }
.zoe-mic::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ripple 2s infinite; }
@keyframes ripple { 0% { opacity: .6; transform: scale(.95); } 100% { opacity: 0; transform: scale(1.4); } }
.zoe-wave { flex: 1; display: flex; align-items: center; gap: 2px; height: 28px; }
.zoe-wave span { flex: 1; background: var(--accent); border-radius: 2px; animation: wave 1.2s infinite ease-in-out; }
@keyframes wave { 0%, 100% { height: 20%; } 50% { height: 100%; } }
.zoe-time { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-soft); }
.zoe-doc { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 18px; overflow: hidden; position: relative; }
.zoe-doc-h { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; font-family: 'JetBrains Mono', monospace; }
.zoe-line { height: 9px; background: var(--bg-tint); border-radius: 3px; margin-bottom: 8px; }
.zoe-line.w-90 { width: 90%; } .zoe-line.w-70 { width: 70%; } .zoe-line.w-80 { width: 80%; } .zoe-line.w-60 { width: 60%; } .zoe-line.w-50 { width: 50%; }
.zoe-line.h { background: var(--accent-soft); }
.zoe-section { font-size: 11px; font-weight: 600; color: var(--accent-deep); margin: 14px 0 8px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- BIG CALENDAR ---------- */
.cal-vis { background: white; border: 1px solid var(--line); border-radius: 18px; height: 460px; padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.cal-vis-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-vis-h .mt { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.cal-vis-h .vt { display: flex; gap: 4px; padding: 3px; background: var(--bg-tint); border-radius: 8px; }
.cal-vis-h .vt span { padding: 4px 10px; border-radius: 5px; font-size: 11.5px; color: var(--ink-soft); cursor: pointer; }
.cal-vis-h .vt span.on { background: white; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.cal-week { display: grid; grid-template-columns: 56px repeat(5, 1fr); gap: 2px; flex: 1; overflow: hidden; }
.cal-time { font-size: 10.5px; color: var(--ink-mute); padding-right: 8px; text-align: right; font-family: 'JetBrains Mono', monospace; }
.cal-col { display: flex; flex-direction: column; gap: 1px; position: relative; padding: 0 2px; }
.cal-col-h { font-size: 11px; color: var(--ink-mute); text-align: center; padding: 6px 0; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.cal-col-h .dn { font-weight: 600; color: var(--ink); font-size: 13px; }
.cal-col-h.today .dn { color: var(--accent-deep); }
.cal-col-h.today .dn::after { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin: 3px auto 0; }
.cal-slot {
  position: absolute; left: 4px; right: 4px;
  background: color-mix(in oklch, var(--accent) 14%, white);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 5px 7px;
  font-size: 10.5px;
  color: var(--accent-deep);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  overflow: hidden;
}
.cal-slot:hover { transform: scale(1.04); box-shadow: var(--shadow-md); z-index: 5; background: color-mix(in oklch, var(--accent) 22%, white); }
.cal-slot .nm { font-weight: 600; line-height: 1.2; }
.cal-slot .ty { opacity: .8; font-size: 9.5px; margin-top: 1px; }
.cal-slot.green { background: color-mix(in oklch, var(--success) 14%, white); border-left-color: var(--success); color: oklch(0.32 0.1 160); }
.cal-empty {
  position: absolute; left: 4px; right: 4px;
  border: 1px dashed var(--line-strong); border-radius: 6px;
  display: grid; place-items: center;
  font-size: 10px; color: var(--ink-mute);
  cursor: pointer; transition: all .15s;
}
.cal-empty:hover { border-color: var(--accent); color: var(--accent-deep); background: color-mix(in oklch, var(--accent) 5%, white); }

/* ---------- ECOSYSTEM VISUAL ---------- */
.eco-vis { height: 460px; position: relative; display: grid; place-items: center; }
.eco-center {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: white; display: grid; place-items: center;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  box-shadow: 0 16px 40px -12px var(--accent), inset 0 1px 0 rgba(255,255,255,.3);
  position: relative; z-index: 3;
}
.eco-orbit { position: absolute; inset: 0; pointer-events: none; }
.eco-orbit::before, .eco-orbit::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  border-radius: 50%; border: 1px dashed var(--line-strong);
  transform: translate(-50%, -50%);
}
.eco-orbit::before { width: 280px; height: 280px; }
.eco-orbit::after { width: 400px; height: 400px; }
.eco-node {
  position: absolute;
  background: white; border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.eco-node:hover { transform: scale(1.06); box-shadow: var(--shadow-md); }
.eco-node .ic { width: 20px; height: 20px; border-radius: 6px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }

/* ---------- COMING SOON ---------- */
.coming-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
@media (max-width: 720px) { .coming-grid { grid-template-columns: 1fr; } }
.coming-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.coming-card::after {
  content: 'COMING SOON';
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 600;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.1em; font-family: 'JetBrains Mono', monospace;
}
.coming-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 8px; }
.coming-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0 0 24px; }
.coming-vis { height: 100px; background: var(--bg-tint); border-radius: 10px; display: grid; place-items: center; color: var(--ink-mute); font-size: 11px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--ink); color: var(--bg);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}
.final-cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; padding: 16px 0; }
.final-cta h2 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 500; margin: 0 0 18px; text-wrap: balance; }
.final-cta h2 .em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: oklch(0.78 0.08 240); }
.final-cta p { color: oklch(0.78 0.01 240); font-size: 18px; line-height: 1.55; margin: 0 0 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta .btn-accent { box-shadow: 0 12px 32px -8px var(--accent); }
.final-cta-meta { margin-top: 28px; display: flex; gap: 24px; justify-content: center; font-size: 13px; color: oklch(0.7 0.01 240); flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer { padding: 60px 0 40px; border-top: 1px solid var(--line); background: white; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mute); margin: 0 0 14px; font-weight: 500; }
.foot-col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-tag { color: var(--ink-mute); font-size: 13px; margin-top: 12px; max-width: 280px; line-height: 1.5; }
.foot-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--ink-mute); flex-wrap: wrap; gap: 12px; }

/* ---------- MODAL ---------- */
.modal-back {
  position: fixed; inset: 0;
  background: color-mix(in oklch, var(--ink) 50%, transparent);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  z-index: 100; padding: 20px;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white; border-radius: 20px;
  width: 100%; max-width: 520px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.3);
  overflow: hidden;
  animation: slideUp .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideUp { from { transform: translateY(20px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-h { padding: 24px 28px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-h h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 4px; }
.modal-h p { font-size: 13.5px; color: var(--ink-mute); margin: 0; }
.modal-close { background: var(--bg-tint); border: 0; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--ink-soft); display: grid; place-items: center; }
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-body { padding: 24px 28px 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 500; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 14px; color: var(--ink);
  background: white; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 15%, transparent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-foot { padding: 16px 28px 24px; display: flex; justify-content: flex-end; gap: 10px; }
.success-state { padding: 40px 28px; text-align: center; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.success-state h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 8px; }
.success-state p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
