@font-face { font-family: "Yellix"; src: url("/fonts/Yellix-Regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Yellix"; src: url("/fonts/Yellix-Medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Yellix"; src: url("/fonts/Yellix-SemiBold.otf") format("opentype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Yellix"; src: url("/fonts/Yellix-Bold.otf") format("opentype"); font-weight: 700; font-display: swap; }

:root {
  --green: #2b4538;
  --green-strong: #1f3329;
  --lime: #c5f58a;
  --lime-bright: #bdf882;
  --tint: #eef2ec;
  --tint-line: #d7e2d2;
  --canvas: #faf9f5;
  --surface: #ffffff;
  --sunken: #f3f1ea;
  --ink: #1f1e1d;
  --body: #322f2a;
  --muted: #6f6d64;
  --faint: #a8a69b;
  --line: #e9e5d9;
  --line-strong: #ddd8c9;
  --maxw: 1180px;
  --font-display: "Yellix", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Yellix", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-card: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--body); font-family: var(--font-sans); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); font-weight: 500; line-height: 1.1; margin: 0; letter-spacing: -0.015em; font-feature-settings: "rlig" 1, "ss04" 1, "ss10" 1, "ss12" 1, "calt" 1, "liga" 1, "ss02" 1, "ss08" 1, "ss03" 1; }
p { margin: 0 0 14px; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; }
.section.tight { padding: 56px 0; }
.section.sunken { background: var(--sunken); }
.eyebrow { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin: 0 0 18px; font-weight: 500; font-family: var(--font-sans); }
h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
h3 { font-size: 21px; }
.lead { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); line-height: 1.45; }
.section p { max-width: 62ch; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.13em; flex: none; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; padding: 11px 19px; border-radius: 999px; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background .15s, border-color .15s, color .15s; line-height: 1; }
.btn .icon { font-size: 16px; }
.btn-primary { background: var(--green); color: var(--lime-bright); border-color: var(--green); }
.btn-primary:hover { background: var(--green-strong); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--green); background: var(--tint); }
.btn-light { background: var(--lime-bright); color: var(--green-strong); border-color: var(--lime-bright); }
.btn-light:hover { filter: brightness(0.95); }
.btn-ghost-light { background: transparent; color: #eaf3e2; border-color: rgba(234, 243, 226, 0.32); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(234, 243, 226, 0.6); }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250, 249, 245, 0.82); backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; height: 74px; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; }
.wordmark { font-family: var(--font-sans); font-weight: 700; font-size: 18px; color: var(--green); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.wordmark .wm-sub { color: var(--faint); font-weight: 500; }
.nav-links { display: flex; gap: 30px; margin: 0 auto; }
.nav-links a { font-size: 15px; color: var(--muted); text-decoration: none; position: relative; padding: 6px 0; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green); border-radius: 2px; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle .icon { font-size: 24px; }

/* hero */
.hero { background: var(--green); color: #f3f4ec; overflow: hidden; }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 92px 32px 96px; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: var(--lime); }
.hero h1 { color: #f6f6ee; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.04; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero .sub { color: #c2d2bc; font-size: 19px; max-width: 44ch; margin: 22px 0 30px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-outline { color: #eef3e9; border-color: rgba(238, 243, 233, 0.3); }
.hero .btn-outline:hover { border-color: rgba(238, 243, 233, 0.7); background: rgba(255,255,255,0.06); }

/* hero video card (loom) */
.video { position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--green-strong); border: 1px solid rgba(255,255,255,0.12); text-decoration: none; }
.video .poster { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 30px; }
.video .poster-text { font-family: var(--font-display); font-size: 27px; line-height: 1.2; letter-spacing: -0.01em; color: rgba(197, 245, 138, 0.2); text-align: center; }
.video .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 74px; height: 74px; border-radius: 50%; background: var(--lime-bright); color: var(--green-strong); display: flex; align-items: center; justify-content: center; transition: transform .18s; box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.video .play .icon { font-size: 28px; margin-left: 4px; }
.video:hover .play { transform: translate(-50%, -50%) scale(1.06); }
.video .vlabel { position: absolute; top: 16px; left: 18px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243,244,236,0.7); }
.video .vbadge { position: absolute; bottom: 16px; left: 18px; font-size: 13px; color: #eef3e9; background: rgba(0,0,0,0.28); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }

/* triptych */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.blocker { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 26px; }
.blocker .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--tint); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; font-family: var(--font-display); }
.blocker h3 { margin-bottom: 9px; font-size: 19px; }
.blocker p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.5; }
.footnote { margin-top: 22px; font-size: 13px; color: var(--green); display: inline-flex; gap: 8px; align-items: center; background: var(--tint); padding: 8px 14px; border-radius: 999px; }

/* split / portrait */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.portrait { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; background: var(--sunken); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* anchored rail + content */
.anchored { display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start; margin-top: 28px; }
.rail { position: sticky; top: 98px; display: flex; flex-direction: column; gap: 4px; }
.rail a { display: flex; gap: 11px; align-items: center; padding: 11px 14px; border-radius: 11px; text-decoration: none; color: var(--muted); font-size: 14px; line-height: 1.25; transition: background .14s, color .14s; }
.rail a .icon { font-size: 17px; color: var(--faint); transition: color .14s; }
.rail a:hover { background: var(--sunken); color: var(--ink); }
.rail a.active { background: var(--green); color: #f3f4ec; }
.rail a.active .icon { color: var(--lime); }
.cap { padding: 20px 0 40px; border-bottom: 1px solid var(--line); scroll-margin-top: 96px; }
.cap:last-child { border-bottom: none; }
.cap .cap-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--tint); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.cap h3 { font-size: 25px; margin-bottom: 9px; }
.cap .what { font-weight: 500; color: var(--ink); margin-bottom: 12px; font-size: 17px; font-family: var(--font-sans); }
.cap p { font-size: 16px; color: var(--body); max-width: 64ch; line-height: 1.5; }
.cap .quote { font-family: var(--font-display); font-size: 18px; color: var(--muted); border-left: 2px solid var(--tint-line); padding-left: 16px; margin: 16px 0; line-height: 1.35; }

/* try it */
.try-row { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.try-it { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; font-weight: 500; color: var(--green); background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 16px; text-decoration: none; transition: background .15s, color .15s, border-color .15s; }
.try-it .icon { font-size: 15px; transition: transform .15s; }
.try-it:hover { background: var(--green); color: var(--lime-bright); border-color: var(--green); }
.try-it:hover .icon { transform: translate(2px, -2px); }

/* decision */
.decision { background: var(--tint); border-radius: 12px; padding: 16px 18px; margin-top: 16px; font-size: 14.5px; color: var(--body); line-height: 1.5; max-width: 64ch; }
.decision .lbl { display: block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; font-weight: 500; }

/* prototype shot frame */
.shot { display: block; margin-top: 22px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--surface); text-decoration: none; max-width: 640px; transition: border-color .15s, transform .15s; }
.shot:hover { border-color: var(--green); }
.shot .shot-bar { display: flex; align-items: center; gap: 7px; padding: 9px 14px; background: var(--sunken); border-bottom: 1px solid var(--line); }
.shot .shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.shot .shot-url { margin-left: 10px; font-size: 11.5px; color: var(--faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shot .shot-body { display: block; position: relative; aspect-ratio: 16 / 9; background: var(--sunken); }
.shot .shot-body img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.shot .shot-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--muted); font-size: 14px; font-weight: 500; }
.shot .shot-ph .icon { font-size: 17px; color: var(--green); }
.shot:hover .shot-ph { color: var(--green); }

/* capture flow */
.flow { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; margin: 28px 0 18px; }
.flow-box { flex: 1; min-width: 160px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px; text-align: center; }
.flow-box .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--tint); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 12px; }
.flow-box b { font-family: var(--font-display); font-size: 19px; color: var(--ink); display: block; margin-bottom: 3px; font-weight: 500; }
.flow-box span { font-size: 13px; color: var(--muted); }
.flow .arrow { display: flex; align-items: center; color: var(--faint); font-size: 20px; }
.bundle-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.chip { display: inline-flex; gap: 8px; align-items: center; font-size: 14px; color: var(--green); background: var(--tint); border-radius: 999px; padding: 8px 15px; }
.chip .icon { font-size: 15px; }

/* day steps */
.howto { background: var(--tint); border: 1px solid var(--tint-line); border-radius: 14px; padding: 18px 20px; font-size: 15px; color: var(--body); margin-bottom: 26px; line-height: 1.5; max-width: 70ch; }
.day-step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 0.82fr; gap: 32px; align-items: start; }
.day-step .step-pill { display: inline-block; font-size: 12.5px; letter-spacing: 0.02em; color: var(--green); font-weight: 500; background: var(--tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.day-step h3 { font-size: 24px; margin-bottom: 10px; }
.day-step p { font-size: 16px; color: var(--body); line-height: 1.5; }
.day-step .notice { font-size: 14.5px; color: var(--muted); margin: 12px 0 0; display: flex; gap: 8px; }
.day-step .notice .icon { color: var(--green); font-size: 16px; margin-top: 2px; flex: none; }
.why-inline { border-left: 2px solid var(--green); background: var(--tint); border-radius: 0 10px 10px 0; padding: 13px 16px; margin-top: 16px; }
.why-inline .lbl { display: block; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; font-weight: 500; }
.why-inline p { font-size: 14.5px; color: var(--body); margin: 0; line-height: 1.5; }

/* two worlds */
.two-worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 16px 0 26px; }
.world { border-radius: var(--radius-card); padding: 26px; }
.world.old { background: var(--surface); border: 1px solid var(--line); }
.world.new { background: var(--green); color: #eef3e9; }
.world h4 { font-size: 15px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; font-size: 12px; }
.world.old h4 { color: var(--muted); }
.world.new h4 { color: var(--lime); }
.world p { font-size: 16px; margin: 0; line-height: 1.5; }
.world.new p { color: #dce5d6; }
.onenum { font-size: clamp(19px, 2.3vw, 24px); color: var(--ink); max-width: 70ch; font-family: var(--font-display); line-height: 1.35; }

/* recording band */
.rec-band { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 44px; display: grid; grid-template-columns: 1fr 0.7fr; gap: 40px; align-items: center; }
.rec-band h2 { margin-bottom: 10px; }
.rec-band p { color: var(--muted); margin: 0 0 18px; max-width: 46ch; line-height: 1.5; }

/* feedback band (compact, left) */
.fb-band { background: var(--green); border-radius: 20px; padding: 34px 38px; color: #dce5d6; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.fb-band .fb-copy { max-width: 52ch; }
.fb-band h2 { color: #f3f4ec; margin-bottom: 8px; font-size: 26px; }
.fb-band p { color: #c2d2bc; margin: 0; line-height: 1.5; font-size: 15px; }
.fb-band .cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* where to next */
.next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.next-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 30px; text-decoration: none; color: inherit; display: block; transition: border-color .15s, transform .15s; }
.next-card:hover { border-color: var(--green); transform: translateY(-2px); }
.next-card h3 { font-size: 23px; margin-bottom: 7px; }
.next-card span { color: var(--muted); font-size: 15px; line-height: 1.5; }
.next-card .arrow { color: var(--green); margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; font-size: 14.5px; }

/* faq */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-size: 20px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 22px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--faint); font-size: 20px; transition: transform .2s; flex: none; }
.faq details[open] summary .icon { transform: rotate(180deg); color: var(--green); }
.faq details p { margin: 0 0 22px; color: var(--body); max-width: 70ch; line-height: 1.5; }

/* feedback page */
.fb-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.fb-opt { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px; }
.fb-opt .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--tint); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.fb-opt h3 { font-size: 19px; margin-bottom: 8px; }
.fb-opt p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.prompts { background: var(--sunken); border-radius: 16px; padding: 28px; }
.prompts h3 { font-size: 18px; margin-bottom: 6px; }
.prompts ul { margin: 14px 0 0; padding-left: 20px; }
.prompts li { margin-bottom: 10px; color: var(--body); line-height: 1.5; }

/* footer */
.footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 52px 32px; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer .summary { max-width: 34ch; color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.5; }
.footer-col h4 { font-size: 12px; color: var(--faint); margin-bottom: 14px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

.page-head { padding: 72px 0 10px; }
.page-head h1 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 14px; }
.note-card { background: var(--tint); border: 1px solid var(--tint-line); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; color: var(--body); margin-top: 22px; max-width: 70ch; line-height: 1.5; }

/* responsive */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .video { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .portrait { max-width: 440px; }
  .triptych { grid-template-columns: 1fr; }
  .two-worlds, .next-grid, .fb-options { grid-template-columns: 1fr; }
  .anchored { grid-template-columns: 1fr; gap: 24px; }
  .rail { position: static; flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .rail a { white-space: nowrap; flex: 0 0 auto; border: 1px solid var(--line); }
  .day-step { grid-template-columns: 1fr; gap: 22px; }
  .rec-band, .fb-band { grid-template-columns: 1fr; }
  .shot { max-width: none; }
}
@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .hero-inner { padding: 64px 32px 72px; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--line); flex-direction: column; gap: 2px; padding: 14px 32px 22px; margin: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 16px; }
  .nav-toggle { display: block; }
  .nav-cta .btn-watch { display: none; }
  .wordmark { margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

/* real shot image sits above the placeholder */
.shot .shot-body img { z-index: 2; }

/* cropped close-up shots (nav, create, search, workspace) */
.shot.tight .shot-body { background: var(--surface); }
.shot.tight .shot-body img { object-fit: contain; padding: 20px; }

/* explore: capability with screenshot beside it */
.caprow { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.caprow .capbody { min-width: 0; }
.caprow .shot { margin-top: 4px; max-width: none; }

/* faq cards (always open, no accordion) */
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.qa { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; transition: border-color .15s, transform .15s; }
.qa:hover { border-color: var(--green); transform: translateY(-2px); }
.qa-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.qa-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--tint); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.qa h3 { font-size: 18px; color: var(--ink); }
.qa p { margin: 0; color: var(--body); font-size: 15px; line-height: 1.5; }

@media (max-width: 1000px) { .caprow { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .qa-grid { grid-template-columns: 1fr; } }
