@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap");

:root {
    --bg-page: #fcfcfb;
    --bg-surface: #ffffff;
    --bg-surface-soft: rgba(255, 255, 255, 0.76);
    --bg-soft: #f7f3ee;
    --bg-soft-strong: #f1ebe2;
    --bg-inverse: #111111;

    --text-strong: #111111;
    --text-body: #272522;
    --text-muted: #6b6761;
    --text-subtle: #8a847c;
    --text-inverse: #ffffff;

    --line-soft: rgba(17, 17, 17, 0.035);
    --line-strong: rgba(17, 17, 17, 0.06);
    --line-emphasis: rgba(17, 17, 17, 0.1);

    --shadow-soft: 0 8px 24px rgba(17, 17, 17, 0.025);
    --shadow-card: 0 20px 54px rgba(17, 17, 17, 0.035);
    --shadow-float: 0 28px 72px rgba(17, 17, 17, 0.05);

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --content-width: 1240px;
    --measure: 60ch;

    --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
    --speed-fast: 160ms;
    --speed-base: 220ms;
    --speed-slow: 320ms;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-page);
    color: var(--text-body);
    font-family: "Manrope", Inter, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.page-background-gl {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    pointer-events: none;
    opacity: 0.88;
    filter: saturate(1.04);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
textarea {
    font: inherit;
}

.page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.page-view {
    display: none;
}

.page-view.is-active {
    display: block;
}

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

.section {
    padding: 128px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(244, 241, 236, 0.68), rgba(252, 252, 251, 0.8));
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading,
.section-intro {
    max-width: 52rem;
}

.section-heading {
    margin: 0 auto 56px;
    text-align: center;
}

.section-title,
.aside-title,
.cta-title {
    margin: 0;
    color: var(--text-strong);
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.section-description,
.aside-copy,
.cta-subtitle {
    margin: 22px 0 0;
    max-width: var(--measure);
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.section-heading .section-description {
    margin-left: auto;
    margin-right: auto;
}

.story-title-link {
    font-style: italic;
    text-decoration: none;
}

.story-title-link:hover {
    opacity: 0.72;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.02em;
    transition:
        transform var(--speed-fast) var(--ease-standard),
        background-color var(--speed-fast) ease,
        border-color var(--speed-fast) ease,
        box-shadow var(--speed-fast) ease,
        color var(--speed-fast) ease;
}

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

.button-primary {
    background: var(--bg-inverse);
    color: var(--text-inverse);
    box-shadow: var(--shadow-soft);
}

.button-primary:hover {
    box-shadow: var(--shadow-card);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line-soft);
    color: var(--text-strong);
}

.button-secondary:hover {
    border-color: var(--line-strong);
    background: var(--bg-surface);
}

.button-small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
}

.button-large {
    min-height: 52px;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(252, 252, 251, 0.92);
    transition:
        transform var(--speed-base) var(--ease-standard),
        box-shadow var(--speed-base) ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 38px rgba(17, 17, 17, 0.035);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    min-height: 74px;
}

.site-mark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    justify-self: start;
}

.site-mark-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.site-mark-icon img {
    width: 100%;
    object-fit: contain;
}

.site-mark-icon-logo img {
    transform: none;
}

.site-mark-label {
    color: var(--text-strong);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    gap: 34px;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 2px;
    border-radius: var(--radius-xs);
    color: var(--text-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition:
        background-color var(--speed-fast) ease,
        color var(--speed-fast) ease;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: var(--text-strong);
}

.site-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.header-cta {
    min-height: 32px;
    padding: 0 10px;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.32);
    color: var(--text-muted);
    box-shadow: none;
}

.header-cta:hover {
    background: rgba(255, 255, 255, 0.54);
    color: var(--text-strong);
    box-shadow: none;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-strong);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 2px 0;
    background: currentColor;
    transition:
        transform var(--speed-fast) ease,
        opacity var(--speed-fast) ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line-soft);
    background: rgba(252, 252, 251, 0.97);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav-inner {
    display: grid;
    gap: 8px;
    padding: 18px 0 22px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--text-body);
    border-bottom: 1px solid var(--line-soft);
}

.mobile-nav-link.active {
    color: var(--text-strong);
}

.mobile-nav-link:last-of-type {
    border-bottom: 0;
}

.mobile-nav-cta {
    width: 100%;
    margin-top: 8px;
}

.hero-section {
    position: relative;
    padding: 136px 0 116px;
}

.hero-stage {
    position: relative;
    overflow: visible;
    padding: 112px 0 92px;
    isolation: isolate;
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 50rem;
}

.hero-title {
    margin: 0;
    max-width: 11ch;
    color: var(--text-strong);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(78px, 10vw, 144px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.hero-description {
    margin: 28px 0 0;
    max-width: 36rem;
    color: var(--text-body);
    font-size: 18px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.hero-panel,
.editorial-card,
.aside-panel,
.stats-panel,
.pricing-card,
.cta-panel {
    background: var(--bg-surface-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.hero-panel {
    position: relative;
    z-index: 1;
    padding: 28px;
    backdrop-filter: blur(14px);
}

.section-product-preview {
    padding-top: 28px;
}

.product-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 56px;
    align-items: center;
}

.product-preview-copy {
    max-width: 34rem;
}

.product-preview-title {
    margin-top: 14px;
}

.product-preview-description {
    margin-top: 18px;
}

.product-preview-list {
    margin-top: 30px;
}

.product-preview-panel {
    padding: 24px;
}

.feature-card-header,
.line-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.panel-kicker,
.feature-slab-kicker,
.footer-column-title,
.site-footer-meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-pill,
.feature-card-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.7);
}

.preview-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    box-shadow: var(--shadow-soft);
}

.preview-image {
    width: 100%;
    height: auto;
}

.hero-panel-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 15px;
}

.hero-panel-note p {
    margin: 0;
}

.hero-panel-line {
    flex: none;
    width: 44px;
    height: 1px;
    background: rgba(17, 17, 17, 0.14);
}

.panel-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.panel-list-item {
    display: grid;
    gap: 6px;
    padding-top: 0;
}

.panel-list-title,
.feature-slab-title,
.line-card-title,
.feature-card-title,
.step-title,
.usecase-title,
.principle-title,
.pricing-title {
    margin: 0;
    color: var(--text-strong);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 650;
}

.panel-list-copy,
.feature-slab-copy,
.feature-card-copy,
.step-copy,
.usecase-copy,
.principle-copy,
.testimonial-text,
.pricing-description,
.faq-answer p,
.vision-content p,
.privacy-content p,
.privacy-content li {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.editorial-layout,
.split-section,
.proof-layout,
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 52px;
    align-items: start;
}

.editorial-card {
    padding: 42px;
}

.vision-content {
    max-width: 56rem;
}

.vision-content h1,
.privacy-content h1 {
    margin: 0 0 20px;
    color: var(--text-strong);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.vision-content h2,
.privacy-content h2 {
    margin: 32px 0 14px;
    color: var(--text-strong);
    font-size: clamp(26px, 2.8vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 650;
}

.vision-content h3,
.privacy-content h3 {
    margin: 26px 0 12px;
    color: var(--text-strong);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 650;
}

.vision-content p:last-child,
.privacy-content p:last-child {
    margin-bottom: 0;
}

.vision-content strong,
.privacy-content strong {
    color: var(--text-strong);
}

.line-card,
.feature-slab,
.principle-card,
.testimonial-card,
.usecase-item {
    padding: 22px 0 0;
    border-top: 1px solid var(--line-soft);
}

.split-card-stack,
.testimonial-stack,
.usecase-list {
    display: grid;
    gap: 20px;
}

.line-card-icon,
.feature-card-icon {
    font-size: 24px;
    line-height: 1;
}

.line-card-title {
    font-size: 20px;
    flex: 1;
}

.feature-slab {
    padding-top: 24px;
}

.feature-slab-title {
    margin-top: 10px;
}

.feature-slab-copy {
    margin: 12px 0 0;
}

.feature-grid,
.principle-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 28px;
    transition:
        transform var(--speed-fast) var(--ease-standard),
        box-shadow var(--speed-fast) ease,
        border-color var(--speed-fast) ease;
}

.feature-card:hover,
.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
}

.feature-card-title {
    margin-top: 20px;
}

.feature-card-copy {
    margin: 14px 0 0;
}

.section-story-intro {
    padding-bottom: 40px;
}

.story-intro-layout {
    display: block;
}

.story-section {
    padding: 92px 0;
}

.story-row {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 88px;
    align-items: center;
}

.story-row-reverse {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.story-row-reverse .story-copy {
    order: 2;
}

.story-row-reverse .story-demo {
    order: 1;
}

.story-copy {
    max-width: 30rem;
}

.story-index {
    margin: 0 0 18px;
    color: var(--text-subtle);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-title {
    margin: 0;
    color: var(--text-strong);
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(44px, 5vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.048em;
    font-weight: 500;
}

.story-description {
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.9;
}

.story-demo {
    min-width: 0;
}

.story-demo-shell {
    position: relative;
    min-height: 560px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.story-demo-shell::before,
.story-demo-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.story-demo-shell::before {
    top: 28px;
    right: 34px;
    width: 126px;
    height: 126px;
    background: radial-gradient(circle, rgba(194, 172, 150, 0.14), rgba(194, 172, 150, 0));
}

.story-demo-shell::after {
    left: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
    background: radial-gradient(circle, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0));
}

.story-demo-eyebrow {
    margin: 0;
    color: var(--text-subtle);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-demo-title {
    margin: 12px 0 0;
    color: var(--text-strong);
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: -0.04em;
    font-weight: 650;
}

.story-demo-copy {
    margin: 16px 0 0;
    max-width: 38rem;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.82;
}

.story-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.story-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.demo-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 22px;
    margin-top: 34px;
    padding: 18px 0;
}

.demo-workspace-column {
    display: grid;
    gap: 14px;
}

.demo-workspace-note-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.demo-workspace-note {
    display: grid;
    gap: 10px;
    padding: 20px 22px;
    background: rgba(252, 252, 251, 0.9);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.04);
}

.demo-workspace-note-large {
    min-height: 164px;
    align-content: start;
}

.demo-note-kicker {
    color: var(--text-subtle);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.demo-workspace-note strong {
    color: var(--text-strong);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.demo-workspace-rail {
    display: grid;
    align-content: center;
    gap: 14px;
}

.demo-workspace-rail span {
    display: block;
    width: 2px;
    height: 74px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.04));
}

.demo-constellation {
    position: relative;
    min-height: 250px;
    margin-top: 30px;
}

.demo-constellation::before,
.demo-constellation::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0));
    transform: translate(-50%, -50%);
}

.demo-constellation::after {
    width: 1px;
    height: 220px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0));
}

.demo-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 88px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 36px rgba(17, 17, 17, 0.05);
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.demo-node-1 { top: 0; left: 18%; }
.demo-node-2 { top: 28%; right: 0; }
.demo-node-3 { bottom: 2%; left: 28%; }
.demo-node-4 { top: 12%; left: 54%; }
.demo-node-5 { bottom: 18%; right: 14%; }

.demo-stack {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.demo-stack-layer {
    position: relative;
    min-height: 72px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
    display: flex;
    align-items: center;
}

.demo-stack-layer span {
    color: var(--text-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.demo-stack-layer-1 { margin-right: 82px; }
.demo-stack-layer-2 { margin-left: 18px; margin-right: 56px; }
.demo-stack-layer-3 { margin-left: 38px; margin-right: 30px; }
.demo-stack-layer-4 { margin-left: 58px; }

.story-point-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.story-point {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.story-point-mark {
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.66);
}

.story-point p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 700;
}

.step-copy {
    margin: 12px 0 0;
}

.aside-panel {
    padding: 30px;
    position: sticky;
    top: 108px;
}

.usecase-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.usecase-title {
    font-size: 19px;
}

.usecase-copy {
    margin: 10px 0 0;
}

.principle-card {
    text-align: left;
}

.principle-title {
    font-size: 20px;
}

.principle-copy {
    margin: 12px 0 0;
}

.proof-column {
    min-width: 0;
}

.testimonial-card:first-child,
.line-card:first-child,
.feature-slab:first-child {
    padding-top: 0;
    border-top: 0;
}

.testimonial-text {
    margin: 0;
    font-size: 17px;
}

.testimonial-author {
    margin: 14px 0 0;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 650;
}

.stats-panel {
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.stat-item {
    padding-top: 18px;
    border-top: 1px solid var(--line-soft);
}

.stat-number {
    color: var(--text-strong);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.stat-label {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
}

.pricing-card-featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 236, 0.92));
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.04);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-price {
    margin-top: 18px;
    color: var(--text-strong);
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.pricing-price span {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
}

.pricing-description {
    margin: 14px 0 0;
}

.pricing-features {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.pricing-features li {
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
    color: var(--text-body);
    font-size: 15px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    padding: 0 24px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--text-strong);
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}

.faq-icon {
    flex: none;
    color: var(--text-muted);
    font-size: 24px;
    line-height: 1;
    transition: transform var(--speed-fast) ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--speed-slow) var(--ease-standard);
}

.faq-answer p {
    margin: 0;
    padding: 0 0 22px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.cta-panel {
    padding: 72px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 236, 0.88));
}

.cta-title {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.section-privacy-page {
    padding: 120px 0 96px;
}

.privacy-content {
    max-width: 60rem;
    margin: 0 auto;
}

.privacy-content ul {
    margin: 0 0 18px;
    padding-left: 1.4rem;
}

.privacy-content a {
    color: var(--text-strong);
    text-decoration: underline;
    text-decoration-color: rgba(17, 17, 17, 0.18);
    transition: text-decoration-color var(--speed-fast) ease;
}

.privacy-content a:hover {
    text-decoration-color: rgba(17, 17, 17, 0.42);
}

.site-footer {
    padding: 76px 0 52px;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    padding-top: 26px;
    border-top: 1px solid var(--line-soft);
}

.site-footer-brand {
    max-width: 30rem;
}

.site-footer-copy {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.site-footer-meta {
    margin-top: 18px;
    letter-spacing: 0.08em;
}

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

.footer-column-links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.footer-column-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--speed-fast) ease;
}

.footer-column-links a:hover {
    color: var(--text-strong);
}

.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity var(--speed-slow) var(--ease-standard),
        transform var(--speed-slow) var(--ease-standard);
}

.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {

    .hero-grid,
    .editorial-layout,
    .split-section,
    .proof-layout,
    .faq-layout,
    .workflow-layout,
    .site-footer-inner,
    .story-row,
    .story-row-reverse {
        grid-template-columns: 1fr;
    }

    .story-row,
    .story-row-reverse {
        gap: 42px;
    }

    .story-row-reverse .story-copy,
    .story-row-reverse .story-demo {
        order: initial;
    }

    .feature-grid,
    .principle-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-preview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .aside-panel {
        position: static;
    }

    .site-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 72px;
        gap: 24px;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-mark-icon {
        width: 40px;
        height: 40px;
    }

    .hero-section {
        padding: 112px 0 90px;
    }

    .hero-stage {
        padding: 88px 0 64px;
    }

    .section {
        padding: 96px 0;
    }

    .story-section {
        padding: 72px 0;
    }

    .story-demo-shell {
        min-height: 0;
    }

    .feature-grid,
    .principle-grid,
    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-title,
    .section-title,
    .aside-title,
    .cta-title,
    .vision-content h1,
    .privacy-content h1 {
        max-width: none;
    }

    .hero-panel,
    .editorial-card,
    .aside-panel,
    .stats-panel,
    .pricing-card,
    .cta-panel,
    .feature-card,
    .step-card {
        padding: 24px;
    }

    .hero-stage {
        padding: 76px 0 48px;
    }

    .story-demo-shell {
        padding: 28px 24px;
    }

    .demo-workspace,
    .demo-workspace-note-row {
        grid-template-columns: 1fr;
    }

    .demo-workspace-rail {
        display: none;
    }

    .demo-constellation {
        min-height: 360px;
    }

    .demo-node-1 { top: 0; left: 0; }
    .demo-node-2 { top: 18%; right: 0; }
    .demo-node-3 { bottom: 0; left: 8%; }
    .demo-node-4 { top: 42%; left: 20%; }
    .demo-node-5 { bottom: 18%; right: 4%; }

    .page-background-gl {
        opacity: 0.58;
    }

    .hero-actions,
    .cta-buttons,
    .cta-benefits {
        flex-direction: column;
        align-items: stretch;
    }

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

    .faq-item {
        padding: 0 18px;
    }

    .site-footer-links {
        grid-template-columns: 1fr;
    }

    .section-privacy-page {
        padding: 104px 0 72px;
    }
}