:root {
  --bg: #08090d;
  --bg-soft: #0d0f15;
  --panel: #11131a;
  --panel-2: #151821;
  --line: rgba(255, 255, 255, .105);
  --line-strong: rgba(255, 255, 255, .18);
  --text: #f5f3ed;
  --muted: #9296a3;
  --muted-2: #646875;
  --orange: #ff6b35;
  --orange-hot: #ff4d12;
  --violet: #8d75ff;
  --cyan: #5bd8ff;
  --green: #92f7bb;
  --display: "Manrope", Inter, system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shadow: 0 26px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--display); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
button, textarea { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.section-shell { width: min(100% - 48px, 1280px); margin-inline: auto; }
.skip-link { position: fixed; left: 18px; top: -60px; z-index: 100; padding: 11px 15px; background: var(--text); color: var(--bg); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 14px; }
.ambient { position: fixed; width: 520px; height: 520px; border-radius: 50%; filter: blur(130px); opacity: .085; pointer-events: none; z-index: -1; }
.ambient-one { background: var(--violet); top: 4vh; right: -200px; }
.ambient-two { background: var(--orange); top: 110vh; left: -300px; }

.site-header { width: min(calc(100% - 48px), 1280px); height: 74px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; background: rgba(8, 9, 13, .76); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: -.035em; }
.brand b { color: var(--orange); }
.brand-mark { width: 34px; height: 34px; border: 1px solid var(--line-strong); background: linear-gradient(145deg, #1b1e27, #0d0f14); display: grid; place-items: center; position: relative; font: 500 10px/1 var(--mono); box-shadow: inset 0 0 18px rgba(255, 107, 53, .05); }
.brand-mark i { position: absolute; width: 5px; height: 5px; top: 5px; right: 5px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 9px var(--orange); }
nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; color: #aeb1bb; font-size: 11px; font-weight: 700; transition: color .2s; }
nav a:hover { color: white; }
.nav-cta { min-height: 39px; padding: 0 14px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.04); color: white; }
.nav-cta:hover { border-color: rgba(255, 107, 53, .6); background: rgba(255, 107, 53, .08); }
.nav-cta strong { color: var(--orange); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1px; background: white; transition: transform .2s, top .2s; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.hero { min-height: calc(100svh - 74px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); gap: clamp(50px, 7vw, 110px); align-items: center; padding-top: 70px; padding-bottom: 90px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #a7aab4; font: 500 9px/1.4 var(--mono); letter-spacing: .11em; text-transform: uppercase; }
.eyebrow > span:not(.status-dot) { width: 26px; height: 26px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--orange); letter-spacing: 0; font-size: 8px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,53,.12), 0 0 18px rgba(255,107,53,.55); }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin: 27px 0 27px; font-size: clamp(50px, 5.25vw, 80px); line-height: 1.02; letter-spacing: -.067em; max-width: 780px; }
h1 em, .section-heading h2 em, .demo-heading h2 em, .faq-intro h2 em { font-style: normal; color: transparent; background: linear-gradient(110deg, #ff8054 0%, var(--orange) 40%, #ffb06c 100%); -webkit-background-clip: text; background-clip: text; }
.hero-lede { max-width: 640px; margin-bottom: 30px; color: #a6a9b4; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.68; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.button { min-height: 50px; padding: 0 20px; border: 0; text-decoration: none; display: inline-flex; justify-content: center; align-items: center; gap: 20px; color: white; font-size: 11px; font-weight: 800; cursor: pointer; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--orange), var(--orange-hot)); box-shadow: 0 10px 28px rgba(255, 77, 18, .2), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 14px 38px rgba(255, 77, 18, .3), inset 0 1px rgba(255,255,255,.25); }
.button-secondary { background: rgba(255,255,255,.025); border: 1px solid var(--line-strong); }
.button-secondary:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.05); }
.button-large { min-height: 57px; padding-inline: 27px; font-size: 12px; }
.button:focus-visible, a:focus-visible, button:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.proof-row { list-style: none; display: flex; flex-wrap: wrap; gap: 23px; padding: 0; margin: 29px 0 0; color: #818591; font: 400 9px/1 var(--mono); text-transform: uppercase; }
.proof-row li { display: flex; align-items: center; gap: 6px; }
.proof-row span { color: var(--green); }

.hero-product { position: relative; min-width: 0; perspective: 1100px; }
.hero-product::before { content: ""; position: absolute; width: 75%; height: 70%; left: 13%; top: 14%; background: radial-gradient(circle, rgba(141,117,255,.27), transparent 67%); filter: blur(28px); }
.mock-window { position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.16); background: rgba(13,15,21,.92); box-shadow: var(--shadow); transform: rotateY(-2deg) rotateX(1deg); overflow: hidden; }
.mock-window::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.055), transparent 24%); }
.window-top { height: 39px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; color: #555a67; font: 400 7px var(--mono); letter-spacing: .08em; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #2e323c; }
.window-top b { justify-self: end; color: var(--green); font-size: 7px; }
.mock-layout { display: grid; grid-template-columns: 56px 1fr; min-height: 475px; }
.mock-sidebar { border-right: 1px solid var(--line); display: flex; align-items: center; flex-direction: column; gap: 21px; padding-top: 15px; }
.mock-logo { width: 28px; height: 28px; display: grid; place-items: center; background: var(--orange); color: white; font: 500 8px var(--mono); margin-bottom: 19px; }
.mock-sidebar > i { width: 13px; height: 13px; border: 1px solid #363b47; border-radius: 3px; position: relative; }
.mock-sidebar > i.active { border-color: var(--orange); background: rgba(255,107,53,.12); }
.mock-sidebar > i.active::after { content: ""; position: absolute; left: -18px; top: 2px; height: 7px; width: 2px; background: var(--orange); }
.mock-main { padding: clamp(22px, 3vw, 38px); min-width: 0; }
.mock-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.mock-heading small, .mock-insight small, .mock-grid small { color: #5f6471; font: 500 7px var(--mono); letter-spacing: .09em; }
.mock-heading h2 { font-size: clamp(23px, 2.4vw, 34px); letter-spacing: -.055em; margin: 6px 0 0; }
.mock-heading > span { padding: 6px 8px; background: rgba(146,247,187,.07); color: var(--green); font: 500 7px var(--mono); }
.mock-progress { height: 2px; background: #252934; margin: 20px 0 25px; }
.mock-progress i { display: block; width: 64%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--violet)); box-shadow: 0 0 12px rgba(141,117,255,.55); }
.mock-insight { padding: 20px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(141,117,255,.08), rgba(255,107,53,.025)); }
.mock-insight p { margin: 12px 0 16px; font-size: 13px; line-height: 1.5; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-row span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.08); color: #858995; font: 400 7px var(--mono); }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 13px; gap: 8px; }
.mock-grid article { padding: 15px; background: rgba(255,255,255,.025); border: 1px solid var(--line); display: grid; gap: 6px; }
.mock-grid strong { font-size: 15px; }
.mock-grid article > span { color: #636774; font: 400 7px var(--mono); }
.mock-next { margin-top: 13px; min-height: 49px; padding: 0 14px; display: flex; justify-content: space-between; align-items: center; gap: 15px; background: rgba(255,107,53,.075); border: 1px solid rgba(255,107,53,.2); }
.mock-next span { display: flex; gap: 7px; color: var(--orange); font: 500 7px var(--mono); }
.mock-next span i { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); }
.mock-next b { font-size: 9px; }
.float-card { position: absolute; z-index: 3; border: 1px solid var(--line-strong); background: rgba(16,18,24,.96); backdrop-filter: blur(12px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.float-card-one { left: -39px; bottom: 52px; padding: 13px 17px; display: flex; align-items: center; gap: 12px; animation: bob 4s ease-in-out infinite; }
.float-card-one > span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(146,247,187,.1); color: var(--green); font-size: 10px; }
.float-card-one div { display: grid; gap: 4px; }
.float-card-one b { font-size: 10px; }
.float-card-one small, .float-card-two small { color: #707581; font: 400 7px var(--mono); }
.float-card-two { right: -18px; top: 64px; padding: 13px 15px; display: grid; gap: 4px; animation: bob 5s ease-in-out infinite reverse; }
.float-card-two b { color: var(--cyan); font-size: 18px; }
@keyframes bob { 50% { transform: translateY(-9px); } }

.workflow-section, .transformation-section, .demo-section, .value-section, .faq-section { padding-top: clamp(105px, 11vw, 160px); padding-bottom: clamp(105px, 11vw, 160px); border-top: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .demo-heading h2, .faq-intro h2 { margin: 21px 0 18px; font-size: clamp(42px, 5vw, 68px); line-height: 1.03; letter-spacing: -.06em; }
.section-heading > p, .demo-heading > p, .faq-intro > p { color: var(--muted); font-size: 15px; line-height: 1.7; }

.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.process li { min-height: 244px; padding: 21px; border-right: 1px solid var(--line); position: relative; display: grid; grid-template-rows: auto 1fr auto; transition: background .25s, border-color .25s; }
.process li:last-child { border-right: 0; }
.process li:hover, .process li.active { background: linear-gradient(145deg, rgba(255,107,53,.1), rgba(255,255,255,.018)); }
.process li.active { border-top: 2px solid var(--orange); }
.process li > span { color: #515561; font: 500 8px var(--mono); }
.process li > i { align-self: center; font-size: 26px; font-style: normal; color: #515561; transition: color .25s, transform .25s; }
.process li:hover > i, .process li.active > i { color: var(--orange); transform: translateY(-3px); }
.process li div { display: grid; gap: 8px; }
.process li b { font-size: 14px; }
.process li p { margin: 0; color: #747985; font-size: 11px; line-height: 1.55; }
.audience-strip { margin-top: 80px; display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); background: var(--bg-soft); }
.audience-strip > div { padding: 42px; border-right: 1px solid var(--line); background: linear-gradient(140deg, rgba(141,117,255,.08), transparent); }
.audience-strip > div > span, .benefit-intro > span { color: var(--violet); font: 500 8px var(--mono); letter-spacing: .1em; }
.audience-strip h3 { font-size: clamp(26px, 3vw, 39px); line-height: 1.08; letter-spacing: -.05em; margin: 22px 0 0; }
.audience-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.audience-strip li { padding: 26px; display: flex; gap: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-strip li:nth-child(even) { border-right: 0; }
.audience-strip li:nth-last-child(-n+2) { border-bottom: 0; }
.audience-strip li > i { color: #4b4f5a; font: 400 8px var(--mono); font-style: normal; }
.audience-strip li span { display: grid; gap: 7px; }
.audience-strip li b { font-size: 12px; }
.audience-strip li small { color: #747984; font-size: 10px; line-height: 1.5; }

.transformation-section { position: relative; }
.transformation-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); z-index: -1; }
.before-after { display: grid; grid-template-columns: 1fr 70px 1.15fr; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.before-card, .after-card { padding: clamp(28px, 4vw, 50px); border: 1px solid var(--line-strong); }
.before-card { background: rgba(255,255,255,.015); }
.after-card { background: linear-gradient(140deg, rgba(141,117,255,.1), rgba(17,19,26,.95)); border-color: rgba(141,117,255,.28); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.card-label { display: flex; align-items: center; justify-content: space-between; }
.card-label span { color: #6d727e; font: 500 8px var(--mono); letter-spacing: .1em; }
.after-card .card-label span { color: var(--violet); }
.card-label i { color: #555965; font: 400 7px var(--mono); font-style: normal; }
.before-card blockquote { margin: 45px 0; font-size: clamp(25px, 3vw, 37px); line-height: 1.25; letter-spacing: -.04em; color: #a0a3ad; }
.before-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; color: #666a75; font: 400 9px var(--mono); }
.before-card li::before { content: "×"; color: #a65a50; margin-right: 9px; }
.transform-arrow { display: grid; place-items: center; align-content: center; gap: 12px; }
.transform-arrow span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: white; font: 500 8px var(--mono); box-shadow: 0 0 28px rgba(255,107,53,.35); }
.transform-arrow i { color: #5f6470; font-style: normal; }
.after-card h3 { font-size: clamp(36px, 4vw, 54px); letter-spacing: -.06em; margin: 35px 0 10px; }
.after-card > p { color: #a6aab5; font-size: 13px; line-height: 1.65; }
.after-card dl { margin: 30px 0 0; border-top: 1px solid var(--line); }
.after-card dl div { padding: 12px 0; display: grid; grid-template-columns: 105px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.after-card dt { color: #666a76; font: 400 8px var(--mono); text-transform: uppercase; }
.after-card dd { margin: 0; font-size: 10px; }

.demo-section { width: 100%; max-width: none; padding-left: max(24px, calc((100% - 1280px) / 2)); padding-right: max(24px, calc((100% - 1280px) / 2)); background: #0a0b10; }
.demo-heading { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 80px; max-width: 1280px; margin: 0 auto 58px; }
.demo-heading > p { margin-bottom: 13px; max-width: 500px; }
.demo-app { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; min-height: 650px; border: 1px solid var(--line-strong); background: var(--panel); box-shadow: var(--shadow); }
.demo-input-panel { border-right: 1px solid var(--line); padding: clamp(28px, 4vw, 47px); }
.panel-top { display: flex; justify-content: space-between; align-items: center; color: #7c818d; font: 500 8px var(--mono); letter-spacing: .08em; }
.panel-top span { display: flex; align-items: center; gap: 8px; }
.panel-top span i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 9px var(--orange); }
.panel-top small { padding: 5px 7px; background: rgba(255,255,255,.04); color: #555a65; }
#forge-form { margin-top: 42px; }
#forge-form label, #forge-form legend { display: block; color: #c4c6ce; font-size: 11px; font-weight: 700; margin-bottom: 11px; }
textarea { width: 100%; min-height: 150px; resize: vertical; border: 1px solid var(--line-strong); border-radius: 0; background: #0b0d12; color: white; padding: 17px; font-size: 14px; line-height: 1.6; transition: border-color .2s, box-shadow .2s; }
textarea:focus { border-color: rgba(141,117,255,.6); box-shadow: 0 0 0 4px rgba(141,117,255,.07); }
.input-meta { margin-top: 8px; display: flex; justify-content: space-between; gap: 15px; color: #535864; font: 400 8px/1.4 var(--mono); }
#forge-form fieldset { border: 0; padding: 0; margin: 31px 0 0; }
#forge-form legend { padding: 0; }
.example-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { min-height: 32px; padding: 0 10px; border: 1px solid var(--line); background: transparent; color: #767b87; font-size: 9px; cursor: pointer; transition: border .2s, color .2s, background .2s; }
.chip:hover, .chip.active { border-color: rgba(141,117,255,.5); color: white; background: rgba(141,117,255,.09); }
.forge-button { width: 100%; justify-content: space-between; margin-top: 28px; }
.forge-button i { font-style: normal; font-size: 18px; }
.forge-button:disabled { opacity: .55; cursor: wait; }
.privacy-note { display: flex; justify-content: center; gap: 7px; color: #595e69; font: 400 8px var(--mono); margin: 17px 0 0; }
.privacy-note span { color: var(--green); }
.demo-output-panel { padding: clamp(28px, 4vw, 47px); min-width: 0; display: grid; background: linear-gradient(145deg, rgba(141,117,255,.035), transparent 45%); }
.demo-empty { max-width: 430px; align-self: center; justify-self: center; text-align: center; }
.idle-orbit { width: 132px; height: 132px; margin: 0 auto 32px; border: 1px solid #2d313b; border-radius: 50%; display: grid; place-items: center; position: relative; }
.idle-orbit::before, .idle-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.045); border-radius: 50%; }
.idle-orbit::before { inset: -18px; }
.idle-orbit::after { inset: 20px; }
.idle-orbit i { width: 44px; height: 44px; display: grid; place-items: center; background: #181b23; color: #777c88; font: 500 9px var(--mono); font-style: normal; }
.idle-orbit span { position: absolute; top: 8px; left: 24px; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 15px var(--violet); animation: orbit-dot 6s linear infinite; transform-origin: 42px 57px; }
@keyframes orbit-dot { to { transform: rotate(360deg); } }
.demo-empty h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.04em; }
.demo-empty p { color: #6f7480; font-size: 11px; line-height: 1.7; }
.demo-processing { align-self: center; width: min(100%, 520px); justify-self: center; }
.processing-head { display: flex; justify-content: space-between; font: 500 8px var(--mono); letter-spacing: .08em; color: #737884; }
.processing-head b { color: var(--orange); }
.processing-bar { height: 2px; background: #242832; margin: 13px 0 29px; }
.processing-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--violet)); transition: width .35s ease; }
.demo-processing ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.demo-processing li { min-height: 68px; padding: 0 17px; display: grid; grid-template-columns: 28px 1fr 12px; gap: 12px; align-items: center; border: 1px solid var(--line); color: #555a66; opacity: .5; transition: opacity .2s, border-color .2s, background .2s; }
.demo-processing li.active { opacity: 1; border-color: rgba(255,107,53,.4); background: rgba(255,107,53,.045); }
.demo-processing li.done { opacity: .8; }
.demo-processing li > span { font: 500 8px var(--mono); }
.demo-processing li p { margin: 0; display: grid; gap: 4px; }
.demo-processing li b { color: #d5d6dc; font-size: 10px; }
.demo-processing li small { font: 400 8px var(--mono); }
.demo-processing li > i { width: 7px; height: 7px; border-radius: 50%; background: #343842; }
.demo-processing li.active > i { background: var(--orange); box-shadow: 0 0 11px var(--orange); }
.demo-processing li.done > i { background: var(--green); }
.demo-result { align-self: center; min-width: 0; }
.result-header { display: flex; justify-content: space-between; align-items: center; color: #6a6f7b; font: 500 8px var(--mono); letter-spacing: .08em; }
.result-header span { display: flex; align-items: center; gap: 7px; }
.result-header span i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 9px var(--green); }
.result-header b { color: var(--violet); }
.result-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 28px 0 18px; }
.result-title small, .analysis-grid small { color: #626774; font: 500 7px var(--mono); letter-spacing: .09em; }
.result-title h3 { margin: 5px 0 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.06em; }
.result-title > span { padding: 7px 9px; background: rgba(146,247,187,.07); color: var(--green); font: 500 7px var(--mono); }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.analysis-grid article { padding: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-width: 0; }
.analysis-grid article.wide { grid-column: 1 / -1; }
.analysis-grid p { margin: 8px 0 0; color: #b6b9c2; font-size: 9px; line-height: 1.55; }
.analysis-grid ul { margin: 8px 0 0; padding: 0; list-style: none; display: grid; gap: 5px; }
.analysis-grid li { color: #a4a8b2; font-size: 8px; }
.analysis-grid li::before { content: "✓"; color: var(--green); margin-right: 7px; }
.result-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.text-button { border: 0; background: transparent; color: #777c88; font-size: 9px; cursor: pointer; padding: 12px 0; }
.text-button:hover { color: white; }
.result-disclaimer { text-align: right; color: #555a66; font: 400 7px var(--mono); margin: 10px 0 0; }

.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.tool-card { min-height: 250px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.tool-card:hover { background: rgba(255,255,255,.028); transform: translateY(-3px); }
.tool-card.featured { background: linear-gradient(145deg, rgba(255,107,53,.1), transparent); }
.tool-card.dashboard { grid-column: span 2; background: linear-gradient(145deg, rgba(141,117,255,.09), transparent); }
.tool-card > span { color: #50545f; font: 500 8px var(--mono); }
.tool-card > i { position: absolute; right: 22px; top: 20px; color: #535866; font-size: 20px; font-style: normal; }
.tool-card.featured > i { color: var(--orange); }
.tool-card h3 { margin: auto 0 9px; font-size: 15px; }
.tool-card p { color: #777c88; font-size: 10px; line-height: 1.6; margin: 0; max-width: 260px; }
.mini-chart { position: absolute; right: 24px; bottom: 24px; width: 42%; height: 75px; display: flex; gap: 7px; align-items: end; border-bottom: 1px solid var(--line); }
.mini-chart i { flex: 1; background: linear-gradient(to top, rgba(141,117,255,.25), var(--violet)); opacity: .7; }
.mini-chart i:nth-child(1) { height: 25%; }.mini-chart i:nth-child(2) { height: 42%; }.mini-chart i:nth-child(3) { height: 36%; }.mini-chart i:nth-child(4) { height: 68%; }.mini-chart i:nth-child(5) { height: 92%; }
.benefit-grid { margin-top: 75px; display: grid; grid-template-columns: 1.05fr repeat(3, 1fr); border: 1px solid var(--line); }
.benefit-grid > * { padding: 32px; border-right: 1px solid var(--line); }
.benefit-grid > *:last-child { border-right: 0; }
.benefit-intro { background: linear-gradient(145deg, rgba(141,117,255,.09), transparent); }
.benefit-intro h3 { margin: 16px 0 0; font-size: 27px; line-height: 1.08; letter-spacing: -.05em; }
.benefit-grid article > i { color: #555a66; font: 400 8px var(--mono); font-style: normal; }
.benefit-grid h4 { margin: 48px 0 9px; font-size: 12px; }
.benefit-grid article p { color: #737884; font-size: 9px; line-height: 1.6; margin: 0; }
.included-band { margin-top: 22px; padding: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; background: #f0eee8; color: #111218; }
.included-band > div small { font: 500 8px var(--mono); letter-spacing: .1em; color: #77766f; }
.included-band h3 { margin: 17px 0 0; font-size: clamp(25px, 3vw, 37px); line-height: 1.1; letter-spacing: -.05em; }
.included-band ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 25px; }
.included-band li { display: flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 700; }
.included-band li span { color: #248961; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 130px); }
.faq-intro { position: sticky; top: 115px; align-self: start; }
.faq-intro > p { max-width: 430px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; min-height: 83px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 13px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 18px; height: 18px; position: relative; flex: 0 0 auto; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; background: #777c88; transition: transform .2s; }
.faq-list summary i::before { width: 12px; height: 1px; left: 3px; top: 8px; }
.faq-list summary i::after { width: 1px; height: 12px; left: 8px; top: 3px; }
.faq-list details[open] summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary { color: var(--orange); }
.faq-list details p { color: #888d99; font-size: 11px; line-height: 1.75; max-width: 620px; margin: -4px 45px 27px 0; }

.final-cta { padding-top: 20px; padding-bottom: 120px; }
.cta-card { min-height: 600px; padding: clamp(45px, 8vw, 100px); border: 1px solid var(--line-strong); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 110%, rgba(255,107,53,.18), transparent 48%), linear-gradient(145deg, rgba(141,117,255,.07), transparent 55%); }
.cta-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, black, transparent 75%); }
.cta-glow { position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,107,53,.12); border-radius: 50%; box-shadow: 0 0 90px rgba(255,107,53,.08), inset 0 0 90px rgba(141,117,255,.05); }
.cta-card > *:not(.cta-glow) { position: relative; z-index: 2; }
.cta-card h2 { margin: 26px 0 20px; font-size: clamp(45px, 6vw, 80px); line-height: .98; letter-spacing: -.07em; }
.cta-card > p { color: #999da9; max-width: 650px; line-height: 1.7; font-size: 14px; }
.price-row { margin: 22px 0 21px; min-width: min(100%, 360px); padding: 12px 15px; border: 1px solid var(--line); background: rgba(0,0,0,.18); display: grid; grid-template-columns: 1fr auto; align-items: center; text-align: left; }
.price-row span { font-size: 10px; font-weight: 700; }
.price-row strong { grid-row: span 2; font-size: 25px; color: var(--orange); }
.price-row small { color: #5f6470; font: 400 7px var(--mono); margin-top: 3px; }
.cta-card > ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; padding: 0; margin: 23px 0 0; color: #676c77; font: 400 8px var(--mono); text-transform: uppercase; }
.cta-card > ul li::before { content: "✓"; color: var(--green); margin-right: 6px; }

footer { min-height: 120px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #5e626e; font: 400 8px var(--mono); }
footer p { margin: 0; }
footer > div { display: flex; gap: 23px; }
footer > div a { color: #878b96; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  nav { gap: 18px; }
  nav > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-copy { max-width: 800px; }
  .hero-product { width: min(100%, 760px); margin: 0 auto; }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process li { border-bottom: 1px solid var(--line); }
  .process li:nth-child(3) { border-right: 0; }
  .process li:nth-child(n+4) { border-bottom: 0; }
  .process li:last-child { border-right: 1px solid var(--line); }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .tool-card.dashboard { grid-column: span 3; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid > *:nth-child(2) { border-right: 0; }
  .benefit-grid > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .demo-app { grid-template-columns: 1fr; }
  .demo-input-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .demo-output-panel { min-height: 650px; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 30px, 1280px); }
  .site-header { width: calc(100% - 30px); height: 68px; }
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 67px; left: 0; right: 0; padding: 13px; background: #0d0f15; border: 1px solid var(--line-strong); box-shadow: 0 20px 50px rgba(0,0,0,.45); flex-direction: column; align-items: stretch; gap: 0; }
  nav.open { display: flex; }
  nav > a:not(.nav-cta) { display: block; padding: 15px 10px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 10px; justify-content: center; }
  .hero { padding-top: 70px; padding-bottom: 80px; gap: 65px; }
  h1 { font-size: clamp(45px, 13.7vw, 66px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .proof-row { gap: 13px; font-size: 7px; }
  .mock-layout { grid-template-columns: 40px 1fr; min-height: 420px; }
  .mock-sidebar { gap: 17px; }
  .mock-logo { width: 23px; height: 23px; }
  .mock-sidebar > i { width: 11px; height: 11px; }
  .mock-sidebar > i.active::after { left: -14px; }
  .mock-main { padding: 18px 14px; }
  .mock-heading h2 { font-size: 22px; }
  .mock-insight { padding: 15px; }
  .mock-insight p { font-size: 11px; }
  .tag-row span:nth-child(3) { display: none; }
  .mock-grid { grid-template-columns: 1fr 1fr; }
  .mock-grid article:last-child { display: none; }
  .mock-next b { font-size: 8px; }
  .float-card-one { left: -7px; bottom: -30px; }
  .float-card-two { right: -5px; top: -35px; }
  .section-heading h2, .demo-heading h2, .faq-intro h2 { font-size: 42px; }
  .process { grid-template-columns: 1fr; }
  .process li { min-height: 170px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .process li:last-child { border-bottom: 0 !important; }
  .audience-strip { grid-template-columns: 1fr; margin-top: 55px; }
  .audience-strip > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; }
  .audience-strip ul { grid-template-columns: 1fr; }
  .audience-strip li { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .audience-strip li:last-child { border-bottom: 0 !important; }
  .before-after { grid-template-columns: 1fr; }
  .transform-arrow { height: 70px; grid-template-columns: auto auto; }
  .transform-arrow i { transform: rotate(90deg); }
  .demo-section { padding-left: 15px; padding-right: 15px; }
  .demo-heading { grid-template-columns: 1fr; gap: 0; }
  .demo-app { min-height: 0; }
  .demo-input-panel, .demo-output-panel { padding: 27px 20px; }
  .demo-output-panel { min-height: 590px; }
  .result-title { align-items: flex-start; flex-direction: column; }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-grid article.wide { grid-column: auto; }
  .result-actions { align-items: stretch; flex-direction: column-reverse; }
  .result-actions .button { width: 100%; }
  .result-disclaimer { text-align: center; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card.dashboard { grid-column: auto; min-height: 330px; }
  .mini-chart { width: calc(100% - 48px); }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid > *:last-child { border-bottom: 0; }
  .included-band { grid-template-columns: 1fr; gap: 32px; }
  .included-band ul { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .faq-list summary { font-size: 12px; }
  .cta-card { padding: 55px 21px; min-height: 610px; }
  .cta-card h2 { font-size: 48px; }
  .button-large { width: 100%; }
  footer { align-items: flex-start; flex-direction: column; padding-top: 35px; padding-bottom: 35px; }
  footer > div { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
