:root {
    --paper: #f2f0e9;
    --paper-bright: #faf9f5;
    --ink: #17211d;
    --ink-soft: #33423b;
    --muted: #68736e;
    --line: rgba(23, 33, 29, 0.2);
    --line-strong: rgba(23, 33, 29, 0.48);
    --blue: #5058d9;
    --blue-deep: #31389f;
    --blue-soft: #e1e3ff;
    --acid: #d8ff68;
    --acid-soft: #ecffc0;
    --orange: #ee704f;
    --dark: #14251f;
    --white: #fffefb;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

.landing-body button,
.landing-body a,
.landing-body textarea { font: inherit; }

.landing-body a { color: inherit; }
.landing-body button { color: inherit; }

.landing-body :focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--acid);
    padding: 10px 16px;
    font-weight: 700;
}

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

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

.landing-header {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(1500px, calc(100% - 64px));
    min-height: 78px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.landing-header.is-stuck {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 max(32px, calc((100vw - 1436px) / 2));
    background: rgba(242, 240, 233, 0.9);
    box-shadow: 0 12px 40px rgba(23, 33, 29, 0.08);
    backdrop-filter: blur(16px);
}

.landing-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand-flower {
    width: 31px;
    height: 31px;
    overflow: visible;
    fill: var(--blue);
}

.brand-flower circle { fill: var(--acid); }

.landing-nav {
    display: flex;
    gap: clamp(20px, 2.5vw, 42px);
    font-size: 13px;
    font-weight: 600;
}

.landing-nav a,
.text-link,
.landing-footer a {
    text-decoration: none;
    transition: opacity 150ms ease;
}

.landing-nav a:hover,
.text-link:hover,
.landing-footer a:hover { opacity: 0.55; }

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 650;
}

.small-cta,
.primary-cta,
.professional-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: var(--ink);
    color: var(--white) !important;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease;
}

.small-cta { padding: 12px 16px; }

.small-cta:hover,
.primary-cta:hover,
.professional-cta:hover {
    transform: translateY(-2px);
    background: var(--blue);
}

.landing-hero,
.work-removed,
.simple-process,
.offer-section,
.landing-footer {
    width: min(1500px, calc(100% - 64px));
    margin-inline: auto;
}

.landing-hero {
    padding: 34px 0 0;
}

.audience-switcher {
    display: grid;
    grid-template-columns: auto minmax(420px, 0.72fr) 1fr;
    align-items: stretch;
    gap: 0;
    min-height: 58px;
    border: 1px solid var(--ink);
    background: var(--paper-bright);
}

.audience-prompt,
.audience-status {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.audience-prompt { border-right: 1px solid var(--ink); }
.audience-status { justify-content: flex-end; color: var(--muted); }

.audience-switcher > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.audience-switcher button {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 0;
    border-right: 1px solid var(--ink);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.audience-switcher button:first-child { border-left: 0; }

.audience-switcher button small {
    font-family: var(--mono);
    font-size: 8px;
    opacity: 0.58;
}

.audience-switcher button span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.audience-switcher button:hover { background: var(--acid-soft); }
.audience-switcher button.is-active { background: var(--acid); }
.audience-switcher button[data-audience-button="professional"]:hover { background: var(--blue-soft); }
.audience-switcher button[data-audience-button="professional"].is-active { background: var(--blue); color: white; }

.landing-body[data-audience="professional"] .audience-buyer-only { display: none; }

.landing-body[data-audience="professional"] .landing-hero {
    background: radial-gradient(circle at 72% 46%, rgba(225, 227, 255, 0.65), transparent 27rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    min-height: 650px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.eyebrow.light { color: rgba(255, 255, 255, 0.78); }
.eyebrow.light > span { background: var(--acid); }

.hero-copy h1,
.section-heading h2,
.studio-intro h2,
.professional-copy h2,
.final-cta h2,
.offer-copy h2 {
    margin: 0;
    font-size: clamp(56px, 6.6vw, 104px);
    font-weight: 580;
    letter-spacing: -0.075em;
    line-height: 0.88;
}

.hero-copy h1 em,
.professional-copy h2 em {
    color: var(--blue);
    font-family: var(--serif);
    font-weight: 400;
}

.hero-copy .eyebrow b,
.section-heading .eyebrow b {
    font: inherit;
}

.hero-lede {
    max-width: 640px;
    margin: 36px 0 0;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.6vw, 24px);
    letter-spacing: -0.025em;
    line-height: 1.38;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.primary-cta {
    min-width: 244px;
    padding: 17px 19px;
    font-size: 14px;
    font-weight: 700;
}

.secondary-cta {
    display: inline-flex;
    gap: 18px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.hero-reassurance {
    margin: 20px 0 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.hero-signal {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.hero-signal::before {
    content: "";
    position: absolute;
    inset: 7% 0 5% 15%;
    z-index: -2;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, var(--acid-soft) 0, rgba(216, 255, 104, 0.45) 32%, transparent 67%);
    filter: blur(6px);
}

.signal-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(80, 88, 217, 0.22);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.orbit-one { inset: 8% 5% 10% 12%; }
.orbit-two { inset: 19% 14% 20% 22%; transform: rotate(25deg); }

.signal-card {
    position: absolute;
    width: min(330px, 56%);
    padding: 22px;
    border: 1px solid var(--ink);
    background: rgba(250, 249, 245, 0.94);
    box-shadow: 10px 12px 0 rgba(23, 33, 29, 0.12);
}

.signal-request {
    top: 7%;
    left: 0;
    transform: rotate(-2deg);
}

.signal-result {
    right: 0;
    bottom: 10%;
    transform: rotate(2deg);
}

.signal-label,
.panel-topline,
.scope-state,
.resolved-intro {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signal-card p {
    margin: 28px 0 0;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.result-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.result-row:first-of-type { margin-top: 19px; border-top: 1px solid var(--line); }
.result-row strong { color: var(--blue); }

.signal-core {
    position: absolute;
    top: 49%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    box-shadow: 0 0 0 12px rgba(80, 88, 217, 0.1), 0 22px 50px rgba(49, 56, 159, 0.28);
    transform: translate(-50%, -50%);
    animation: signal-float 5s ease-in-out infinite;
}

.signal-core svg {
    width: 46px;
    fill: var(--acid);
}

.signal-core strong { font-size: 17px; letter-spacing: -0.03em; }
.signal-core > span { font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: 0.07em; }

.signal-line {
    position: absolute;
    top: 49%;
    left: 22%;
    right: 21%;
    height: 1px;
    overflow: hidden;
    background: rgba(23, 33, 29, 0.25);
    transform: rotate(31deg);
}

.signal-line span {
    display: block;
    width: 22%;
    height: 100%;
    background: var(--blue);
    animation: signal-travel 2.5s ease-in-out infinite;
}

.signal-caption {
    position: absolute;
    right: 6%;
    bottom: 0;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

@keyframes signal-float {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 10px)); }
}

@keyframes signal-travel {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(560%); }
}

.proof-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.proof-line span {
    padding: 18px 20px;
    border-right: 1px solid var(--line-strong);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
}

.proof-line span:last-child { border-right: 0; }

.work-removed { padding: clamp(110px, 12vw, 190px) 0; }

.section-heading { max-width: 940px; }
.section-heading h2 { font-size: clamp(48px, 5.7vw, 86px); }

.section-heading > p:last-child {
    max-width: 650px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 20px;
    letter-spacing: -0.02em;
}

.friction-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
    margin-top: 72px;
    border: 1px solid var(--ink);
    background: var(--paper-bright);
}

.friction-column { padding: clamp(28px, 3vw, 48px); }
.buyer-friction { border-right: 1px solid var(--ink); }
.professional-friction { border-left: 1px solid var(--ink); }

.friction-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 68px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ink);
}

.person-dot {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 50%;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 800;
}

.buyer-dot { background: var(--acid); }
.professional-dot { background: var(--blue); color: white; }

.friction-heading small {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.friction-heading h3 {
    margin: 3px 0 0;
    font-size: 18px;
    letter-spacing: -0.035em;
}

.friction-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 18px 0 0;
    list-style: none;
}

.friction-list li {
    position: relative;
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.friction-list li > span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.friction-list li p {
    position: relative;
    width: fit-content;
    margin: 0;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 650;
    letter-spacing: -0.02em;
    transition: color 350ms ease;
}

.friction-list li p::after {
    content: "";
    position: absolute;
    top: 52%;
    left: -3px;
    width: calc(100% + 6px);
    height: 2px;
    background: var(--orange);
    transform: scaleX(0) rotate(-1deg);
    transform-origin: left;
    transition: transform 500ms cubic-bezier(.22,.8,.2,1);
}

.professional-friction .friction-list li p::after { background: var(--blue); }
.pro-pain-friction .friction-list li p::after { background: var(--blue); }

.friction-list li i {
    opacity: 0;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateX(8px);
    transition: opacity 250ms ease, transform 250ms ease;
}

.professional-friction .friction-list li i { color: var(--blue); }
.pro-pain-friction .friction-list li i { color: var(--blue); }
.friction-list li.is-removed p { color: #9da49f; }
.friction-list li.is-removed p::after { transform: scaleX(1) rotate(-1deg); }
.friction-list li.is-removed i { opacity: 1; transform: translateX(0); }

.benefit-dot {
    background: var(--acid);
    color: var(--blue-deep);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 18px 0 0;
    list-style: none;
}

.benefit-list li {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    border-bottom: 1px solid var(--line);
}

.benefit-list li > span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.benefit-list li p {
    margin: 0;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-list li i {
    padding: 3px 6px;
    background: var(--blue-soft);
    color: var(--blue-deep);
    font-family: var(--mono);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.professional-friction-stage {
    background: #f8f7f2;
}

.professional-rail .rail-badge {
    background: var(--blue);
    color: white;
}

.professional-rail .rail-badge svg { fill: var(--acid); }
.professional-resolved { background: var(--blue-soft); }

.managed-rail {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto 1fr auto;
    place-items: center;
    padding: 34px 0;
    background: var(--ink);
    color: white;
}

.managed-rail > span {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rail-line {
    width: 1px;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
}

.rail-line i {
    display: block;
    width: 100%;
    height: 26%;
    background: var(--acid);
    animation: rail-travel 2.5s ease-in-out infinite;
}

.rail-line:nth-of-type(2) i { animation-delay: 1.25s; }

@keyframes rail-travel {
    0% { transform: translateY(-110%); }
    100% { transform: translateY(390%); }
}

.rail-badge {
    display: grid;
    place-items: center;
    gap: 8px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--acid);
    color: var(--ink);
    text-align: center;
}

.rail-badge svg { width: 32px; fill: var(--blue); }
.rail-badge span { font-size: 12px; font-weight: 800; line-height: 1.1; }

.replay-friction {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.resolved-path {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--ink);
    border-top: 0;
    background: var(--acid);
}

.resolved-path > div { display: flex; align-items: baseline; gap: 9px; }
.resolved-path small { font-family: var(--mono); font-size: 8px; }
.resolved-path strong { font-size: 13px; }
.resolved-path > i { font-style: normal; }
.resolved-final { justify-self: end; }

.project-studio {
    padding: clamp(92px, 10vw, 160px) max(32px, calc((100vw - 1436px) / 2));
    background: var(--dark);
    color: white;
}

.studio-intro {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    align-items: end;
    width: min(1436px, 100%);
    margin: 0 auto 68px;
}

.studio-intro h2 { font-size: clamp(48px, 5.5vw, 82px); }

.studio-intro > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
}

.studio-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    width: min(1436px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: #1b2f28;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.request-panel,
.scope-panel { padding: clamp(26px, 3.2vw, 52px); }
.request-panel { display: flex; flex-direction: column; border-right: 1px solid rgba(255, 255, 255, 0.3); }
.scope-panel { background: var(--paper-bright); color: var(--ink); }

.panel-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid currentColor;
}

.panel-topline span:last-child { opacity: 0.58; }
.scope-panel .panel-topline { border-color: var(--line); }

#project-request {
    width: 100%;
    min-height: 220px;
    margin-top: 28px;
    padding: 0;
    resize: none;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 520;
    letter-spacing: -0.035em;
    line-height: 1.4;
}

.request-tools { margin-top: auto; }

.example-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.example-switcher button {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    cursor: pointer;
}

.example-switcher button.is-active {
    border-color: var(--acid);
    background: var(--acid);
    color: var(--ink);
}

.scope-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 17px 18px;
    border: 0;
    background: var(--acid);
    color: var(--ink) !important;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 150ms ease, transform 150ms ease;
}

.scope-button:hover { background: white; transform: translateY(-2px); }
.scope-button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.studio-status {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.studio-status p { margin: 0; }

.status-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acid);
}

.studio-shell.is-working .status-pulse { animation: status-pulse 800ms ease-in-out infinite alternate; }

@keyframes status-pulse { to { opacity: 0.2; transform: scale(1.6); } }

.ready-chip {
    padding: 4px 7px;
    background: var(--acid-soft);
    color: var(--ink);
    opacity: 1 !important;
}

.scope-title-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 28px 0 20px;
}

.scope-title-row small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scope-title-row h3 {
    margin: 4px 0 0;
    font-size: clamp(28px, 3vw, 43px);
    letter-spacing: -0.055em;
    line-height: 1;
}

.scope-state { display: inline-flex; align-items: center; gap: 6px; }
.scope-state i,
.offer-header i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.scope-facts { margin: 0; border-top: 1px solid var(--ink); }

.scope-facts > div {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.scope-facts dt {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scope-facts dd { margin: 0; font-size: 13px; font-weight: 650; }

.scope-question {
    margin-top: 20px;
    padding: 15px 17px;
    border-left: 3px solid var(--orange);
    background: #fff0e9;
}

.scope-question span {
    color: var(--orange);
    font-family: var(--mono);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scope-question p { margin: 5px 0 0; font-size: 13px; font-weight: 650; }

.confirm-summary {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 22px;
    padding: 15px 17px;
    border: 0;
    background: var(--blue);
    color: white !important;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.studio-shell.is-working .scope-panel > *:not(.panel-topline) { opacity: 0.32; }
.scope-panel > * { transition: opacity 200ms ease; }

.simple-process { padding: clamp(110px, 12vw, 190px) 0; }

.section-heading.horizontal {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 100px;
    max-width: none;
}

.section-heading.horizontal > p {
    align-self: end;
    max-width: 500px;
    margin: 0 0 8px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 75px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.process-grid article {
    min-height: 440px;
    padding: 30px clamp(24px, 3vw, 50px);
    border-right: 1px solid var(--ink);
}

.process-grid article:first-child { padding-left: 0; }
.process-grid article:last-child { padding-right: 0; border-right: 0; }

.process-number {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 750;
}

.process-icon {
    position: relative;
    width: 116px;
    height: 116px;
    margin: 45px 0 50px;
}

.describe-icon { border-radius: 50%; background: var(--acid); }
.describe-icon i { position: absolute; left: 28px; right: 28px; height: 2px; background: var(--ink); }
.describe-icon i:nth-child(1) { top: 38px; }
.describe-icon i:nth-child(2) { top: 56px; right: 45px; }
.describe-icon i:nth-child(3) { top: 74px; right: 35px; }

.approve-icon { border: 1px solid var(--ink); transform: rotate(4deg); }
.approve-icon i:first-child { position: absolute; inset: 18px; border: 1px solid var(--blue); transform: rotate(-9deg); }
.approve-icon i:last-child { position: absolute; width: 31px; height: 15px; right: -8px; bottom: 20px; border-left: 3px solid var(--blue); border-bottom: 3px solid var(--blue); transform: rotate(-45deg); }

.receive-icon i { position: absolute; inset: 0; border: 1px solid var(--ink); border-radius: 50%; }
.receive-icon i:nth-child(2) { inset: 16px; background: var(--blue-soft); }
.receive-icon i:nth-child(3) { inset: 37px; border: 0; background: var(--blue); }

.process-grid h3 { margin: 0; font-size: 30px; letter-spacing: -0.05em; }
.process-grid p { max-width: 360px; min-height: 90px; color: var(--muted); font-size: 15px; }
.process-grid small { font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.offer-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 10vw, 170px);
    align-items: center;
    padding-bottom: clamp(110px, 12vw, 190px);
}

.offer-copy h2 { font-size: clamp(48px, 5.2vw, 80px); }
.offer-copy > p:not(.eyebrow) { max-width: 570px; margin: 30px 0; color: var(--muted); font-size: 18px; }
.offer-copy ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; font-size: 14px; font-weight: 650; }
.offer-copy li span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 50%; background: var(--acid); font-size: 11px; }

.confirmed-offer {
    padding: clamp(28px, 4vw, 58px);
    border: 1px solid var(--ink);
    background: var(--paper-bright);
    box-shadow: 18px 18px 0 var(--blue-soft);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-header > span { display: flex; align-items: center; gap: 8px; }
.confirmed-offer h3 { margin: 30px 0; font-size: clamp(34px, 4vw, 56px); letter-spacing: -0.06em; }
.offer-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-facts > div { padding: 18px 12px; border-right: 1px solid var(--line); }
.offer-facts > div:first-child { padding-left: 0; }
.offer-facts > div:last-child { border-right: 0; }
.offer-facts span,
.offer-proof span { display: block; margin-bottom: 6px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.offer-facts strong { display: block; font-size: 13px; }
.offer-proof { margin: 28px 0; padding: 18px; background: var(--blue-soft); }
.offer-proof p { margin: 0; font-size: 13px; font-weight: 600; }
.confirmed-offer > button { display: flex; justify-content: space-between; width: 100%; padding: 17px 18px; border: 0; background: var(--ink); color: white; font-weight: 750; cursor: pointer; }
.offer-footnote { margin: 10px 0 0; color: var(--muted); font-family: var(--mono); font-size: 8px; text-align: center; text-transform: uppercase; }

.professional-section {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: clamp(60px, 9vw, 150px);
    align-items: center;
    padding: clamp(90px, 10vw, 160px) max(32px, calc((100vw - 1436px) / 2));
    background: var(--blue);
    color: white;
}

.professional-copy h2 { font-size: clamp(55px, 6vw, 94px); }
.professional-copy h2 em { color: var(--acid); }
.professional-copy > p:not(.eyebrow) { max-width: 720px; margin: 34px 0; color: rgba(255, 255, 255, 0.72); font-size: 20px; }
.professional-cta { min-width: 310px; padding: 17px 18px; background: var(--acid); color: var(--ink) !important; font-size: 13px; font-weight: 800; }

.professional-board { border: 1px solid white; background: var(--paper-bright); color: var(--ink); box-shadow: 16px 16px 0 rgba(216, 255, 104, 0.28); }
.board-header { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.board-header i { padding: 3px 8px; background: var(--acid); font-style: normal; }
.professional-board h3 { margin: 0; padding: 32px 26px; font-size: 29px; letter-spacing: -0.045em; }
.professional-board dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--ink); }
.professional-board dl div { padding: 20px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.professional-board dl div:nth-child(even) { border-right: 0; }
.professional-board dt { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.professional-board dd { margin: 5px 0 0; color: var(--blue); font-weight: 750; }
.professional-promises { display: grid; gap: 0; padding: 14px 24px 22px; }
.professional-promises span { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 650; }
.professional-promises span::before { content: "✓"; margin-right: 10px; color: var(--blue); }

.faq-section {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(70px, 10vw, 170px);
    width: min(1436px, calc(100% - 64px));
    margin: 0 auto;
    padding: clamp(100px, 11vw, 175px) 0;
}

.faq-heading h2 {
    margin: 0;
    font-size: clamp(48px, 5.4vw, 82px);
    font-weight: 580;
    letter-spacing: -0.07em;
    line-height: 0.91;
}

.faq-heading > p:last-child {
    max-width: 390px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.faq-professional { display: none; }
.landing-body[data-audience="professional"] .faq-buyer { display: none; }
.landing-body[data-audience="professional"] .faq-professional { display: block; }

.faq-list {
    align-self: start;
    border-top: 1px solid var(--ink);
}

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

.faq-list summary {
    display: grid;
    grid-template-columns: 44px 1fr 24px;
    align-items: center;
    gap: 18px;
    min-height: 86px;
    padding: 18px 4px;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary > span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
}

.faq-list summary strong {
    font-size: clamp(16px, 1.5vw, 21px);
    letter-spacing: -0.035em;
}

.faq-list summary i {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 16px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
}

.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary { color: var(--blue); }

.faq-list details > p {
    max-width: 740px;
    margin: -2px 42px 0 66px;
    padding: 0 0 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.final-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    min-height: 560px;
    padding: clamp(80px, 9vw, 140px) max(32px, calc((100vw - 1436px) / 2));
    overflow: hidden;
    background: var(--acid);
}

.final-cta p { margin: 0 0 14px; font-family: var(--mono); font-size: 10px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(68px, 8vw, 128px); }
.final-cta > a { position: relative; z-index: 2; display: grid; place-items: center; width: 190px; height: 190px; border-radius: 50%; background: var(--blue); color: white; font-size: 17px; font-weight: 750; text-decoration: none; transition: transform 200ms ease; }
.final-cta > a:hover { transform: rotate(-5deg) scale(1.05); }
.final-orbit { position: absolute; top: -260px; right: 18%; width: 620px; height: 620px; border: 1px solid rgba(23, 33, 29, 0.18); border-radius: 50%; }
.final-orbit::before,
.final-orbit::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(23, 33, 29, 0.14); border-radius: 50%; }
.final-orbit::after { inset: 150px; }
.final-orbit svg { position: absolute; right: 45px; bottom: 70px; width: 75px; fill: var(--blue); transform: rotate(24deg); }

.landing-footer {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    align-items: center;
    gap: 30px;
    min-height: 130px;
    font-size: 12px;
}

.landing-footer p { margin: 0; color: var(--muted); }
.landing-footer > div { display: flex; gap: 20px; }
.landing-footer small { font-family: var(--mono); font-size: 8px; }

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 1100px) {
    .landing-header { grid-template-columns: 1fr auto; }
    .landing-nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 850px; }
    .hero-signal { width: min(740px, 100%); margin: 0 auto; }
    .friction-stage { grid-template-columns: 1fr 100px 1fr; }
    .friction-column { padding: 28px 22px; }
    .rail-badge { width: 82px; height: 82px; }
    .rail-badge span { font-size: 10px; }
    .friction-list li { grid-template-columns: 22px 1fr; }
    .friction-list li i { display: none; }
    .benefit-list li { grid-template-columns: 22px 1fr; }
    .benefit-list li i { display: none; }
    .studio-intro { grid-template-columns: 1fr; gap: 28px; }
    .section-heading.horizontal { gap: 50px; }
    .offer-section { gap: 55px; }
    .professional-section { gap: 55px; }
    .landing-footer { grid-template-columns: 1fr auto; }
    .landing-footer p { display: none; }
}

@media (max-width: 800px) {
    .landing-header,
    .landing-hero,
    .work-removed,
    .simple-process,
    .offer-section,
    .landing-footer { width: min(100% - 36px, 1500px); }
    .landing-header { min-height: 68px; }
    .landing-header.is-stuck { width: 100%; padding: 0 18px; }
    .audience-switcher { grid-template-columns: 1fr auto; }
    .audience-switcher > div {
        grid-column: 1 / -1;
        grid-row: 2;
        border-top: 1px solid var(--ink);
    }
    .audience-prompt,
    .audience-status { min-height: 42px; padding: 0 13px; }
    .audience-prompt { border-right: 0; }
    .audience-switcher button { padding: 13px; }
    .text-link { display: none; }
    .small-cta { padding: 10px 12px; font-size: 11px; }
    .hero-grid { min-height: 0; }
    .hero-copy h1 { font-size: clamp(48px, 15vw, 78px); }
    .hero-lede { font-size: 18px; }
    .hero-signal { min-height: 520px; }
    .signal-card { width: 62%; padding: 17px; }
    .signal-card p { font-size: 15px; }
    .signal-core { width: 125px; height: 125px; }
    .signal-caption { display: none; }
    .proof-line { grid-template-columns: 1fr 1fr; }
    .proof-line span:nth-child(2) { border-right: 0; }
    .proof-line span:nth-child(-n+2) { border-bottom: 1px solid var(--line-strong); }
    .friction-stage { grid-template-columns: 1fr; }
    .buyer-friction,
    .professional-friction,
    .pro-pain-friction,
    .professional-benefit { border: 0; }
    .buyer-friction,
    .pro-pain-friction { border-bottom: 1px solid var(--ink); }
    .managed-rail { grid-row: 2; grid-template-columns: auto 1fr auto 1fr auto; grid-template-rows: auto; padding: 18px 24px; }
    .rail-line { width: 100%; height: 1px; }
    .rail-line i { width: 25%; height: 100%; animation-name: rail-travel-horizontal; }
    .rail-badge { width: 86px; height: 86px; }
    @keyframes rail-travel-horizontal { 0% { transform: translateX(-110%); } 100% { transform: translateX(390%); } }
    .resolved-path { grid-template-columns: 1fr 1fr; }
    .resolved-intro { grid-column: 1 / -1; }
    .resolved-path > i { display: none; }
    .resolved-final { justify-self: stretch; }
    .studio-shell { grid-template-columns: 1fr; }
    .request-panel { min-height: 520px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .section-heading.horizontal { grid-template-columns: 1fr; gap: 30px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 0; padding: 32px 0 42px; border-right: 0; border-bottom: 1px solid var(--ink); }
    .process-grid article:last-child { border-bottom: 0; }
    .process-icon { width: 92px; height: 92px; margin: 30px 0; }
    .describe-icon i { left: 22px; right: 22px; }
    .describe-icon i:nth-child(1) { top: 31px; }
    .describe-icon i:nth-child(2) { top: 45px; }
    .describe-icon i:nth-child(3) { top: 59px; }
    .process-grid p { min-height: 0; }
    .offer-section,
    .professional-section { grid-template-columns: 1fr; }
    .faq-section {
        grid-template-columns: 1fr;
        gap: 52px;
        width: min(100% - 36px, 1436px);
    }
    .confirmed-offer { box-shadow: 10px 10px 0 var(--blue-soft); }
    .professional-section { padding-inline: 18px; }
    .final-cta { grid-template-columns: 1fr; gap: 55px; align-items: start; padding-inline: 18px; }
    .final-cta > a { width: 150px; height: 150px; justify-self: end; }
    .landing-footer > div { display: none; }
}

@media (max-width: 520px) {
    .landing-wordmark { font-size: 12px; }
    .brand-flower { width: 26px; height: 26px; }
    .small-cta span { display: none; }
    .small-cta [data-header-cta-label] { display: inline; }
    .audience-status { font-size: 7px; }
    .audience-switcher button { gap: 7px; }
    .audience-switcher button span { font-size: 11px; }
    .landing-hero { padding-top: 46px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .primary-cta { min-width: 0; }
    .secondary-cta { width: fit-content; }
    .hero-signal { min-height: 490px; }
    .signal-request { top: 4%; }
    .signal-result { bottom: 5%; }
    .signal-card { width: 72%; }
    .signal-core { left: 56%; }
    .signal-line { left: 13%; right: 13%; }
    .section-heading h2,
    .studio-intro h2,
    .offer-copy h2 { font-size: 47px; }
    .friction-list li p { font-size: 13px; }
    .managed-rail { padding-inline: 12px; }
    .rail-badge { width: 74px; height: 74px; }
    .rail-badge svg { display: none; }
    .resolved-path { padding: 18px; }
    .resolved-path > div { display: block; }
    .scope-facts > div { grid-template-columns: 105px 1fr; }
    .offer-facts { grid-template-columns: 1fr; }
    .offer-facts > div { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .offer-facts > div:last-child { border-bottom: 0; }
    .professional-cta { min-width: 0; width: 100%; }
    .professional-board dl { grid-template-columns: 1fr; }
    .professional-board dl div { border-right: 0; }
    .faq-list summary { grid-template-columns: 28px 1fr 20px; gap: 10px; min-height: 78px; }
    .faq-list details > p { margin-left: 38px; margin-right: 16px; }
    .final-cta h2 { font-size: 62px; }
    .landing-footer { min-height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
