:root {
    --ink: #f4f7fb;
    --ink-soft: #aab5c7;
    --ink-muted: #7d8aa0;
    --paper: #080c15;
    --canvas: #0b111d;
    --canvas-warm: #0a0f1a;
    --line: #1d2738;
    --line-strong: #2b3951;
    --navy: #050810;
    --navy-soft: #0d1422;
    --blue: #2499ee;
    --blue-dark: #147bc5;
    --blue-light: #0c2135;
    --green: #43d19e;
    --green-dark: #31c69a;
    --purple: #8b7cf6;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .2), 0 1px 3px rgba(0, 0, 0, .3);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, .42);
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
strong {
    letter-spacing: -.025em;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6.2vw, 5.5rem);
    font-weight: 680;
    line-height: .98;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4vw, 3.6rem);
    font-weight: 650;
    line-height: 1.05;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.28rem;
    line-height: 1.28;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

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

.section-dark {
    overflow: hidden;
    background: var(--navy);
    color: #f8fafc;
}

.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;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    background: rgba(8, 12, 21, .9);
    backdrop-filter: blur(18px);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(16, 24, 40, .04);
}

.nav-shell {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(71, 164, 232, .24), 0 0 24px rgba(36, 153, 238, .12);
}

.brand-name {
    font-size: 17px;
    font-weight: 740;
    letter-spacing: -.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav > a:not(.button) {
    color: #aeb9cb;
    font-size: 14px;
    font-weight: 570;
    text-decoration: none;
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
    color: var(--blue);
}

.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--line);
}

.main-nav .nav-login {
    color: var(--ink) !important;
    font-weight: 650 !important;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    background: transparent;
}

.menu-button span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: var(--ink);
    transition: transform .2s ease;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 21px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 680;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(49, 87, 213, .18);
    transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
    box-shadow: 0 9px 22px rgba(49, 87, 213, .24);
    transform: translateY(-1px);
}

.button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
}

.button-secondary {
    border-color: var(--line-strong);
    background: #101827;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: #49627d;
    background: #152033;
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: var(--navy);
    box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
    border-color: #edf2f7;
    background: #edf2f7;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #49b4ff;
    font-size: 12px;
    font-weight: 760;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(67, 209, 158, .12);
}

.eyebrow-light {
    color: #9eb4ff;
}

.hero {
    overflow: hidden;
    padding: 152px 0 86px;
    background:
        linear-gradient(var(--line), var(--line)) 50% 100% / min(calc(100% - 48px), var(--shell)) 1px no-repeat,
        radial-gradient(circle at 75% 30%, rgba(36, 153, 238, .12), transparent 34%),
        var(--canvas-warm);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(600px, 1.22fr);
    align-items: center;
    gap: 72px;
}

.hero-lead {
    max-width: 670px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-note {
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.product-shot {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid #263248;
    border-radius: 16px;
    background: #10151f;
    box-shadow: var(--shadow-lg);
}

.product-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.shot-toolbar {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
    border-bottom: 1px solid #222d40;
    background: #0e141f;
    color: #748198;
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.shot-toolbar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shot-toolbar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(67, 209, 158, .5);
}

.product-shot figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 15px;
    border-top: 1px solid #222d40;
    background: #0e141f;
    color: #7f8ba0;
    font-size: 10px;
}

.product-shot figcaption span {
    color: #d6deea;
    font-weight: 700;
}

.hero-shot {
    min-width: 700px;
}

.product-shot-dark {
    z-index: 1;
    transform: perspective(1200px) rotateY(-2deg);
}

.ai-product-shot {
    transform: perspective(1200px) rotateY(2deg);
}

.product-window {
    overflow: hidden;
    min-width: 700px;
    border: 1px solid #252e46;
    border-radius: 18px;
    background: #0c111d;
    color: #e8ecf5;
    box-shadow: var(--shadow-lg);
}

.window-bar {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid #252e46;
    background: #111726;
    font-size: 11px;
}

.window-brand,
.window-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-brand {
    font-weight: 700;
}

.window-logo {
    color: var(--green);
}

.window-status {
    color: #8d98ac;
}

.window-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.workspace {
    display: grid;
    min-height: 455px;
    grid-template-columns: 142px minmax(300px, 1fr) 210px;
}

.file-tree,
.ai-pane {
    padding: 15px 12px;
    background: #0e1421;
}

.file-tree {
    border-right: 1px solid #20283a;
}

.ai-pane {
    border-left: 1px solid #20283a;
}

.pane-label {
    margin-bottom: 16px;
    color: #79859a;
    font-size: 9px;
    letter-spacing: .08em;
}

.tree-root,
.tree-item {
    margin: 3px 0;
    padding: 5px 7px;
    border-radius: 5px;
    font-size: 10px;
}

.tree-root,
.tree-folder {
    color: #dde3ee;
    font-weight: 650;
}

.tree-file {
    padding-left: 28px;
    color: #96a1b4;
}

.tree-file.active {
    background: #1d2d56;
    color: #c9d7ff;
}

.tree-file.muted {
    color: #5f697b;
}

.editor-pane {
    position: relative;
    min-width: 0;
}

.editor-tabs {
    display: flex;
    height: 35px;
    border-bottom: 1px solid #20283a;
    background: #111726;
}

.editor-tabs span {
    min-width: 76px;
    padding: 9px 12px;
    border-right: 1px solid #20283a;
    color: #7d899d;
    font-size: 9px;
}

.editor-tabs .selected {
    border-top: 2px solid #6688ff;
    background: #0d1320;
    color: #dce3ef;
}

.code {
    min-height: 250px;
    margin: 0;
    padding: 24px 16px;
    overflow: hidden;
    color: #bbc5d8;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 10px;
    line-height: 1.9;
    white-space: pre-wrap;
}

.line-number {
    display: inline-block;
    width: 23px;
    color: #485369;
    user-select: none;
}

.code-purple {
    color: #b7a1ff;
}

.code-green {
    color: #71d6ae;
}

.terminal {
    min-height: 169px;
    padding: 11px 15px;
    border-top: 1px solid #20283a;
    background: #0a0f19;
    color: #9faabc;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
}

.terminal-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 17px;
    color: #657086;
    font-family: Inter, ui-sans-serif, sans-serif;
    font-size: 8px;
    letter-spacing: .06em;
}

.terminal p {
    margin-bottom: 6px;
}

.terminal-prompt {
    color: var(--purple);
}

.terminal-success {
    color: #66cfa4;
}

.ai-head,
.ai-head > div {
    display: flex;
    align-items: center;
}

.ai-head {
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 25px;
}

.ai-head > div {
    gap: 7px;
    font-size: 10px;
}

.ai-orb {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 7px;
    background: #3157d5;
    color: white;
    font-size: 8px;
    font-weight: 800;
}

.available {
    color: #77c7a5;
    font-size: 8px;
}

.ai-kicker {
    margin-bottom: 8px;
    color: #68758b;
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.context-item {
    display: flex;
    gap: 6px;
    padding: 6px 0;
    color: #8d98aa;
    font-size: 9px;
}

.context-item span {
    color: var(--green);
}

.ai-message {
    margin-top: 22px;
    padding: 11px;
    border: 1px solid #283148;
    border-radius: 9px;
    background: #121a29;
    color: #aeb8c9;
    font-size: 9px;
    line-height: 1.55;
}

.ai-composer {
    display: flex;
    min-height: 37px;
    align-items: center;
    justify-content: space-between;
    margin-top: 75px;
    padding: 0 10px;
    border: 1px solid #35415c;
    border-radius: 8px;
    color: #657086;
    font-size: 8px;
}

.ai-composer span {
    color: #8aa5ff;
}

.proof-strip {
    padding: 31px 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
    padding: 3px 24px;
    border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
    padding-left: 0;
}

.proof-grid > div:last-child {
    border-right: 0;
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    margin-bottom: 4px;
    font-size: 13px;
}

.proof-grid span {
    color: var(--ink-muted);
    font-size: 12px;
    line-height: 1.5;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 66px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 18px;
}

.section-heading-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.section-heading-left .eyebrow {
    justify-content: flex-start;
}

.section-heading-left > p:last-child {
    margin-left: 0;
}

.journey {
    border-top: 1px solid var(--line-strong);
}

.journey-step {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 36px;
    padding: 37px 0;
    border-bottom: 1px solid var(--line);
}

.step-number {
    color: #98a2b3;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 13px;
}

.journey-step > div {
    display: grid;
    grid-template-columns: 150px minmax(280px, .8fr) minmax(300px, 1fr);
    gap: 36px;
    align-items: start;
}

.step-label {
    margin: 0;
    color: var(--blue);
    font-size: 13px;
    font-weight: 720;
    text-transform: uppercase;
}

.journey-step h3,
.journey-step p:last-child {
    margin: 0;
}

.journey-step h3 {
    font-size: 21px;
}

.journey-step p:last-child {
    color: var(--ink-soft);
    font-size: 15px;
}

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

.split-copy > p:not(.eyebrow):not(.disclosure) {
    margin-bottom: 35px;
    color: #aeb8cc;
    font-size: 18px;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding: 19px 0;
    border-top: 1px solid #25304a;
}

.feature-list li > span {
    padding-top: 2px;
    color: #7180a0;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.feature-list strong {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
}

.feature-list p {
    margin: 0;
    color: #8e99ae;
    font-size: 14px;
}

.capability-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.capability-stack::before {
    position: absolute;
    top: -140px;
    right: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid #293451;
    border-radius: 50%;
    content: "";
}

.capability-card {
    position: relative;
    z-index: 1;
    max-width: 420px;
    padding: 27px;
    border: 1px solid #2a3550;
    border-radius: var(--radius);
    background: #11182a;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .16);
}

.capability-offset {
    margin-left: 58px;
}

.capability-tag {
    display: block;
    margin-bottom: 22px;
    color: #8395d2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
}

.capability-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.capability-card p {
    margin: 0;
    color: #909bb0;
    font-size: 14px;
}

.ai-section-grid {
    display: grid;
    grid-template-columns: minmax(450px, .95fr) minmax(0, 1fr);
    align-items: center;
    gap: 100px;
}

.ai-demo {
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--canvas);
    box-shadow: var(--shadow-lg);
}

.demo-top,
.demo-top > div {
    display: flex;
    align-items: center;
}

.demo-top {
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.demo-top > div {
    gap: 11px;
}

.ai-orb-large {
    width: 34px;
    height: 34px;
    font-size: 10px;
}

.demo-model {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
    color: var(--ink-soft);
    font-size: 11px;
}

.demo-prompt {
    margin: 20px 0;
    padding: 16px;
    border-radius: 10px;
    background: var(--paper);
    color: #344054;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

.demo-process {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
}

.process-row {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
}

.process-row:last-child {
    border-bottom: 0;
}

.process-row > span {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    background: #e8f7f1;
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
}

.process-row.current > span {
    background: var(--blue-light);
    color: var(--blue);
}

.process-row strong,
.process-row small {
    display: block;
}

.process-row strong {
    font-size: 12px;
}

.process-row small {
    margin-top: 2px;
    color: var(--ink-muted);
    font-size: 10px;
}

.demo-attachment {
    margin-top: 16px;
    color: var(--ink-muted);
    font-size: 11px;
    text-align: center;
}

.demo-attachment span {
    color: var(--blue);
    font-weight: 800;
}

.light-copy > p:not(.eyebrow):not(.disclosure) {
    color: var(--ink-soft);
}

.plain-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
}

.plain-features > div:first-child {
    grid-column: 1 / -1;
}

.plain-features strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.plain-features p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.disclosure {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 12px;
}

.hosting-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 14px;
}

.hosting-feature {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.hosting-feature-large {
    grid-row: span 2;
    min-height: 474px;
    background: var(--navy);
    color: white;
}

.feature-index {
    display: block;
    margin-bottom: 62px;
    color: #98a2b3;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.hosting-feature-large .feature-index {
    color: #64708a;
}

.hosting-feature h3 {
    font-size: 19px;
}

.hosting-feature p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 14px;
}

.hosting-feature-large p {
    color: #aab4c7;
}

.select-preview {
    display: grid;
    gap: 10px;
    margin-top: 48px;
}

.select-preview > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    border: 1px solid #2b3652;
    border-radius: 9px;
    background: #11182a;
}

.select-preview small {
    color: #71809c;
}

.select-preview strong {
    color: #dbe2ef;
    font-size: 12px;
}

.pricing-section {
    background: var(--paper);
}

.pricing-heading {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 90px;
    align-items: end;
    margin-bottom: 50px;
}

.pricing-heading h2 {
    max-width: 700px;
    margin-bottom: 0;
}

.pricing-heading > p {
    margin-bottom: 7px;
    color: var(--ink-soft);
}

.pricing-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--ink);
}

.pricing-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.pricing-table th {
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    padding-left: 0;
}

.pricing-table td {
    color: var(--ink-soft);
    font-size: 13px;
}

.pricing-table td strong,
.pricing-table td small {
    display: block;
}

.pricing-table td strong {
    color: var(--ink);
    font-size: 15px;
}

.pricing-table td small {
    margin-top: 2px;
    color: var(--ink-muted);
    font-size: 10px;
}

.pricing-table td:last-child {
    text-align: right;
}

.pricing-table td a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.pricing-table tr.recommended {
    background: #0c1726;
}

.pricing-table tr.recommended td:first-child {
    padding-left: 12px;
    border-left: 3px solid var(--blue);
}

.ai-pricing {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    margin-top: 45px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
}

.pricing-label {
    display: block;
    margin-bottom: 13px;
    color: #9eb4ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.ai-pricing h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.ai-pricing p {
    max-width: 720px;
    margin: 0;
    color: #aeb8cc;
    font-size: 14px;
}

.ai-pricing p strong {
    color: white;
}

.pricing-footnote {
    margin: 17px 0 0;
    color: var(--ink-muted);
    font-size: 11px;
}

.company-grid {
    display: grid;
    grid-template-columns: .8fr 1.15fr;
    gap: 120px;
}

.company-copy > p {
    color: var(--ink-soft);
    font-size: 18px;
}

.company-facts {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-top: 38px;
    border-top: 1px solid var(--line-strong);
}

.company-facts > div {
    padding: 21px 15px 21px 0;
    border-bottom: 1px solid var(--line);
}

.company-facts > div:last-child {
    grid-column: 1 / -1;
}

.company-facts span,
.company-facts strong,
.company-facts a {
    display: block;
}

.hosting-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
    gap: 58px;
    align-items: center;
}

.hosting-shot img {
    aspect-ratio: 863 / 504;
    object-fit: cover;
}

.hosting-points {
    border-top: 1px solid var(--line-strong);
}

.hosting-points article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.hosting-points article > span {
    padding-top: 3px;
    color: #5f6d83;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.hosting-points h3 {
    margin-bottom: 4px;
    font-size: 15px;
}

.hosting-points p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 13px;
}

.company-facts span {
    margin-bottom: 4px;
    color: var(--ink-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.company-facts strong,
.company-facts a {
    font-size: 14px;
    text-decoration: none;
}

.company-facts a {
    color: var(--blue);
    font-weight: 650;
}

.trust-grid {
    display: grid;
    grid-template-columns: .8fr 1.15fr;
    gap: 120px;
}

.trust-list {
    border-top: 1px solid var(--line-strong);
}

.trust-list > div {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.trust-list span {
    font-size: 14px;
    font-weight: 700;
}

.trust-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: .68fr 1.12fr;
    gap: 130px;
}

.faq-list {
    border-top: 1px solid var(--line-strong);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 22px 42px 22px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 680;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 21px;
    right: 2px;
    color: var(--blue);
    content: "+";
    font-size: 22px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 650px;
    padding: 0 42px 22px 0;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.final-cta {
    background: var(--blue);
    color: #fff;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
    min-height: 330px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.final-cta h2 {
    max-width: 730px;
    margin-bottom: 0;
}

.final-cta-inner > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.text-link-light {
    color: #e4eaff;
    font-size: 13px;
    font-weight: 650;
    text-underline-offset: 4px;
}

.site-footer {
    padding: 76px 0 24px;
    background: var(--navy);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 65px;
}

.brand-footer {
    color: white;
}

.brand-footer .brand-mark {
    background: white;
    color: var(--navy);
}

.footer-brand p {
    max-width: 310px;
    margin-top: 18px;
    color: #8f9bb0;
    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-title {
    margin-bottom: 8px;
    color: #f5f7fb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) span {
    color: #8f9bb0;
    font-size: 13px;
    text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid #232d42;
    color: #738096;
    font-size: 11px;
}

/* Legal pages */
.legal-hero {
    padding: 152px 0 68px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas-warm);
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.legal-updated {
    margin: 0;
    color: var(--ink-muted);
    font-size: 14px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 730px);
    gap: 90px;
    align-items: start;
    padding-top: 74px;
    padding-bottom: 110px;
}

.legal-nav {
    position: sticky;
    top: 105px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line-strong);
}

.legal-nav p {
    margin: 0 0 8px;
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.legal-nav a {
    color: var(--ink-soft);
    font-size: 12px;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--blue);
}

.legal-content > p:first-child {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 18px;
}

.legal-content section {
    padding: 31px 0;
    border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
    border-bottom: 0;
}

.legal-content h2 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.3;
}

.legal-content h3 {
    margin: 22px 0 8px;
    font-size: 16px;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    font-size: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
}

.legal-content li {
    margin: 7px 0;
}

.legal-content a {
    color: var(--blue);
}

.legal-callout {
    padding: 18px 20px;
    border-left: 3px solid var(--blue);
    background: var(--blue-light);
}

@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 820px;
    }

    .product-window {
        width: 860px;
        min-width: 0;
    }

    .hero-shot {
        width: 100%;
        min-width: 0;
    }

    .split-layout,
    .ai-section-grid {
        gap: 65px;
    }

    .company-grid,
    .trust-grid {
        gap: 70px;
    }
}

@media (max-width: 980px) {
    .site-header {
        width: 100%;
        max-width: 100vw;
    }

    .nav-shell,
    .brand {
        min-width: 0;
    }

    .menu-button {
        display: block;
        flex: 0 0 44px;
        touch-action: manipulation;
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(3.5px) rotate(45deg);
    }

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

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 22px 24px 40px;
        background: var(--paper);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav > a:not(.button) {
        flex: 0 0 auto;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
    }

    .nav-divider {
        display: none;
    }

    .main-nav .button {
        flex: 0 0 auto;
        margin-top: 18px;
    }

    .product-window {
        width: 100%;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 0;
    }

    .proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .proof-grid > div:nth-child(3) {
        padding-left: 0;
    }

    .journey-step {
        grid-template-columns: 60px 1fr;
    }

    .journey-step > div {
        grid-template-columns: 120px 1fr;
    }

    .journey-step p:last-child {
        grid-column: 2;
    }

    .split-layout,
    .ai-section-grid,
    .company-grid,
    .trust-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .capability-stack {
        max-width: 600px;
    }

    .ai-demo {
        max-width: 650px;
    }

    .hosting-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hosting-showcase {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hosting-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
    }

    .hosting-feature-large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 400px;
    }

    .pricing-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-heading > p {
        max-width: 650px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-nav {
        position: static;
        display: none;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .section {
        padding: 78px 0;
    }

    h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    .hero {
        padding: 125px 0 60px;
        background:
            linear-gradient(var(--line), var(--line)) 50% 100% / calc(100% - 32px) 1px no-repeat,
            var(--canvas-warm);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .shot-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .product-shot figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .product-shot-dark,
    .ai-product-shot {
        transform: none;
    }

    .workspace {
        min-height: 390px;
        grid-template-columns: 92px minmax(260px, 1fr);
    }

    .product-window {
        overflow-x: auto;
    }

    .pricing-table-wrap {
        overflow: visible;
        border-top: 0;
    }

    .pricing-table {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody {
        display: grid;
        gap: 14px;
    }

    .pricing-table tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 18px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--canvas);
    }

    .pricing-table th,
    .pricing-table td {
        min-width: 0;
        padding: 0;
        border: 0;
    }

    .pricing-table td:first-child {
        grid-column: 1 / -1;
        padding: 0 0 13px;
        border-bottom: 1px solid var(--line);
    }

    .pricing-table td:nth-child(n + 2):nth-child(-n + 5) {
        display: flex;
        min-height: 39px;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
    }

    .pricing-table td:nth-child(n + 2):nth-child(-n + 5)::before {
        color: var(--ink-muted);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .pricing-table td:nth-child(2)::before {
        content: "Processador";
    }

    .pricing-table td:nth-child(3)::before {
        content: "Memória";
    }

    .pricing-table td:nth-child(4)::before {
        content: "NVMe";
    }

    .pricing-table td:nth-child(5)::before {
        content: "Backups";
    }

    .pricing-table td:nth-child(6) {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 0 12px;
        padding-top: 15px;
    }

    .pricing-table td:nth-child(6)::before {
        content: "Preço mensal";
        grid-row: 1 / span 2;
        align-self: center;
        color: var(--ink-muted);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .pricing-table td:nth-child(6) strong,
    .pricing-table td:nth-child(6) small {
        grid-column: 2;
        text-align: right;
    }

    .pricing-table td:nth-child(7) {
        grid-column: 1 / -1;
        margin-top: 14px;
        text-align: left;
    }

    .pricing-table td:nth-child(7) a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        border: 1px solid rgba(36, 153, 238, .42);
        border-radius: var(--radius-sm);
        background: var(--blue-light);
        font-size: 13px;
    }

    .pricing-table tr.recommended {
        border-color: rgba(36, 153, 238, .55);
        background: #0c1726;
    }

    .pricing-table tr.recommended td:first-child {
        padding: 0 0 13px;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .file-tree {
        padding-right: 7px;
        padding-left: 7px;
    }

    .tree-root,
    .tree-item {
        padding-right: 3px;
        padding-left: 3px;
        font-size: 8px;
    }

    .tree-file {
        padding-left: 15px;
    }

    .ai-pane {
        display: none;
    }

    .code {
        font-size: 8px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid > div {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .proof-grid > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 48px;
        text-align: left;
    }

    .section-heading .eyebrow {
        justify-content: flex-start;
    }

    .section-heading > p:last-child {
        margin-left: 0;
        font-size: 16px;
    }

    .journey-step {
        grid-template-columns: 35px 1fr;
        gap: 15px;
    }

    .journey-step > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .journey-step p:last-child {
        grid-column: auto;
    }

    .capability-offset {
        margin-left: 0;
    }

    .capability-stack::before {
        display: none;
    }

    .plain-features {
        grid-template-columns: 1fr;
    }

    .plain-features > div:first-child {
        grid-column: auto;
    }

    .ai-section-grid {
        gap: 50px;
    }

    .ai-demo {
        padding: 15px;
    }

    .demo-model {
        max-width: 125px;
        text-align: right;
    }

    .hosting-grid {
        grid-template-columns: 1fr;
    }

    .hosting-points {
        grid-template-columns: 1fr;
    }

    .hosting-feature-large {
        grid-column: auto;
        min-height: 390px;
    }

    .ai-pricing {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .ai-pricing .button {
        width: 100%;
    }

    .company-facts {
        grid-template-columns: 1fr;
    }

    .company-facts > div:last-child {
        grid-column: auto;
    }

    .trust-list > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        min-height: 420px;
    }

    .final-cta-inner > div:last-child {
        align-items: stretch;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .legal-hero {
        padding: 125px 0 48px;
    }

    .legal-layout {
        padding-top: 45px;
        padding-bottom: 75px;
    }
}

@media (max-width: 460px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
