:root {
  --violet: #6d35f2;
  --violet-dark: #5322c8;
  --violet-soft: #eee9ff;
  --ink: #17131f;
  --ink-soft: #3e3749;
  --paper: #ffffff;
  --canvas: #f8f7fb;
  --line: #e7e3ee;
  --muted: #726b7e;
  --cyan: #65dbe3;
  --cyan-soft: #dff8f8;
  --orange: #ff9b6a;
  --orange-soft: #fff0e7;
  --lime: #c8f26b;
  --lime-soft: #f0fad9;
  --danger: #ee6d7a;
  --shadow-sm: 0 10px 30px rgba(36, 24, 54, 0.08);
  --shadow-lg: 0 28px 80px rgba(49, 30, 79, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link { position: fixed; left: 20px; top: -60px; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 112px 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid transparent; transition: background-color .2s ease, border-color .2s ease; }
.site-header.scrolled { background: rgba(248, 247, 251, .94); border-color: var(--line); backdrop-filter: blur(16px); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { position: relative; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: var(--violet); box-shadow: 0 8px 22px rgba(109, 53, 242, .26); }
.brand-mark > span { position: absolute; z-index: 1; display: block; width: 6px; height: 6px; border-radius: 50%; background: white; }
.brand-mark > span:nth-child(1) { left: 7px; top: 8px; }
.brand-mark > span:nth-child(2) { right: 7px; top: 8px; }
.brand-mark > span:nth-child(3) { bottom: 5px; left: 14.5px; background: var(--lime); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; z-index: 0; border-radius: 999px; background: white; }
.brand-mark::before { left: 10px; top: 9.5px; width: 15px; height: 3px; }
.brand-mark::after { left: 16px; top: 10px; width: 3px; height: 18px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; color: #51495d; font-size: 14px; font-weight: 600; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--violet); }
.button { min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-size: 14px; font-weight: 750; line-height: 1; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(101, 219, 227, .75); outline-offset: 3px; }
.button-small { min-height: 44px; padding: 0 18px; }
.button-dark { background: var(--ink); color: white; box-shadow: 0 8px 24px rgba(23, 19, 31, .18); }
.button-dark:hover { background: #292230; }
.button-primary { background: var(--violet); color: white; box-shadow: 0 12px 28px rgba(109, 53, 242, .25); }
.button-primary:hover { background: var(--violet-dark); }
.button-outline { border-color: var(--line); background: white; }
.button-outline:hover { border-color: var(--violet); color: var(--violet); }
.button-white { background: white; color: var(--violet-dark); box-shadow: 0 12px 30px rgba(27, 17, 49, .16); }
.menu-button, .mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; padding: 160px 0 48px; background: #f8f7fb; }
.hero-spot { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .58; pointer-events: none; }
.hero-spot-left { width: 360px; height: 360px; left: -190px; top: 120px; background: var(--cyan-soft); }
.hero-spot-right { width: 500px; height: 500px; right: -250px; top: 30px; background: var(--violet-soft); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 58px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--violet); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200, 242, 107, .28); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 600px; margin-bottom: 24px; font-size: clamp(46px, 5vw, 60px); line-height: .98; letter-spacing: -.062em; }
.hero-lead { max-width: 590px; margin-bottom: 30px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 14px; font-weight: 750; }
.text-link span { color: var(--violet); }
.hero-visual { position: relative; padding: 48px 0 50px; }
.app-frame { position: relative; overflow: hidden; border: 1px solid #ddd7e6; border-radius: 18px; background: white; box-shadow: var(--shadow-lg); transform: rotate(1.1deg); }
.frame-bar { height: 48px; padding: 0 15px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; background: #fbfafc; color: #645c70; font-size: 11px; }
.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 8px; height: 8px; border-radius: 50%; background: #ddd6e6; }
.frame-dots span:first-child { background: var(--orange); }
.frame-dots span:nth-child(2) { background: #f4cc69; }
.frame-dots span:last-child { background: #76d399; }
.frame-title { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.mini-logo { display: inline-grid; width: 22px; height: 22px; place-items: center; border-radius: 7px; background: var(--violet); color: white; font-weight: 900; }
.frame-live { justify-self: end; display: flex; align-items: center; gap: 6px; color: #5d7d68; }
.frame-live span { width: 6px; height: 6px; border-radius: 50%; background: #67c486; }
.product-shot { overflow: hidden; background: white; }
.product-shot img { display: block; width: 100%; max-width: none; transform: translateY(-5.7%); }
.hero-shot { aspect-ratio: 2 / 1; }
.hero-shot img { margin-top: 21px; }
.visual-note { position: absolute; z-index: 3; min-width: 168px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.9); border-radius: 13px; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.visual-note b, .visual-note small { display: block; }
.visual-note b { margin-bottom: 3px; font-size: 12px; }
.visual-note small { color: var(--muted); font-size: 9px; }
.note-icon { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: var(--violet-soft); color: var(--violet); font-size: 16px; font-weight: 900; }
.note-links { right: -14px; top: 5px; transform: rotate(-2deg); }
.note-status { left: -24px; bottom: 10px; transform: rotate(-1deg); }
.status-dot { width: 27px; height: 27px; border-radius: 8px; background: var(--lime-soft); position: relative; }
.status-dot::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #618e21; font-weight: 900; }
.format-row { position: relative; z-index: 2; margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-around; gap: 20px; color: #82798f; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.format-row i { width: 4px; height: 4px; border-radius: 50%; background: #cbc5d4; }

.section-intro h2 { margin-bottom: 0; font-size: clamp(36px, 4.3vw, 54px); line-height: 1.06; letter-spacing: -.052em; }
.section-intro p { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.split-intro { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 80px; }
.split-intro p { padding-bottom: 4px; }
.centered-intro { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.centered-intro p { max-width: 650px; margin: 20px auto 0; }
.kicker { margin-bottom: 16px; }

.problem { background: white; }
.problem-grid { margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.problem-card { min-height: 280px; padding: 34px; border-right: 1px solid var(--line); }
.problem-card:last-child { border-right: 0; }
.problem-card-accent { background: var(--violet-soft); }
.card-number { display: block; margin-bottom: 58px; color: var(--violet); font-size: 13px; font-weight: 850; }
.problem-card h3 { max-width: 280px; margin-bottom: 15px; font-size: 20px; line-height: 1.22; letter-spacing: -.025em; }
.problem-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.research-note { width: fit-content; margin: 40px 0 0 auto; display: flex; align-items: center; gap: 15px; }
.research-mark { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-size: 22px; font-weight: 900; }
.research-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.research-note b { color: var(--ink); }

.product { background: var(--canvas); }
.bento-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.feature { position: relative; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: 0 15px 40px rgba(42, 29, 60, .05); }
.feature h3 { margin-bottom: 14px; font-size: 27px; line-height: 1.15; letter-spacing: -.035em; }
.feature p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.feature-copy { padding: 30px 32px 24px; }
.feature-copy.compact { padding-bottom: 10px; }
.feature-topline { min-height: 28px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.feature-index { color: var(--violet); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.availability { padding: 7px 10px; border-radius: 7px; font-size: 9px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.availability.available { color: #507919; background: var(--lime-soft); }
.availability.building { color: #7346cd; background: var(--violet-soft); }
.feature-contracts { min-height: 560px; }
.mini-window { margin: 4px 24px 0; border: 1px solid var(--line); border-bottom: 0; overflow: hidden; background: white; box-shadow: 0 -2px 24px rgba(27, 20, 39, .07); }
.mini-toolbar { height: 38px; padding: 0 12px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); color: #746c80; font-size: 9px; }
.mini-toolbar span:first-child { padding: 6px 9px; background: #f0edf4; color: var(--ink); border-radius: 5px; }
.mini-toolbar i { flex: 1; }
.feature-shot { aspect-ratio: 2.05 / 1; }
.feature-git { min-height: 560px; padding: 30px 32px; background: var(--ink); color: white; }
.feature-git p { color: #bdb6c6; }
.feature-git .feature-index { color: var(--lime); }
.git-flow { position: absolute; inset: auto 30px 34px; padding: 26px 18px; display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid #403747; background: #211b29; }
.git-flow span { padding: 9px 10px; border: 1px solid #4e4458; border-radius: 7px; color: #ddd7e5; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.git-flow span:first-child { border-color: var(--violet); color: #cab8ff; }
.git-flow span:last-child { border-color: #709a3d; color: var(--lime); }
.git-flow i { flex: 1; min-width: 12px; height: 1px; background: #5a5064; position: relative; }
.git-flow i::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid #7d7287; border-right: 1px solid #7d7287; transform: rotate(45deg); }
.feature-ui, .feature-links { min-height: 500px; }
.feature-links { display: flex; flex-direction: column; background: var(--cyan-soft); }
.link-visual { min-height: 245px; margin-top: auto; border-top: 1px solid rgba(67, 126, 132, .14); overflow: hidden; background: white; }
.link-visual img { width: 100%; height: 100%; min-height: 245px; display: block; object-fit: cover; }

.ai-era { background: white; }
.ai-era .container { display: grid; gap: 22px; }
.era-screen { min-height: 680px; padding: 64px; border: 1px solid var(--line); display: grid; position: relative; overflow: hidden; }
.era-screen h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 64px); line-height: 1; letter-spacing: -.058em; }
.era-lead { margin-bottom: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.era-market { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .75fr); align-items: start; gap: 52px; background: var(--canvas); }
.era-market::before { content: ""; position: absolute; width: 390px; height: 390px; right: -180px; top: -220px; border-radius: 50%; background: var(--violet-soft); }
.era-copy, .market-proof, .intent-flow, .context-copy, .diff-card { position: relative; z-index: 1; }
.tool-gap { margin-top: 34px; padding: 20px 22px; border-left: 4px solid var(--violet); background: white; }
.tool-gap b { display: block; margin-bottom: 9px; font-size: 16px; }
.tool-gap p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.market-proof { min-height: 385px; padding: 34px; display: flex; flex-direction: column; background: var(--ink); color: white; box-shadow: var(--shadow-lg); }
.proof-label { margin-bottom: 38px; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.market-stat { max-width: 300px; }
.market-stat strong { display: block; margin-bottom: 14px; color: var(--lime); font-size: 72px; line-height: .9; letter-spacing: -.07em; }
.market-stat span { color: #e1dce6; font-size: 15px; line-height: 1.5; }
.proof-context { margin: 24px 0 0; color: #9f96a9; font-size: 13px; line-height: 1.55; }
.proof-period { margin: auto 0 13px; padding-top: 34px; color: #9f96a9; font-size: 12px; }
.proof-source { width: fit-content; color: white; font-size: 13px; font-weight: 750; }
.proof-source span { margin-left: 4px; color: var(--lime); }
.intent-flow { grid-column: 1 / -1; margin-top: 10px; padding-top: 34px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1.25fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; }
.intent-flow > div { min-height: 118px; padding: 18px; border: 1px solid var(--line); display: flex; flex-direction: column; background: rgba(255,255,255,.72); }
.intent-flow small { margin-bottom: auto; color: #9a92a4; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.intent-flow b { margin: 18px 0 6px; font-size: 16px; }
.intent-flow span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.intent-flow i { align-self: center; color: #aaa1b4; font-style: normal; }
.intent-flow .is-analyst { border-color: var(--violet); background: var(--violet); color: white; box-shadow: 0 14px 35px rgba(109, 53, 242, .2); }
.intent-flow .is-analyst small, .intent-flow .is-analyst span { color: #dcd1fa; }
.intent-flow .is-result { border-color: #badf68; background: var(--lime-soft); }

.era-context { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; gap: 72px; background: #17131f; color: white; }
.era-context::before { content: ""; position: absolute; width: 480px; height: 480px; left: -250px; bottom: -330px; border-radius: 50%; background: var(--violet); opacity: .28; }
.era-context .kicker { color: var(--lime); }
.era-context .era-lead { color: #c9c1cf; }
.context-benefits { margin: 38px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.context-benefits li { padding: 14px 0; border-bottom: 1px solid #37303f; display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; }
.context-benefits li > span { width: 42px; height: 30px; border: 1px solid #51475b; border-radius: 6px; display: grid; place-items: center; color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; font-weight: 900; }
.context-benefits b { display: block; margin-bottom: 5px; font-size: 15px; }
.context-benefits p { margin-bottom: 0; color: #a99fad; font-size: 14px; line-height: 1.6; }
.diff-card { border: 1px solid #4a414f; background: #211b29; box-shadow: 0 28px 70px rgba(0,0,0,.32); transform: rotate(1deg); }
.diff-card-bar { height: 46px; padding: 0 14px; border-bottom: 1px solid #403746; display: flex; align-items: center; gap: 6px; background: #2a2332; }
.diff-card-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #655b6d; }
.diff-card-bar > span:first-child { background: var(--orange); }
.diff-card-bar > span:nth-child(2) { background: var(--lime); }
.diff-card-bar > span:nth-child(3) { background: var(--cyan); }
.diff-card-bar b { margin-left: auto; color: #bdb4c3; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; font-weight: 600; }
.diff-meta { padding: 14px 18px; border-bottom: 1px solid #403746; display: flex; justify-content: space-between; color: #d7d0dc; font-size: 11px; font-weight: 750; }
.diff-meta small { color: var(--lime); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.diff-code { padding: 14px 0; background: #19151f; }
.diff-line { min-height: 34px; padding: 7px 16px; display: grid; grid-template-columns: 28px 1fr; align-items: center; color: #c9c1cf; font-size: 10px; }
.diff-line > span { color: #685f70; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.diff-line code { color: inherit; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; white-space: normal; }
.diff-line.removed { background: rgba(238,109,122,.12); color: #ff9ba5; }
.diff-line.added { background: rgba(200,242,107,.09); color: #d7f397; }
.ai-spark { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--violet); color: white; font-size: 17px; }
.diff-insight { margin: 18px; padding: 17px; border: 1px solid #493d58; display: flex; gap: 13px; align-items: flex-start; background: #2c2436; }
.diff-insight .ai-spark { flex: 0 0 auto; }
.diff-insight b { display: block; margin: 2px 0 6px; font-size: 11px; }
.diff-insight p { margin-bottom: 0; color: #a99fad; font-size: 10px; line-height: 1.55; }
.impact-row { padding: 0 18px 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.impact-row span { padding: 7px 9px; border-radius: 6px; background: #342b3d; color: #b9b0bf; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; }

.delivery { background: var(--canvas); }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.delivery-card { min-height: 430px; padding: 42px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.delivery-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -65px; bottom: -70px; }
.cloud-card { background: var(--cyan-soft); }.cloud-card::after { background: var(--cyan); opacity: .42; }
.enterprise-card { background: var(--violet-soft); }.enterprise-card::after { background: #c5b1ff; opacity: .55; }
.delivery-label { width: fit-content; margin-bottom: 80px; padding: 8px 11px; border: 1px solid rgba(42, 44, 62, .13); border-radius: 7px; background: rgba(255,255,255,.5); font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.delivery-card h3 { max-width: 430px; margin-bottom: 15px; font-size: 30px; line-height: 1.12; letter-spacing: -.038em; }
.delivery-card p { max-width: 460px; color: #5f5d6a; font-size: 16px; line-height: 1.7; }
.delivery-card ul { margin: 24px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; font-size: 15px; font-weight: 700; }
.delivery-card li::before { content: "✓"; margin-right: 9px; color: var(--violet); }

.pricing { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; min-height: 420px; padding: 28px 24px 24px; border: 1px solid var(--line); display: flex; flex-direction: column; background: white; }
.price-name { margin-bottom: 28px; color: var(--violet); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { min-height: 44px; margin-bottom: 10px; font-size: 28px; letter-spacing: -.04em; }
.price-card h3 small { color: var(--muted); font-size: 12px; font-weight: 600; }
.price-card > p { min-height: 60px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.price-card ul { margin: 18px 0 28px; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; list-style: none; color: #4f4858; font-size: 14px; line-height: 1.45; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--violet); font-weight: 900; }
.price-card .button { margin-top: auto; }
.featured-price { border: 2px solid var(--violet); transform: translateY(-8px); box-shadow: 0 18px 45px rgba(92, 50, 177, .13); }
.popular { position: absolute; right: 18px; top: 17px; padding: 6px 8px; border-radius: 6px; background: var(--violet-soft); color: var(--violet); font-size: 8px; font-weight: 900; text-transform: uppercase; }

.faq { background: var(--canvas); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading h2 { margin-bottom: 18px; font-size: 48px; letter-spacing: -.05em; }
.faq-heading p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 84px; padding: 18px 4px; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; cursor: pointer; font-size: 17px; font-weight: 750; }
.accordion-item button i { width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--violet); font-style: normal; font-size: 18px; transition: transform .22s ease; }
.accordion-item.active button i { transform: rotate(45deg); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion-content > div { min-height: 0; overflow: hidden; }
.accordion-content p { margin: 0; padding: 0 52px 26px 4px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.accordion-item.active .accordion-content { grid-template-rows: 1fr; }

.early-access { padding-top: 70px; background: var(--canvas); }
.access-panel { min-height: 480px; padding: 66px 70px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; background: var(--violet); color: white; position: relative; overflow: hidden; }
.access-panel::before { content: "T"; position: absolute; right: -45px; bottom: -120px; color: rgba(255,255,255,.055); font-size: 450px; font-weight: 950; line-height: 1; }
.access-copy, .access-form { position: relative; z-index: 1; }
.access-copy h2 { margin-bottom: 20px; font-size: clamp(38px, 4.2vw, 54px); line-height: 1.02; letter-spacing: -.055em; }
.access-copy p { color: #ddd3fb; font-size: 16px; line-height: 1.7; }
.access-form { padding: 28px; background: white; color: var(--ink); box-shadow: 0 24px 60px rgba(55, 19, 120, .28); }
.access-form label { display: block; margin-bottom: 16px; }
.access-form label > span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 800; }
.access-form label small { color: var(--muted); font-weight: 500; }
.access-form input { width: 100%; height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 9px; background: #fbfafc; color: var(--ink); font-size: 14px; }
.access-form input::placeholder { color: #aaa3b1; }
.access-form .button { width: 100%; margin-top: 2px; background: var(--ink); color: white; }
.form-note { margin: 13px 0 0; color: #8a8293; font-size: 10px; line-height: 1.5; text-align: center; }
.form-note a { color: #6b5f75; text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--violet); }
.form-success, .form-error { margin-top: 14px; padding: 13px; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.form-success { background: var(--lime-soft); color: #4f6f24; }
.form-error { background: #fff0e8; color: #9b3a16; }
.form-success[hidden], .form-error[hidden] { display: none; }
.form-success > span, .form-error > span { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: white; font-weight: 900; }
.form-success b, .form-success small, .form-error b, .form-error small { display: block; }
.form-success b, .form-error b { margin-bottom: 3px; }
.form-success small { color: #6f8155; }
.form-error small { color: #a65b40; }

.site-footer { padding-top: 70px; background: var(--ink); color: white; }
.brand-light .brand-mark { box-shadow: none; }
.footer-main { padding-bottom: 70px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 55px; }
.footer-brand p { max-width: 360px; margin: 22px 0 20px; color: #aaa2b3; font-size: 14px; line-height: 1.7; }
.made-by { color: #756c7e; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.made-by:hover { color: white; }
.footer-links { display: grid; align-content: start; gap: 13px; }
.footer-links b { margin-bottom: 7px; color: #82798b; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.footer-links a { color: #c4bdca; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 24px 0; border-top: 1px solid #352e3d; display: flex; justify-content: space-between; color: #756d7e; font-size: 10px; }
.footer-credit { color: #958d9e; }
.footer-credit:hover { color: white; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #958d9e; }
.footer-bottom-links a:hover { color: white; }

@media (max-width: 1020px) {
  .section { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: 92%; margin: 0 auto; }
  .split-intro { grid-template-columns: 1fr; gap: 25px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card:nth-child(2n) { border-right: 0; }
  .problem-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .feature-git, .feature-links, .feature-ui { min-height: 460px; }
  .era-screen { min-height: 0; padding: 48px; }
  .era-market, .era-context { grid-template-columns: 1fr; gap: 42px; }
  .market-proof { min-height: 330px; }
  .era-context .context-copy { max-width: 720px; }
  .diff-card { width: min(100%, 720px); justify-self: center; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-price { transform: none; }
  .faq-grid { gap: 55px; }
  .access-panel { gap: 45px; padding: 54px 45px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .site-header.scrolled { background: rgba(248,247,251,.98); }
  .nav-wrap { height: 66px; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; display: grid; align-content: center; gap: 5px; background: white; }
  .menu-button span { width: 100%; height: 2px; display: block; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 66px 0 auto; padding: 24px 20px 28px; border-bottom: 1px solid var(--line); display: grid; gap: 22px; background: var(--canvas); transform: translateY(-125%); opacity: 0; transition: transform .25s ease, opacity .2s ease; }
  .mobile-nav.open { transform: translateY(0); opacity: 1; }
  .mobile-nav > a:not(.button) { font-size: 18px; font-weight: 750; }
  .hero { padding: 122px 0 34px; }
  h1 { font-size: clamp(36px, 9.5vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { width: 100%; padding: 54px 0 25px; }
  .app-frame { border-radius: 12px; transform: none; }
  .frame-bar { grid-template-columns: auto 1fr; }
  .frame-title { justify-self: end; }
  .frame-live { display: none; }
  .visual-note { min-width: 142px; padding: 9px 10px; }
  .note-links { right: 0; }
  .note-status { left: 3px; bottom: -8px; }
  .format-row { overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
  .format-row span { white-space: nowrap; }
  .section-intro h2 { font-size: 38px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 34px; }
  .research-note { margin-left: 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-contracts { min-height: 470px; }
  .feature-git, .feature-links, .feature-ui { min-height: 440px; }
  .feature-copy, .feature-git { padding: 25px; }
  .mini-window { margin: 0 12px; }
  .git-flow { inset: auto 18px 22px; padding: 20px 10px; }
  .git-flow span { padding: 7px 6px; font-size: 8px; }
  .era-screen { padding: 34px 25px; }
  .era-screen h2 { font-size: 40px; }
  .era-lead { font-size: 16px; }
  .intent-flow { grid-template-columns: 1fr; }
  .intent-flow i { transform: rotate(90deg); }
  .intent-flow > div { min-height: 105px; }
  .diff-card { transform: none; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-card { min-height: 0; padding: 30px 25px 42px; }
  .delivery-label { margin-bottom: 55px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 380px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-heading { position: static; }
  .faq-heading h2 { font-size: 40px; }
  .access-panel { width: calc(100% - 20px); padding: 44px 20px 20px; grid-template-columns: 1fr; gap: 25px; }
  .access-form { padding: 22px 18px; }
  .footer-main { grid-template-columns: 1.5fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 460px) {
  .brand-name { font-size: 18px; }
  h1 { font-size: clamp(30px, 9.5vw, 42px); }
  .hero-visual { margin-top: -10px; }
  .visual-note { min-width: 130px; }
  .note-status { display: none; }
  .frame-title { font-size: 9px; }
  .problem-card { padding: 28px 22px; }
  .feature h3 { font-size: 24px; }
  .feature-contracts { min-height: 420px; }
  .feature-git, .feature-links, .feature-ui { min-height: 420px; }
  .git-flow span:nth-of-type(2) { display: none; }
  .git-flow i:nth-of-type(2) { display: none; }
  .market-proof { min-height: 350px; padding: 27px 22px; }
  .market-stat strong { font-size: 58px; }
  .diff-card-bar b { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .diff-line { padding-inline: 11px; grid-template-columns: 23px 1fr; font-size: 9px; }
  .delivery-card h3 { font-size: 27px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .footer-bottom-links { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
