:root {
    --white: #ffffff;
    --navy-950: #030815;
    --navy-900: #07101f;
    --navy-850: #0b1628;
    --ink: #091322;
    --ink-soft: rgba(9, 19, 34, 0.72);
    --ink-inverse: rgba(255, 255, 255, 0.96);
    --ink-inverse-soft: rgba(255, 255, 255, 0.74);
    --line: rgba(9, 19, 34, 0.12);
    --line-inverse: rgba(255, 255, 255, 0.14);
    --red: #ff3b30;
    --red-deep: #cf1f17;
    --red-soft: rgba(255, 59, 48, 0.14);
    --shadow: 0 34px 92px rgba(5, 10, 22, 0.2);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

a {
    color: inherit;
}

.section-heading {
    margin: 0;
}

.section-heading::before {
    content: none;
}

.section-heading--center::before {
    content: none;
}

.marketing-page {
    overflow: clip;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 16px;
    left: 50%;
    width: min(calc(100% - 32px), 1220px);
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    color: var(--ink-inverse);
    background: rgba(3, 8, 21, 0.72);
    box-shadow: 0 18px 52px rgba(3, 8, 21, 0.24);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.site-footer-brand {
    text-decoration: none;
}

.site-nav,
.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.site-nav {
    justify-content: flex-start;
}

.site-nav a,
.site-footer-nav a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-footer-nav a:hover,
.site-footer-nav a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.site-header-cta {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--red);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(255, 59, 48, 0.24);
}

.site-footer {
    padding: 28px 24px;
    color: var(--ink-inverse);
    background: var(--navy-950);
}

.site-footer-inner {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-footer-brand {
    color: var(--ink-inverse);
    font-family: "Copperplate Gothic Light", "Copperplate Gothic", "Copperplate", "Palatino Linotype", serif;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-shell {
    min-height: 100svh;
    padding-top: 94px;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 59, 48, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(241, 244, 248, 0.96), rgba(255, 255, 255, 1) 46%);
}

.page-hero,
.placeholder-page,
.feature-detail-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.page-hero,
.placeholder-page {
    display: grid;
    gap: 18px;
    padding: 56px 24px 34px;
}

.page-hero h1,
.placeholder-page h1 {
    margin: 0;
    max-width: 12ch;
    color: var(--ink);
    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1.02;
}

.page-hero p,
.placeholder-page p {
    margin: 0;
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.55;
}

.placeholder-page {
    min-height: 62svh;
    align-content: center;
}

.feature-detail-shell {
    display: grid;
    gap: 18px;
    padding: 0 24px 80px;
}

.feature-detail-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-detail-nav a {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.feature-detail-nav a.is-active,
.feature-detail-nav a:hover {
    color: var(--white);
    border-color: rgba(255, 59, 48, 0.22);
    background: var(--red);
}

.feature-page-panel {
    min-height: 540px;
}

.hero,
.story-section,
.final-cta {
    position: relative;
}

.hero {
    height: 100svh;
    min-height: 100svh;
    padding: 24px;
    color: var(--ink-inverse);
    background: var(--navy-950);
}

@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
        min-height: 100dvh;
    }
}

.hero-backdrop,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.2), transparent 34%),
        radial-gradient(circle at 75% 58%, rgba(255, 59, 48, 0.2), transparent 30%),
        url("../assets/images/stock/abstract_original.png") center center / cover no-repeat;
    transform: translate3d(0, calc(var(--parallax-shift, 0px) * 1.25), 0) scale(calc(1 + var(--parallax-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(3, 8, 21, 0.22), rgba(3, 8, 21, 0.82)),
        linear-gradient(120deg, rgba(255, 59, 48, 0.1), transparent 38%);
}

.hero-inner,
.story-grid,
.cta-shell {
    position: relative;
    z-index: 1;
}

.hero-inner,
.story-grid,
.cta-shell {
    max-width: 1220px;
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 22px;
    height: 100%;
    text-align: center;
}

.hero-logo {
    width: min(760px, 88vw);
    margin-top: 12px;
}

.eyebrow,
.section-kicker {
    margin: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    max-width: 820px;
    color: var(--ink-inverse-soft);
}

.hero-copy {
    max-width: 860px;
    margin: 0;
    color: var(--ink-inverse-soft);
    font-size: clamp(22px, 2.5vw, 31px);
    line-height: 1.42;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: var(--ink-inverse);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}

[hidden] {
    display: none !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 20px 44px rgba(255, 59, 48, 0.28);
}

.button.primary:hover {
    background: var(--red-deep);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
}

.story-section {
    padding: 64px 24px;
}

.story-section-light {
    background: var(--white);
    color: var(--ink);
}

.story-section-dark {
    background:
        linear-gradient(140deg, rgba(255, 59, 48, 0.08), transparent 36%),
        var(--navy-900);
    color: var(--ink-inverse);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
    gap: 40px;
    align-items: center;
}

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

.story-grid-reverse .story-media {
    order: 1;
}

.story-grid-tight {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.pricing-section {
    padding-bottom: 80px;
}

.experience-section {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 59, 48, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(241, 244, 248, 0.92), rgba(255, 255, 255, 1));
}

.experience-shell {
    display: grid;
    gap: 28px;
    max-width: 1220px;
    margin: 0 auto;
}

.experience-copy h2 {
    max-width: 10ch;
}

.experience-copy p {
    max-width: 65ch;
}

.experience-copy,
.experience-grid {
    opacity: 1;
    transform: none;
}

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

.feature-tile {
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 238px;
    padding: 22px;
    border: 1px solid rgba(9, 19, 34, 0.1);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.98));
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 52px rgba(8, 15, 28, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    text-decoration: none;
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(8, 15, 28, 0.12);
}

.feature-tile:focus-visible {
    outline: 2px solid rgba(255, 59, 48, 0.5);
    outline-offset: 3px;
}

.feature-tile.is-active {
    border-color: rgba(255, 59, 48, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 245, 243, 1));
    box-shadow: 0 28px 80px rgba(255, 59, 48, 0.16);
}

.feature-tile-index {
    color: rgba(255, 59, 48, 0.86);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.feature-tile-title {
    font-size: 28px;
    line-height: 1;
}

.feature-tile-preview {
    display: grid;
    gap: 8px;
    min-height: 74px;
    padding: 10px;
    border: 1px solid rgba(9, 19, 34, 0.07);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 244, 248, 0.94));
    overflow: hidden;
}

.feature-tile-preview span {
    display: block;
    border-radius: 10px;
    background: rgba(9, 19, 34, 0.12);
}

.tile-preview-browser {
    grid-template-columns: 0.44fr 1fr;
}

.tile-preview-browser span:first-child {
    grid-row: span 3;
    border-radius: 10px;
    background: rgba(255, 59, 48, 0.26);
}

.tile-preview-permissions {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
}

.tile-preview-permissions span {
    height: 44px;
    border-radius: 10px;
}

.tile-preview-permissions span:first-child {
    background: rgba(255, 59, 48, 0.26);
}

.tile-preview-previews {
    position: relative;
    grid-template-columns: 1fr;
}

.tile-preview-previews::after {
    content: "DWI";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) rotate(-24deg);
    color: rgba(255, 59, 48, 0.18);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tile-preview-requests,
.tile-preview-qna {
    grid-template-columns: repeat(3, 1fr);
}

.tile-preview-requests span,
.tile-preview-qna span {
    border-radius: 10px;
}

.tile-preview-requests span:first-child,
.tile-preview-qna span:nth-child(2),
.tile-preview-analytics span:nth-child(2) {
    background: rgba(255, 59, 48, 0.26);
}

.tile-preview-analytics {
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
}

.tile-preview-analytics span {
    border-radius: 10px;
}

.tile-preview-analytics span:first-child {
    height: 32px;
}

.tile-preview-analytics span:nth-child(2) {
    height: 54px;
}

.tile-preview-analytics span:nth-child(3) {
    height: 42px;
}

.feature-tile-copy {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}

.feature-stage {
    position: relative;
    margin-top: 22px;
    min-height: 540px;
}

.feature-panel,
.feature-stage-empty {
    border: 1px solid rgba(9, 19, 34, 0.08);
    border-radius: 10px;
    background:
        linear-gradient(160deg, rgba(8, 16, 31, 0.98), rgba(14, 28, 48, 0.96));
    color: var(--ink-inverse);
    box-shadow: 0 40px 110px rgba(5, 10, 22, 0.22);
}

.feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
    gap: 28px;
    padding: 30px;
}

.feature-panel-copy {
    display: grid;
    align-content: start;
    gap: 16px;
}

.feature-panel-kicker {
    margin: 0;
    color: rgba(255, 104, 95, 0.95);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.feature-panel-copy h2,
.feature-panel-copy h3 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    max-width: 11ch;
}

.feature-panel-copy p {
    margin: 0;
    color: var(--ink-inverse-soft);
    font-size: 18px;
    line-height: 1.6;
}

.feature-panel-list {
    display: grid;
    gap: 12px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.feature-panel-list li {
    padding-top: 12px;
    border-top: 1px solid var(--line-inverse);
    color: var(--ink-inverse-soft);
    font-size: 15px;
    line-height: 1.55;
}

.feature-stage-empty {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 24px;
}

.feature-stage-empty p {
    margin: 0;
    max-width: 22ch;
    color: var(--ink-inverse-soft);
    font-size: 20px;
    line-height: 1.45;
    text-align: center;
}

.feature-preview {
    display: flex;
    align-items: stretch;
}

.preview-window {
    width: 100%;
    min-height: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 248, 0.98));
    color: var(--ink);
}

.preview-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: rgba(9, 19, 34, 0.18);
}

.preview-topbar span:first-child {
    background: rgba(255, 59, 48, 0.84);
}

.preview-browser-layout,
.preview-qna-layout {
    display: grid;
    gap: 14px;
}

.preview-browser-layout {
    grid-template-columns: 120px minmax(0, 1fr);
}

.preview-sidebar,
.preview-thread-list {
    display: grid;
    gap: 10px;
}

.preview-sidebar-block,
.preview-thread-item,
.preview-sidecard-row,
.preview-ranking-row {
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(9, 19, 34, 0.08), rgba(9, 19, 34, 0.14));
}

.preview-sidebar-block.is-strong,
.preview-thread-item.is-active,
.preview-thread-bubble.is-strong,
.preview-request-card.is-alert {
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.2), rgba(255, 59, 48, 0.34));
}

.preview-browser-main,
.preview-thread-pane,
.preview-permission-matrix,
.preview-chart {
    display: grid;
    gap: 14px;
}

.preview-toolbar,
.preview-pill-row,
.preview-attachment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-chip,
.preview-pill,
.preview-attachment {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 19, 34, 0.08);
    color: rgba(9, 19, 34, 0.74);
    font-size: 13px;
    font-weight: 600;
}

.preview-chip.is-soft,
.preview-pill,
.preview-attachment {
    background: rgba(9, 19, 34, 0.05);
}

.preview-pill.is-red {
    background: rgba(255, 59, 48, 0.14);
    color: rgba(188, 31, 21, 0.96);
}

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

.preview-file-card,
.preview-request-card,
.preview-thread-bubble {
    min-height: 88px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(9, 19, 34, 0.07), rgba(9, 19, 34, 0.12));
}

.preview-file-card.is-wide {
    grid-column: 1 / -1;
    min-height: 118px;
}

.preview-matrix-header,
.preview-request-column p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(9, 19, 34, 0.54);
}

.preview-matrix-list,
.preview-request-board {
    display: grid;
    gap: 12px;
}

.preview-matrix-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(9, 19, 34, 0.05);
    color: rgba(9, 19, 34, 0.8);
    font-size: 14px;
}

.preview-matrix-row strong {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.preview-document {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 14px;
}

.preview-document-page {
    position: relative;
    min-height: 300px;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(243, 245, 249, 1));
    border: 1px solid rgba(9, 19, 34, 0.08);
}

.preview-watermark {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) rotate(-27deg);
    color: rgba(255, 59, 48, 0.14);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.preview-lines {
    height: 100%;
    border-radius: 10px;
    background:
        repeating-linear-gradient(180deg, rgba(9, 19, 34, 0.08) 0 8px, transparent 8px 22px);
}

.preview-sidecard {
    display: grid;
    align-content: start;
    gap: 10px;
}

.preview-sidecard-row.is-short,
.preview-ranking-row.is-short {
    width: 70%;
}

.preview-request-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-request-column {
    display: grid;
    gap: 10px;
}

.preview-request-card {
    min-height: 104px;
}

.preview-request-card.is-complete {
    background: linear-gradient(180deg, rgba(25, 150, 86, 0.16), rgba(25, 150, 86, 0.26));
}

.preview-request-card.is-muted {
    background: linear-gradient(180deg, rgba(9, 19, 34, 0.05), rgba(9, 19, 34, 0.09));
}

.preview-qna-layout {
    grid-template-columns: 180px minmax(0, 1fr);
}

.preview-thread-pane {
    align-content: start;
}

.preview-thread-bubble {
    min-height: 72px;
}

.preview-attachment {
    width: 96px;
    padding: 0;
}

.preview-chart-bars {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
    min-height: 220px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(9, 19, 34, 0.04);
}

.preview-chart-bars span {
    height: var(--bar-height);
    min-height: 36px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 59, 48, 0.48), rgba(255, 59, 48, 0.9));
}

.pricing-shell {
    display: grid;
    gap: 28px;
    max-width: 1220px;
    margin: 0 auto;
}

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

.pricing-copy .pricing-note {
    max-width: 62ch;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
}

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

.pricing-card {
    display: grid;
    align-content: start;
    align-items: start;
    grid-auto-rows: max-content;
    gap: 14px;
    padding: 26px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 245, 249, 0.98));
    box-shadow: 0 18px 48px rgba(8, 15, 28, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(8, 15, 28, 0.12);
}

.pricing-card.is-featured {
    border-color: rgba(255, 59, 48, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 244, 243, 1));
    box-shadow: 0 28px 68px rgba(255, 59, 48, 0.12);
}

.pricing-card-kicker {
    margin: 0;
    color: rgba(255, 59, 48, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-card-title {
    max-width: none;
    margin-top: 2px;
    font-size: clamp(26px, 2vw, 36px);
    line-height: 1.06;
}

.pricing-card-description {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 16px;
    font-style: italic;
    line-height: 1.35;
}

.pricing-card-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card-list li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
}

.pricing-card-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: currentColor;
    opacity: 0.72;
}

.story-copy,
.story-media,
.cta-shell {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 700ms ease, transform 700ms ease;
}

.story-copy.is-visible,
.story-media.is-visible,
.cta-shell.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.story-copy[data-reveal="left"],
.story-media[data-reveal="left"] {
    transform: translate3d(-36px, 18px, 0);
}

.story-copy[data-reveal="right"],
.story-media[data-reveal="right"] {
    transform: translate3d(36px, 18px, 0);
}

.story-copy[data-reveal="up"],
.story-media[data-reveal="up"],
.cta-shell[data-reveal="up"] {
    transform: translate3d(0, 34px, 0);
}

.story-copy.is-visible[data-reveal],
.story-media.is-visible[data-reveal],
.cta-shell.is-visible[data-reveal] {
    transform: translate3d(0, 0, 0);
}

.experience-section .experience-copy {
    opacity: 1;
    transform: none;
}

.story-copy {
    display: grid;
    gap: 18px;
}

.section-kicker {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0;
    font-family: "Copperplate Gothic Light", "Copperplate Gothic", "Copperplate", "Palatino Linotype", serif;
    font-weight: 400;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: rgba(255, 59, 48, 0.9);
}

.section-kicker::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.story-section-dark .section-kicker,
.final-cta .section-kicker {
    color: rgba(255, 104, 95, 0.95);
}

.story-copy h2,
.cta-shell h2 {
    margin: 0;
    max-width: 12ch;
    letter-spacing: 0;
    font-size: clamp(34px, 5.6vw, 74px);
    line-height: 1.02;
}

.story-copy p,
.cta-shell p {
    margin: 0;
    max-width: 760px;
    color: var(--ink-soft);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.story-section-dark .story-copy p,
.final-cta p {
    color: var(--ink-inverse-soft);
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding-top: 13px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.55;
}

.story-section-dark .feature-list li {
    border-top-color: var(--line-inverse);
    color: var(--ink-inverse-soft);
}

.split-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 4px;
}

.split-points > div {
    padding-top: 16px;
    border-top: 1px solid var(--line-inverse);
}

.split-points h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2;
}

.split-points p {
    font-size: 16px;
    line-height: 1.55;
}

.story-media {
    display: flex;
    justify-content: center;
    transform: translate3d(0, calc(var(--parallax-shift, 0px) * 0.45), 0);
    will-change: transform, opacity;
}

.media-frame {
    width: min(100%, 500px);
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 240, 246, 0.98));
    box-shadow: var(--shadow);
}

.story-section-dark .media-frame {
    background: linear-gradient(180deg, rgba(15, 25, 45, 0.96), rgba(8, 16, 31, 0.96));
}

.media-frame img {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 10px;
    object-fit: cover;
}

.story-media.is-compact .media-frame {
    width: min(100%, 420px);
}

.media-frame-abstract {
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 59, 48, 0.12), rgba(9, 19, 34, 0.06));
}

.media-frame-abstract img {
    aspect-ratio: 1 / 1;
}

.final-cta {
    padding: 72px 24px 88px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 59, 48, 0.16), transparent 34%),
        var(--navy-950);
    color: var(--ink-inverse);
}

.cta-shell {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

.cta-shell h2 {
    max-width: 10ch;
}

.cta-shell p {
    max-width: 760px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr;
        justify-items: stretch;
        border-radius: 10px;
    }

    .site-nav {
        order: 3;
        justify-content: flex-start;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-grid,
    .story-grid-tight {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-grid,
    .feature-panel,
    .preview-document,
    .preview-request-board,
    .preview-qna-layout {
        grid-template-columns: 1fr;
    }

    .feature-stage {
        min-height: 0;
    }

    .feature-panel-copy h2,
    .feature-panel-copy h3 {
        max-width: 100%;
    }

    .preview-browser-layout {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .story-grid-reverse .story-copy,
    .story-grid-reverse .story-media {
        order: initial;
    }

    .story-copy h2,
    .cta-shell h2 {
        max-width: 100%;
    }

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

@media (max-width: 720px) {
    .site-header {
        position: absolute;
        top: 12px;
        width: min(calc(100% - 24px), 1220px);
    }

    .site-nav a {
        min-height: 30px;
        padding: 0 9px;
        font-size: 12px;
    }

    .site-header-cta {
        width: 100%;
    }

    .page-shell {
        padding-top: 154px;
    }

    .page-hero,
    .placeholder-page {
        padding-top: 36px;
    }

    .page-hero h1,
    .placeholder-page h1 {
        max-width: 100%;
        font-size: 40px;
    }

    .page-hero p,
    .placeholder-page p {
        font-size: 17px;
    }

    .hero {
        padding: 18px;
    }

    .story-section,
    .final-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-logo {
        width: min(560px, 94vw);
    }

    .hero-copy {
        font-size: clamp(18px, 5.8vw, 24px);
    }

    .hero-points {
        gap: 8px;
    }

    .hero-points li {
        font-size: 12px;
    }

    .pricing-card {
        padding: 22px 20px;
    }

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

    .feature-tile,
    .feature-panel {
        padding: 20px;
    }

    .feature-panel-copy p {
        font-size: 16px;
    }

    .media-frame,
    .story-media.is-compact .media-frame {
        width: min(100%, 440px);
    }
}

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

    .story-copy,
    .story-media,
    .cta-shell,
    .button,
    .hero-backdrop,
    .experience-grid,
    .feature-tile {
        transition: none;
        transform: none !important;
    }
}
