@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/assets/fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "JetBrains Mono";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/fonts/jetbrains-mono-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Mona Sans";
    font-style: normal;
    font-weight: 200 900;
    font-stretch: 75% 125%;
    font-display: swap;
    src: url("/assets/fonts/mona-sans-vf.woff2") format("woff2");
}

:root {
    color-scheme: light;
    --surface: #fdf8f8;
    --surface-plain: #ffffff;
    --surface-muted: #f9fafb;
    --surface-container-low: #f7f3f2;
    --surface-container: #f1edec;
    --surface-container-high: #e5e2e1;
    --text: #1c1b1b;
    --text-muted: #4b5563;
    --text-soft: #747878;
    --primary: #000000;
    --secondary: #5d91fd;
    --secondary-bright: #3f78f5;
    --secondary-soft: #eaf1ff;
    --secondary-tint: rgba(93, 145, 253, 0.1);
    --secondary-faint: rgba(93, 145, 253, 0.04);
    --secondary-border: rgba(93, 145, 253, 0.24);
    --success: #5d91fd;
    --danger: #ba1a1a;
    --border: #e5e7eb;
    --border-strong: #c4c7c7;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 16px;
    --container: 1200px;
    --gutter: 24px;
    --section-gap: 120px;
    --font-github: "Mona Sans", "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface-plain);
    color: var(--text);
    font-family: var(--font-github);
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

.google-translate-shell,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb,
body>.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

html body {
    top: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex: 0 0 auto;
}

button,
input {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.narrow-left {
    max-width: var(--container);
}

.centered {
    text-align: center;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.nav-shell {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo .brand-logo {
    width: 32px;
    height: 32px;
}

.primary-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-nav-head,
.nav-backdrop {
    display: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.nav-link .icon {
    display: none;
}

.nav-download-icon {
    display: none;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 65;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-plain);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle:hover {
    border-color: var(--border-strong);
}

.nav-toggle:focus-visible,
.mobile-nav-close:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid var(--secondary-border);
    outline-offset: 3px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-dark {
    background: var(--primary);
    color: #ffffff;
}

.button-blue {
    background: var(--secondary);
    color: #ffffff;
}

.button-blue:hover {
    background: var(--secondary-bright);
    box-shadow: 0 12px 24px rgba(93, 145, 253, 0.2);
}

.button-light {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--border);
}

.button-outline-dark {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.main-offset {
    padding-top: 128px;
}

.hero-section {
    padding: 160px 0 var(--section-gap);
    background:
        radial-gradient(circle at 50% 0%, rgba(122, 166, 255, 0.18), transparent 34%),
        linear-gradient(180deg, #0b1020 0%, #0f172a 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
    gap: 64px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.02;
    font-weight: 450;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: inherit;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.split-layout p,
.docs-card p,
.feature-card p,
.side-card p,
.download-panel p,
.cta-panel p {
    color: var(--text-muted);
}

.hero-copy p {
    max-width: 620px;
    margin: 0 0 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin-bottom: 24px;
    border: 1px solid var(--secondary-border);
    border-radius: 999px;
    background: var(--secondary-tint);
    color: var(--secondary);
    font-family: var(--font-github);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 1.6s ease-in-out infinite;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.action-row.centered {
    justify-content: center;
}

.terminal-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #000000;
    color: #f4f4f5;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    text-align: left;
}

.terminal-card.dark {
    background: #000000;
    color: #f4f4f5;
    border-color: rgba(255, 255, 255, 0.14);
}

.terminal-card.large {
    min-height: 410px;
}

.hero-terminal-frame {
    position: relative;
    width: 100%;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(122, 166, 255, 0.78), rgba(139, 92, 246, 0.34) 48%, rgba(255, 255, 255, 0.12));
    box-shadow:
        0 0 0 1px rgba(122, 166, 255, 0.18),
        0 22px 70px rgba(93, 145, 253, 0.22),
        -18px 18px 72px rgba(139, 92, 246, 0.2);
}

.hero-terminal {
    border: 0;
    border-radius: 17px;
    box-shadow: none;
}

.terminal-bar {
    min-height: 42px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #151515;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-card:not(.dark) .terminal-bar {
    background: #151515;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-bar small {
    margin-left: 8px;
    color: #8b949e;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.amber {
    background: #ffbd2e;
}

.green {
    background: var(--success);
}

.terminal-body {
    padding: 28px;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    line-height: 1.7;
    background: #000000;
    text-align: left;
    color: #e5e7eb;
}

.terminal-body p {
    margin: 0 0 10px;
}

.terminal-body b,
.terminal-command {
    color: #7aa6ff;
}

.terminal-result {
    margin-top: 24px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: #111827;
    color: #cbd5e1;
    text-align: left;
}

.terminal-result strong,
.terminal-success {
    color: var(--success);
}

.terminal-path {
    color: var(--success);
}

.muted-text {
    color: rgba(255, 255, 255, 0.55);
}

.progress-track {
    height: 7px;
    margin: 18px 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.progress-track span {
    display: block;
    width: 75%;
    height: 100%;
    border-radius: inherit;
    background: var(--secondary-bright);
    animation: progress 2.4s ease-in-out infinite;
}

.progress-track.full span {
    width: 100%;
    transform-origin: left;
    animation: grow 1.8s ease-out both;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    margin-left: 4px;
    background: #f8fafc;
    vertical-align: -0.2em;
    animation: blink 1s steps(1) infinite;
}

.typing {
    animation: none;
}

.page-section {
    padding: var(--section-gap) 0;
    background: #ffffff;
}

.page-section.muted {
    background: var(--surface-muted);
}

.page-section.compact {
    padding-top: 96px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 56px;
}

.section-heading.centered {
    margin-inline: auto;
}

.section-heading .tab-switcher {
    margin-top: 24px;
}

.section-heading h2,
.split-layout h2,
.docs-sidebar h2,
.download-panel h2,
.cta-panel h2,
.cta-band h2,
.side-card h2 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 700;
}

.two-column,
.feature-grid {
    display: grid;
    gap: 24px;
}

.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 56px;
}

.feature-card,
.price-card,
.side-card,
.docs-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 32px;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-card:hover,
.price-card:hover,
.side-card:hover,
.docs-card:hover {
    border-color: rgba(93, 145, 253, 0.36);
    box-shadow: var(--shadow-card);
}

.feature-card.recommended {
    border-width: 2px;
    border-color: var(--secondary);
    overflow: hidden;
}

.card-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 14px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--surface-muted);
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}

.feature-icon .icon {
    width: 28px;
    height: 28px;
}

.feature-icon.blue {
    background: var(--secondary-tint);
    color: var(--secondary);
}

.feature-icon.green {
    background: var(--secondary-tint);
    color: var(--secondary);
}

.feature-card h3,
.docs-card h2,
.side-card h2,
.steps-list h3,
.price-card h2,
.price-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.check-list,
.price-card ul {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.price-card li .icon {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: var(--primary);
}

.ok,
.bad,
.info {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: 0 0 22px;
    display: inline-grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

svg.ok,
svg.bad,
svg.info {
    padding: 2px;
    stroke-width: 2.3;
}

.ok {
    color: var(--success);
}

.bad {
    color: var(--danger);
}

.info {
    color: var(--text-soft);
    border: 1px solid var(--border);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    text-align: left;
}

th,
td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

thead th {
    background: var(--surface-muted);
    color: var(--primary);
    font-weight: 750;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody td:first-child {
    font-weight: 700;
    color: var(--primary);
}

.success {
    color: var(--success);
    font-weight: 700;
}

.danger {
    color: var(--danger);
    font-weight: 700;
}

.limitations-section {
    padding: var(--section-gap) 0;
    background: var(--surface-container-low);
}

.limitations-heading {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}

.limitations-heading h2 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.14;
    font-weight: 700;
}

.limitations-heading p {
    margin: 0 auto;
    color: var(--text-muted);
}

.limitations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.limitation-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

.limitation-card:hover {
    border-color: var(--secondary-border);
    box-shadow: var(--shadow-card);
}

.limitation-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 12px;
    background: var(--secondary-tint);
    color: var(--secondary);
}

.limitation-icon .icon {
    width: 24px;
    height: 24px;
}

.limitation-card h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 650;
}

.limitation-card p {
    margin: 0;
    color: var(--text-muted);
}

.capability-matrix {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.capability-matrix-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-muted);
}

.capability-matrix-header h3 {
    margin: 0;
    color: var(--primary);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 650;
}

.capability-matrix-scroll {
    overflow-x: auto;
}

.capability-table {
    min-width: 720px;
}

.capability-table thead th {
    padding: 16px 32px;
    background: #ffffff;
    color: var(--text-muted);
    font-family: var(--font-github);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.capability-table td {
    padding: 20px 32px;
}

.capability-table tbody tr {
    transition: background 160ms ease;
}

.capability-table tbody tr:hover {
    background: var(--surface-muted);
}

.capability-table .matrix-status {
    color: var(--text-muted);
}

.capability-table .matrix-status .icon {
    width: 24px;
    height: 24px;
    display: block;
}

.capability-table .matrix-success {
    color: var(--success);
}

.capability-table .matrix-danger {
    color: var(--danger);
}

.capability-table .matrix-muted {
    color: var(--text-muted);
}

.capability-table .matrix-positive {
    color: var(--success);
    font-weight: 700;
}

.notice-row {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border: 1px solid var(--secondary-border);
    border-radius: var(--radius);
    background: var(--secondary-faint);
    color: var(--text-muted);
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

td.success,
td.danger {
    display: table-cell;
}

td.success .icon,
td.danger .icon,
.success .icon,
.danger .icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: -3px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 56px;
    align-items: center;
}

.steps-list {
    display: grid;
    gap: 22px;
    margin: 32px 0;
}

.steps-list>div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
}

.steps-list span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary);
    color: #ffffff;
    font-weight: 800;
}

.steps-list p {
    margin: 0;
}

.text-link {
    color: var(--secondary);
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.price-card {
    display: flex;
    min-height: 415px;
    flex-direction: column;
}

.price-card.featured {
    border-width: 2px;
    border-color: var(--secondary);
    transform: translateY(-16px);
}

.price-card.dev {
    border-width: 2px;
    border-color: var(--primary);
    background: var(--surface-container);
}

.best-value {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 11px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-label {
    margin: 0 0 12px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 34px;
    line-height: 1.1;
}

.price-card .button {
    margin-top: auto;
    width: 100%;
}

.cta-band {
    padding: 88px 0;
    background: var(--primary);
    color: #ffffff;
}

.cta-band h2 {
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
    margin-top: 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: var(--surface-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.footer-brand-block {
    grid-column: span 4;
}

.footer-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-brand-lockup .brand-logo {
    width: auto;
    height: 32px;
}

.footer-brand-block p {
    max-width: 320px;
    margin: 0 0 32px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column-small {
    grid-column: span 2;
}

.newsletter-form {
    grid-column: span 4;
    margin: 0;
}

.footer-grid h5 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-bottom {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 160ms ease;
}

.footer-social-icon:hover {
    color: var(--secondary);
    text-decoration: none;
}

.footer-social-icon .icon {
    width: 22px;
    height: 22px;
}

.newsletter-form p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.input-row {
    display: flex;
    gap: 8px;
}

input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--text);
    background: #ffffff;
    outline: none;
}

input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px var(--secondary-tint);
}

.form-note {
    display: block;
    min-height: 20px;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 13px;
}

.footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-github);
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
    font-size: 12px;
}

.page-hero {
    padding-bottom: 72px;
}

.page-hero h1 {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--primary);
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.12;
    font-weight: 700;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 18px;
}

.page-hero.centered h1,
.page-hero.centered p {
    margin-left: auto;
    margin-right: auto;
}

.tab-switcher {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
}

.tab-button {
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-muted);
    font-weight: 750;
    cursor: pointer;
}

.tab-button.is-active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.docs-sidebar {
    position: sticky;
    top: 112px;
}

.docs-sidebar a {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    color: var(--text-muted);
    font-weight: 700;
}

.docs-sidebar span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-github);
    font-size: 13px;
}

.docs-sidebar a:hover {
    color: var(--secondary);
}

.docs-content {
    display: grid;
    gap: 72px;
}

.docs-card {
    scroll-margin-top: 112px;
}

.copy-button,
.copy-inline button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: var(--secondary);
    font-weight: 800;
    cursor: pointer;
}

.copy-inline {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.copy-inline code {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
}

.cta-panel,
.download-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: #ffffff;
}

.cta-panel h2,
.download-panel h2 {
    color: #ffffff;
}

.cta-panel p,
.download-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: center;
}

.check-list.invert li {
    color: rgba(255, 255, 255, 0.88);
}

.token-form {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.token-form label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.token-form input {
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.token-form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.token-form .button {
    width: 100%;
}

.token-form a {
    color: #dbe7ff;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 0 10px;
    border-radius: var(--radius);
    background: var(--secondary-tint);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pill .icon {
    width: 14px;
    height: 14px;
}

.blue-chip {
    border-color: var(--secondary-border);
    background: var(--secondary-tint);
    color: var(--secondary);
}

.pulse-dot.blue {
    background: var(--secondary);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: var(--section-gap);
}

.download-card {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.download-card:hover {
    border-color: var(--secondary-border);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.download-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.download-card p {
    margin: 0 0 28px;
    color: var(--text-muted);
}

.download-card .button {
    width: 100%;
    margin-top: auto;
}

.platform-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
    color: var(--primary);
    font-family: var(--font-github);
    font-size: 14px;
    font-weight: 800;
}

.platform-icon .icon {
    width: 34px;
    height: 34px;
}

.platform-icon.blue {
    color: var(--secondary);
}

.version-note {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
    font-family: var(--font-github);
    font-size: 13px;
}

.site-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 48px));
    padding: 14px 18px;
    border: 1px solid var(--secondary-border);
    border-radius: var(--radius);
    background: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.download-source-section {
    margin-top: 0;
}

.steps-list.compact {
    gap: 18px;
    margin: 30px 0;
}

.terminal-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-top: 18px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius);
    background: #3d3d3d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 160ms ease;
}

.terminal-copy .icon {
    width: 15px;
    height: 15px;
}

.terminal-copy:hover {
    background: #4d4d4d;
}

.verification-panel {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin-top: 96px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #ffffff;
}

.verification-icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary-tint);
    color: var(--secondary);
    font-family: var(--font-github);
    font-weight: 800;
}

.verification-icon .icon {
    width: 46px;
    height: 46px;
}

.verification-panel h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.verification-panel p {
    margin: 0;
    max-width: 680px;
    color: var(--text-muted);
}

.verification-badges {
    display: flex;
    gap: 12px;
}

.verification-badges span {
    display: grid;
    gap: 2px;
    min-width: 110px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-align: center;
    font-family: var(--font-github);
    font-size: 13px;
}

.verification-badges b {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

@keyframes progress {
    0% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(140%);
    }
}

@keyframes grow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

@keyframes soft-fade {
    from {
        opacity: 0.55;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .download-panel {
        grid-template-columns: 1fr;
    }
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .verification-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .price-card.featured {
        transform: none;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand-block,
    .footer-column-small,
    .newsletter-form {
        grid-column: auto;
    }
}

@media (max-width: 860px) {
     :root {
        --section-gap: 80px;
    }
    .container {
        width: min(100% - 32px, var(--container));
    }
    .site-header {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(18px);
    }
    .nav-shell {
        position: relative;
        height: 68px;
        justify-content: center;
    }
    .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 0;
    }
    .brand span {
        display: none;
    }
    .brand-logo {
        width: 34px;
        height: 34px;
    }
    .nav-toggle {
        position: absolute;
        left: 0;
        display: flex;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        box-shadow: none;
    }
    .nav-toggle:hover {
        border-color: transparent;
    }
    .nav-backdrop {
        position: fixed;
        inset: 0 auto auto 0;
        z-index: 70;
        display: block;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        padding: 0;
        border: 0;
        background: rgba(15, 23, 42, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }
    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
    .primary-nav {
        position: fixed;
        inset: 68px 0 0;
        z-index: 80;
        width: 100vw;
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
        display: flex;
        padding: 24px max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
        border: 0;
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        opacity: 0.98;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
        visibility: hidden;
    }
    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
    }
    .mobile-nav-head {
        display: none;
    }
    .mobile-nav-brand {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        gap: 8px;
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
    }
    .mobile-nav-brand .brand-logo {
        width: 36px;
        height: 36px;
    }
    .mobile-nav-close {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--surface-plain);
        color: var(--text);
        cursor: pointer;
        transition: background-color 160ms ease, border-color 160ms ease;
    }
    .mobile-nav-close:hover {
        border-color: var(--border-strong);
        background: var(--surface-muted);
    }
    .mobile-nav-close .icon {
        width: 20px;
        height: 20px;
    }
    .nav-list {
        display: grid;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }
    .nav-link {
        min-height: 48px;
        padding: 0;
        border: 0;
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 450;
        line-height: 1;
        transition: color 160ms ease;
    }
    .nav-link:hover,
    .nav-link.is-active {
        border-bottom-color: transparent;
        color: var(--primary);
    }
    .nav-link-cta {
        justify-content: flex-start;
        min-height: 48px;
        margin-top: 0;
        background: transparent;
        color: var(--text-muted);
        font-weight: 450;
        box-shadow: none;
    }
    .nav-link-cta:hover,
    .nav-link-cta.is-active {
        background: transparent;
        color: var(--primary);
    }
    .nav-link-cta .icon {
        display: block;
        width: 18px;
        height: 18px;
    }
    .nav-link-cta .nav-download-icon.is-active {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-link-cta .nav-download-icon.is-active .icon {
        display: block;
        width: 18px;
        height: 18px;
    }
    .hero-section {
        padding-top: 118px;
    }
    .hero-grid,
    .hero-copy,
    .page-hero {
        text-align: center;
    }
    .hero-copy h1 {
        max-width: 390px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(26px, 7vw, 30px);
        line-height: 1.04;
        font-weight: 450;
    }
    .hero-copy p,
    .page-hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-copy p {
        max-width: 350px;
        font-size: 15px;
        line-height: 1.45;
    }
    .hero-copy .action-row {
        justify-content: center;
    }
    .hero-copy .trust-chip {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-terminal-frame {
        width: calc(100% + 32px);
        margin-left: 0;
        overflow: hidden;
        justify-self: stretch;
    }
    .hero-terminal {
        width: min(720px, 178vw);
        max-width: none;
    }
    .two-column,
    .feature-grid.three,
    .limitations-grid,
    .docs-layout {
        grid-template-columns: 1fr;
    }
    .docs-sidebar {
        position: static;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 20px;
        background: #ffffff;
    }
    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
    .verification-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 34px;
    }
    .action-row,
    .input-row,
    .tab-switcher,
    .footer-bottom {
        flex-direction: column;
    }
    .button,
    .input-row .button {
        width: 100%;
    }
    .pricing-grid,
    .download-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .feature-card,
    .limitation-card,
    .price-card,
    .side-card,
    .docs-card,
    .download-card,
    .cta-panel,
    .download-panel,
    .verification-panel,
    .token-form {
        padding: 24px;
    }
    .limitations-heading {
        margin-bottom: 40px;
    }
    .capability-matrix-header,
    .capability-table thead th,
    .capability-table td {
        padding-inline: 20px;
    }
    .copy-inline {
        align-items: stretch;
        flex-direction: column;
    }
    .footer-bottom div {
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-toggle span:not(.sr-only),
    .nav-backdrop,
    .primary-nav {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
     :root {
        color-scheme: dark;
        --surface: #0b1020;
        --surface-plain: #0f172a;
        --surface-muted: #111827;
        --surface-container-low: #111827;
        --surface-container: #172033;
        --surface-container-high: #223047;
        --text: #f8fafc;
        --text-muted: #cbd5e1;
        --text-soft: #94a3b8;
        --primary: #f8fafc;
        --secondary: #7aa6ff;
        --secondary-bright: #9bbcff;
        --secondary-soft: #dbeafe;
        --secondary-tint: rgba(93, 145, 253, 0.18);
        --secondary-faint: rgba(93, 145, 253, 0.1);
        --secondary-border: rgba(122, 166, 255, 0.36);
        --success: #7aa6ff;
        --danger: #ff8a8a;
        --border: #273449;
        --border-strong: #41516b;
        --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.48);
        --shadow-card: 0 16px 42px rgba(0, 0, 0, 0.32);
    }
    body {
        background: var(--surface-plain);
    }
    .site-header,
    .primary-nav,
    .page-section,
    .feature-card,
    .price-card,
    .side-card,
    .docs-card,
    .table-wrap,
    .limitation-card,
    .capability-matrix,
    .download-card,
    .verification-panel,
    .docs-sidebar {
        background: var(--surface-plain);
    }
    .hero-section {
        background: linear-gradient(180deg, #0b1020 0%, var(--surface-muted) 100%);
    }
    .page-section.muted,
    .feature-icon,
    .platform-icon,
    thead th,
    .capability-matrix-header,
    .tab-switcher {
        background: var(--surface-muted);
    }
    .capability-table thead th,
    .copy-inline code,
    input,
    .button-light,
    .tab-button.is-active {
        background: var(--surface-container);
        color: var(--text);
    }
    input::placeholder {
        color: var(--text-soft);
    }
    .button-light,
    .copy-inline code,
    input {
        border-color: var(--border);
    }
    .button-dark,
    .price-card .button {
        background: var(--secondary);
        color: #ffffff;
    }
    .button-dark:hover,
    .price-card .button:hover {
        background: var(--secondary-bright);
    }
    .price-card.featured {
        border-color: var(--secondary);
    }
    .price-card.dev {
        border-color: var(--secondary-border);
        background: var(--surface-container);
    }
    .best-value,
    .card-ribbon {
        background: var(--secondary);
        color: #ffffff;
    }
    .verification-badges span {
        background: var(--surface-container);
    }
    .terminal-card,
    .terminal-card.dark,
    .terminal-card:not(.dark) .terminal-bar,
    .terminal-bar {
        background: #000000;
        color: #f4f4f5;
    }
    .terminal-bar,
    .terminal-card:not(.dark) .terminal-bar {
        background: #151515;
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .terminal-card,
    .terminal-card.dark {
        border-color: rgba(255, 255, 255, 0.14);
    }
    .cta-band,
    .cta-panel,
    .download-panel,
    .site-toast {
        background: #060b16;
        color: #ffffff;
    }
    .token-form {
        border-color: rgba(255, 255, 255, 0.14);
    }
    .terminal-result {
        background: #111827;
        color: #cbd5e1;
        border-color: rgba(255, 255, 255, 0.14);
    }
    .footer-bottom {
        border-top-color: var(--border);
    }
    .download-panel p,
    .cta-panel p {
        color: rgba(255, 255, 255, 0.78);
    }
    .token-form input {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    @media (max-width: 860px) {
        .site-header {
            background: rgba(15, 23, 42, 0.86);
        }
        .nav-backdrop {
            background: rgba(2, 6, 23, 0.72);
        }
        .nav-toggle {
            background: transparent;
            box-shadow: none;
        }
        .mobile-nav-close {
            background: var(--surface-container);
        }
        .mobile-nav-close:hover {
            background: var(--surface-container);
        }
        .nav-link:hover,
        .nav-link.is-active,
        .nav-link-cta:hover,
        .nav-link-cta.is-active {
            background: transparent;
        }
    }
}
