:root {
  --ivory: #fdfbf7;
  --paper: #f4efea;
  --ink: #1e293b;
  --muted: #617080;
  --azure: #007fff;
  --azure-dark: #0056b3;
  --pale-blue: #e0f0ff;
  --line: rgba(30, 41, 59, .12);
  --shadow: 0 18px 35px rgba(28, 43, 57, .13), 0 3px 7px rgba(28, 43, 57, .08);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ivory: #111923;
  --paper: #192532;
  --ink: #edf5fb;
  --muted: #aab9c5;
  --azure: #42a8ff;
  --azure-dark: #1879c5;
  --pale-blue: #193b5b;
  --line: rgba(218, 235, 247, .16);
  --shadow: 0 18px 35px rgba(0, 0, 0, .28), 0 3px 7px rgba(0, 0, 0, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.55; }
body::before { position: fixed; z-index: -1; inset: 0; pointer-events: none; content: ""; opacity: .45; background-image: linear-gradient(115deg, rgba(255,255,255,.7), transparent 48%), repeating-linear-gradient(0deg, rgba(30,41,59,.015) 0, rgba(30,41,59,.015) 1px, transparent 1px, transparent 4px); }
:root[data-theme="dark"] body::before { opacity: .2; background-image: linear-gradient(115deg, rgba(93, 173, 233, .12), transparent 48%), repeating-linear-gradient(0deg, rgba(218,235,247,.018) 0, rgba(218,235,247,.018) 1px, transparent 1px, transparent 4px); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(0,127,255,.45); outline-offset: 4px; }
.page-shell { overflow: hidden; }
.site-header, .section-grid, .site-footer, .proof-strip { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }
.site-header { display: flex; align-items: center; gap: 32px; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 700 20px/1 "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.brand > span:last-child > span { color: var(--azure); }
.brand-mark { display: inline-flex; align-items: end; gap: 3px; width: 27px; height: 27px; padding: 5px 4px; border-radius: 7px; background: var(--azure); box-shadow: inset 0 1px 2px rgba(255,255,255,.6), 0 3px 0 var(--azure-dark), 0 5px 8px rgba(0,127,255,.22); }
.brand-mark span { display: block; width: 4px; background: white; border-radius: 2px; opacity: .9; }.brand-mark span:nth-child(1) { height: 8px; }.brand-mark span:nth-child(2) { height: 14px; }.brand-mark span:nth-child(3) { height: 10px; }
.main-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; color: var(--muted); font-size: 14px; font-weight: 600; }.main-nav a { transition: color .2s ease; }.main-nav a:hover, .text-link:hover { color: var(--azure); }
.theme-toggle { display: grid; place-items: center; width: 39px; height: 39px; padding: 0; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: var(--paper); box-shadow: inset 0 1px 2px rgba(255,255,255,.7), 0 3px 7px rgba(30,41,59,.1); cursor: pointer; transition: transform .16s ease, background .2s ease, color .2s ease; }.theme-toggle:hover { color: var(--azure); transform: translateY(-2px); }.theme-toggle:active { transform: translateY(1px); }.theme-icon { grid-area: 1 / 1; font-size: 23px; line-height: 1; }.theme-icon-moon { display: none; }.theme-icon-sun { display: block; } :root[data-theme="dark"] .theme-icon-sun { display: none; } :root[data-theme="dark"] .theme-icon-moon { display: block; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 9px; font-weight: 700; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }.button:hover { transform: translateY(-2px); }.button:active { transform: translateY(4px); }
.button-primary { color: white; background: linear-gradient(180deg, #1592ff, var(--azure)); box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 6px 0 var(--azure-dark), 0 10px 15px rgba(0,86,179,.19); }.button-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 8px 0 var(--azure-dark), 0 14px 18px rgba(0,86,179,.22); }.button-primary:active { box-shadow: inset 0 2px 4px rgba(0,0,0,.18), 0 2px 0 var(--azure-dark), 0 5px 9px rgba(0,86,179,.17); }
.button-small { min-height: 39px; padding: 0 16px; font-size: 13px; }.button-large { min-height: 52px; padding: 0 22px; font-size: 14px; }.button-quiet { color: var(--ink); background: rgba(255,255,255,.52); box-shadow: inset 0 1px 2px white, 0 3px 9px rgba(30,41,59,.09); }.button-quiet:hover { background: white; }
:root[data-theme="dark"] .button-quiet { background: rgba(255,255,255,.08); box-shadow: inset 0 1px 2px rgba(255,255,255,.14), 0 3px 9px rgba(0,0,0,.2); }
:root[data-theme="dark"] .button-quiet:hover { background: rgba(255,255,255,.14); }
.hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: 78px; min-height: 625px; padding: 58px 0 86px; }.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--azure-dark); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #43c27b; box-shadow: 0 0 0 3px rgba(67,194,123,.15); }.hero h1, h2 { margin: 0; font: 700 clamp(48px, 5.3vw, 76px)/.97 "Space Grotesk", sans-serif; letter-spacing: -.065em; }.hero h1 em, h2 em { color: var(--azure); font-style: normal; }.hero-lede { max-width: 480px; margin: 26px 0 30px; color: var(--muted); font-size: 18px; line-height: 1.6; }.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; }.trust-line { display: flex; align-items: center; gap: 8px; margin-top: 27px; color: #7c8792; font-size: 12px; }.trust-line strong { color: var(--ink); }.mini-led, .led { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--azure); box-shadow: 0 0 7px rgba(0,127,255,.65); }
.console-wrap { position: relative; padding: 17px 0 34px 16px; }.console-shadow { position: absolute; right: -10px; bottom: 10px; width: 87%; height: 70%; border-radius: 18px; background: rgba(0,91,162,.18); filter: blur(25px); }.console { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.55); border-radius: 15px; background: #1a2735; box-shadow: 0 24px 22px rgba(30,41,59,.15), 0 3px 0 #bdc5cc, 0 5px 0 #929da7; }.console-topbar { display: flex; align-items: center; height: 48px; padding: 0 17px; color: #a9b5bf; border-bottom: 1px solid rgba(255,255,255,.08); background: linear-gradient(#344350, #253440); font-size: 11px; }.window-lights { display: flex; gap: 6px; margin-right: 18px; }.window-lights i { width: 8px; height: 8px; border-radius: 50%; background: #f28c78; }.window-lights i:nth-child(2) { background: #f0c86a; }.window-lights i:nth-child(3) { background: #64ce91; }.console-title { letter-spacing: .04em; }.terminal-icon { color: #5aaeff; font-size: 18px; }.live-pill { display: flex; align-items: center; gap: 7px; margin-left: auto; padding: 5px 8px; color: #8ce0af; border: 1px solid rgba(140,224,175,.25); border-radius: 5px; font-size: 9px; font-weight: 700; letter-spacing: .1em; }.console-body { padding: 25px 27px 18px; }.prompt-row { display: flex; align-items: center; gap: 11px; color: white; font: 500 18px/1.3 "Space Grotesk", sans-serif; }.prompt-sign { color: #53adff; }.prompt-caret { width: 2px; height: 20px; background: #53adff; animation: blink 1s infinite; }.console-rule { height: 1px; margin: 25px 0 20px; background: rgba(255,255,255,.12); }.activity-label { display: flex; align-items: center; gap: 9px; color: #75bfff; font-size: 10px; font-weight: 700; letter-spacing: .12em; }.activity-time { margin-left: auto; color: #6e808e; font-weight: 500; }.spinner { width: 10px; height: 10px; border: 2px solid rgba(117,191,255,.25); border-top-color: #75bfff; border-radius: 50%; animation: spin .8s linear infinite; }.log-list { display: grid; gap: 11px; margin-top: 17px; color: #d6e0e7; font-size: 12px; }.log-item { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; }.log-icon { color: #65ce93; font-weight: 700; }.log-item.is-active .log-icon { color: #6ebeff; animation: pulse 1.2s infinite; }.log-item code { color: #8295a4; font-size: 10px; }.console-footer { display: flex; justify-content: space-between; margin-top: 29px; padding-top: 14px; color: #7e929f; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }.console-footer .status-dot { margin-right: 5px; }.spark { color: #ffd56a; font-size: 13px; }.float-tag { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.8); border-radius: 8px; background: rgba(255,255,255,.91); box-shadow: 0 9px 17px rgba(30,41,59,.14), inset 0 1px 1px white; font-size: 10px; }.float-tag strong, .float-tag small { display: block; }.float-tag small { color: #85909a; margin-top: 2px; }.tag-one { top: 0; right: -15px; }.tag-two { bottom: 0; left: -12px; }.tag-icon { display: grid; place-items: center; width: 26px; height: 26px; color: var(--azure); border-radius: 6px; background: var(--pale-blue); font-size: 17px; }.check-badge { display: grid; place-items: center; width: 26px; height: 26px; color: white; border-radius: 50%; background: #4dca86; box-shadow: inset 0 1px 2px rgba(255,255,255,.6); }
.proof-strip { display: flex; align-items: center; justify-content: space-between; padding: 17px 22px; color: #82909b; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .13em; }.proof-strip i { width: 5px; height: 5px; border-radius: 50%; background: #bcc6cc; }
:root[data-theme="dark"] .step-card { border-color: rgba(255,255,255,.08); background: linear-gradient(135deg, #1c2a36, #16222d); }.step-card { transition: transform .2s ease, box-shadow .2s ease; }.step-card:hover { transform: translateY(-4px); box-shadow: inset 0 1px 1px rgba(255,255,255,.5), 0 22px 38px rgba(28,43,57,.16), 0 3px 7px rgba(28,43,57,.08); }
.how { padding: 130px 0 138px; }.section-heading { grid-column: 1 / 2; }.section-heading h2, .install-copy h2 { font-size: clamp(40px, 4.3vw, 59px); }.section-intro { grid-column: 2 / 3; align-self: end; max-width: 370px; margin: 0 0 8px; color: var(--muted); }.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-column: 1 / -1; gap: 18px; margin-top: 62px; }.step-card { min-height: 274px; padding: 25px 24px 20px; border: 1px solid rgba(255,255,255,.9); border-radius: 12px; background: linear-gradient(135deg, #fffefa, #f3efea); box-shadow: inset 0 1px 1px white, var(--shadow); }.step-number { display: flex; justify-content: space-between; color: #9aa4ac; font: 700 11px "Space Grotesk", sans-serif; letter-spacing: .1em; }.step-number span { font: 700 9px "DM Sans", sans-serif; letter-spacing: .14em; }.step-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 26px 0 17px; color: var(--azure); border-radius: 10px; background: var(--pale-blue); box-shadow: inset 0 2px 3px rgba(0,86,179,.1), 0 2px 0 rgba(0,86,179,.11); font: 29px/1 "Space Grotesk", sans-serif; }.icon-build { color: #34a56c; background: #e4f6eb; }.icon-resolve { color: #cc9000; background: #fff2ca; }.step-card h3 { margin: 0 0 9px; font: 700 19px/1.15 "Space Grotesk", sans-serif; letter-spacing: -.03em; }.step-card p { margin: 0; color: var(--muted); font-size: 13px; }.step-card code, .install-card code { color: var(--azure-dark); font-size: .92em; }.card-foot { display: flex; align-items: center; gap: 7px; margin-top: 22px; padding-top: 13px; color: #7a8791; border-top: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .02em; }.led.green { background: #4dca86; box-shadow: 0 0 7px rgba(77,202,134,.6); }.led.amber { background: #ecb62d; box-shadow: 0 0 7px rgba(236,182,45,.6); }
.install-section { padding: 115px 0; background: linear-gradient(118deg, #e4f2ff, #f6f7f5 72%); border-top: 1px solid rgba(0,127,255,.12); border-bottom: 1px solid rgba(0,127,255,.12); }.install-inner { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }.install-copy > p:not(.eyebrow) { max-width: 390px; margin: 24px 0; color: var(--muted); }.text-link { color: var(--azure-dark); font-weight: 700; font-size: 13px; }.install-card { overflow: hidden; border: 1px solid rgba(255,255,255,.95); border-radius: 12px; background: rgba(255,255,255,.72); box-shadow: inset 0 1px 1px white, var(--shadow); }.install-card-header { display: flex; align-items: center; gap: 9px; padding: 16px 21px; color: #87949e; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .1em; }.folder-icon { color: var(--azure); font-size: 19px; }.guide-version { margin-left: auto; color: #a9b3ba; font-size: 9px; }.install-steps { display: grid; gap: 3px; margin: 0; padding: 18px 22px 14px; list-style: none; }.install-steps li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 13px 0; }.install-index { display: grid; place-items: center; width: 27px; height: 27px; color: var(--azure-dark); border: 1px solid #a9d7ff; border-radius: 50%; background: var(--pale-blue); font: 700 12px "Space Grotesk", sans-serif; }.install-steps strong { display: block; font: 700 15px "Space Grotesk", sans-serif; }.install-steps p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }.install-steps a { display: inline-block; margin-top: 7px; color: var(--azure-dark); font-size: 11px; font-weight: 700; }.install-steps kbd { padding: 3px 5px; border: 1px solid #c9d0d5; border-bottom-width: 2px; border-radius: 4px; background: white; color: var(--ink); font-size: 10px; }.install-steps b { padding: 0 3px; color: #96a1aa; font-weight: 400; }.install-note { margin: 0 22px 20px; padding: 11px 13px; color: #6d7a84; border-radius: 6px; background: #f3f6f7; font-size: 11px; }.info-icon { display: inline-grid; place-items: center; width: 15px; height: 15px; margin-right: 5px; color: var(--azure-dark); border: 1px solid #92c9f6; border-radius: 50%; font-size: 10px; font-weight: 700; }
:root[data-theme="dark"] .install-section { background: linear-gradient(118deg, #142f48, #17242d 72%); }.install-card { transition: background .2s ease, border-color .2s ease; } :root[data-theme="dark"] .install-card { border-color: rgba(255,255,255,.12); background: rgba(16, 27, 36, .78); box-shadow: inset 0 1px 1px rgba(255,255,255,.1), var(--shadow); } :root[data-theme="dark"] .install-note { color: #aebcc5; background: rgba(255,255,255,.08); } :root[data-theme="dark"] .install-steps kbd { border-color: #4d5e6b; background: #263744; } :root[data-theme="dark"] .install-card-header, :root[data-theme="dark"] .guide-version { color: #aab9c5; }
.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 50px; padding: 57px 0 50px; }.footer-brand p { margin: 13px 0 0; color: var(--muted); font-size: 12px; }.footer-links { display: flex; gap: 23px; color: var(--muted); font-size: 12px; font-weight: 600; }.footer-links a:hover { color: var(--azure); }.footer-meta { display: flex; align-items: center; gap: 17px; color: #99a3aa; font-size: 11px; }.footer-led { display: flex; align-items: center; gap: 6px; color: #658773; }
.reveal { opacity: 0; transform: translateY(15px); transition: opacity .65s ease, transform .65s ease; }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-delay { transition-delay: .12s; }.reveal-delay-2 { transition-delay: .24s; }
@keyframes blink { 50% { opacity: 0; } } @keyframes spin { to { transform: rotate(360deg); } } @keyframes pulse { 50% { opacity: .35; } }
@media (max-width: 900px) { .site-header, .section-grid, .site-footer, .proof-strip { width: min(100% - 40px, 680px); }.main-nav { gap: 16px; }.hero, .install-inner { grid-template-columns: 1fr; gap: 48px; }.hero { padding-top: 40px; }.hero-copy { max-width: 610px; }.console-wrap { max-width: 620px; width: 100%; margin: auto; }.section-intro { grid-column: 1 / -1; }.steps-grid { margin-top: 43px; }.site-footer { grid-template-columns: 1fr 1fr; }.footer-meta { grid-column: 1 / -1; justify-content: space-between; }.install-section { padding: 86px 0; } }
@media (max-width: 620px) { .site-header { min-height: 73px; gap: 15px; }.main-nav { display: none; }.site-header .theme-toggle { margin-left: auto; }.site-header .button { margin-left: 0; }.hero { min-height: auto; padding: 53px 0 76px; }.hero h1 { font-size: clamp(45px, 14vw, 68px); }.hero-lede { font-size: 16px; }.hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.console-wrap { padding-left: 0; }.console-body { padding: 21px 17px 16px; }.prompt-row { font-size: 14px; }.log-item { grid-template-columns: 17px 1fr; }.log-item code { display: none; }.tag-one { right: -5px; }.tag-two { left: -5px; }.float-tag { font-size: 9px; }.proof-strip { justify-content: center; gap: 11px; padding: 14px 4px; font-size: 7px; }.proof-strip span:nth-of-type(2) { display: none; }.proof-strip i:nth-of-type(2) { display: none; }.how { padding: 88px 0; }.steps-grid { grid-template-columns: 1fr; }.step-card { min-height: 0; }.install-inner { gap: 35px; }.install-card-header { padding: 14px 15px; }.install-steps { padding: 12px 15px 8px; }.install-note { margin-left: 15px; margin-right: 15px; }.site-footer { grid-template-columns: 1fr; gap: 29px; padding: 44px 0; }.footer-links { flex-wrap: wrap; }.footer-meta { grid-column: auto; align-items: flex-start; flex-direction: column; gap: 7px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.spinner, .prompt-caret, .log-item.is-active .log-icon { animation: none; } }