:root {
    --ink: #101b20;
    --ink-2: #17262d;
    --paper: #f2efe7;
    --paper-2: #e8e4da;
    --white: #fffefa;
    --signal: #2850ff;
    --signal-deep: #1737c8;
    --naver: #03c75a;
    --muted: #6f746f;
    --line: rgba(16, 27, 32, .18);
    --line-light: rgba(255, 254, 250, .2);
    --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max: 1320px;
    --pad: clamp(24px, 4.2vw, 64px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.018em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    color: inherit;
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

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

img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
    margin-top: 0;
}

em {
    font-style: normal;
}

mark {
    color: inherit;
    background: transparent;
}

/* Keep user-supplied and changing copy inside the viewport. */
main :where(h1, h2, h3, p, li, dt, dd, summary, a),
.site-footer :where(p, a, small) {
    overflow-wrap: anywhere;
}

::selection {
    color: var(--white);
    background: var(--signal);
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

.shell {
    width: min(var(--max), calc(100% - (var(--pad) * 2)));
    margin-inline: auto;
}

.section {
    padding-block: clamp(96px, 11vw, 168px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--signal);
    white-space: nowrap;
}

.eyebrow span::before {
    width: 23px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: rgba(255, 254, 250, .72);
}

.eyebrow--light span {
    color: #7f97ff;
}

.section-head h2,
.proof-copy h2,
.editorial-copy h2,
.website-copy h2,
.faq-heading h2 {
    margin-bottom: 30px;
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 780;
    line-height: 1.08;
    letter-spacing: -.055em;
}

.section-head h2 em,
.editorial-copy h2 em,
.website-copy h2 em {
    color: var(--signal);
}

.section-head > p:last-child,
.editorial-copy > p,
.website-copy > p,
.faq-heading > p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.72;
    word-break: keep-all;
}

.section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
    column-gap: clamp(48px, 9vw, 144px);
    align-items: end;
}

.section-head--split .eyebrow {
    grid-column: 1 / -1;
}

.section-head--split h2 {
    margin-bottom: 0;
}

.section-head--split > p:last-child {
    padding-bottom: 7px;
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.button span {
    font-size: 20px;
    font-weight: 500;
    transition: transform .2s ease;
}

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

.button:hover span {
    transform: translate(3px, -3px);
}

.button--signal {
    color: var(--white);
    background: var(--signal);
}

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

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--dark:hover {
    background: #000;
}

.button--outline-light {
    color: var(--white);
    border-color: rgba(255, 254, 250, .55);
    background: transparent;
}

.button--outline-light:hover {
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.text-link:hover {
    color: var(--signal);
}

.text-link--dark {
    margin-top: 32px;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 84px;
    border-bottom: 1px solid transparent;
    transition: height .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: var(--line);
    background: rgba(242, 239, 231, .94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid var(--ink);
    color: var(--ink);
    font-size: 21px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.08em;
}

.brand-mark span {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 9px;
    height: 9px;
    background: var(--signal);
}

.brand-type {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-type strong {
    font-size: 16px;
    font-weight: 830;
    line-height: 1;
    letter-spacing: .065em;
}

.brand-type small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.3vw, 38px);
}

.site-nav a {
    position: relative;
    padding-block: 8px;
    color: #3b4547;
    font-size: 13px;
    font-weight: 660;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--signal);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 25px;
    padding: 10px 15px 10px 18px;
    color: var(--white);
    background: var(--ink);
    font-size: 12px;
    font-weight: 760;
}

.header-cta span {
    font-size: 16px;
}

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

.menu-toggle i {
    display: block;
    width: 22px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform .25s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 920px;
    padding: 152px 0 92px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    position: absolute;
    top: 84px;
    bottom: 0;
    left: calc(50% + 48px);
    width: 1px;
    background: var(--line);
    content: "";
}

.hero::after {
    position: absolute;
    right: -2.5vw;
    bottom: -12vw;
    z-index: -1;
    color: rgba(16, 27, 32, .035);
    content: "C";
    font-size: min(62vw, 900px);
    font-weight: 900;
    line-height: .76;
    letter-spacing: -.12em;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: clamp(60px, 7vw, 112px);
    align-items: center;
}

.hero-copy,
.hero-stage,
.search-window,
.search-body {
    min-width: 0;
    max-width: 100%;
}

.hero-copy h1 {
    margin-bottom: 30px;
    font-size: clamp(62px, 6.3vw, 96px);
    font-weight: 820;
    line-height: .98;
    letter-spacing: -.068em;
}

.hero-copy h1 em {
    position: relative;
    z-index: 0;
    color: var(--white);
    white-space: nowrap;
}

.hero-focus {
    white-space: nowrap;
}

.hero-copy h1 em::before {
    position: absolute;
    inset: 10% -3% 3% -2%;
    z-index: -1;
    background: var(--signal);
    content: "";
    transform: rotate(-1.3deg);
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 32px;
    color: #525b5b;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.72;
    word-break: keep-all;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
}

.hero-price {
    display: grid;
    width: fit-content;
    min-width: 390px;
    grid-template-columns: auto auto;
    align-items: baseline;
    gap: 0 24px;
    padding-top: 19px;
    border-top: 1px solid var(--ink);
}

.hero-price span {
    grid-row: 1;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
}

.hero-price strong {
    grid-row: 1;
    font-size: 25px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: -.04em;
}

.hero-price small {
    grid-column: 2;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

.hero-stage {
    position: relative;
    padding: 26px 25px 24px;
    border: 1px solid var(--ink);
    background: var(--ink);
    box-shadow: 18px 18px 0 var(--signal);
}

.stage-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--white);
}

.stage-caption span {
    color: rgba(255, 254, 250, .52);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
}

.stage-caption b {
    font-size: 11px;
    font-weight: 700;
}

.search-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 4px;
    background: var(--white);
}

.search-topbar {
    display: grid;
    min-height: 70px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 13px 19px;
    border-bottom: 1px solid #e5e6e1;
}

.search-n {
    color: var(--naver);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.1em;
}

.search-query {
    min-width: 0;
    overflow: hidden;
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-topbar svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--naver);
    stroke-linecap: round;
    stroke-width: 2;
}

.search-tabs {
    display: flex;
    gap: 23px;
    padding: 14px 21px 11px;
    border-bottom: 1px solid #ededeb;
    color: #929793;
    font-size: 10px;
}

.search-tabs strong {
    position: relative;
    color: var(--ink);
}

.search-tabs strong::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    background: var(--naver);
    content: "";
}

.search-body {
    padding: 9px 20px 13px;
}

.result-card {
    min-width: 0;
    padding: 16px 3px 15px;
    border-bottom: 1px solid #ededeb;
    transition: opacity .2s ease;
}

.result-card:last-child {
    border-bottom: 0;
}

.result-card--primary {
    position: relative;
}

.result-card--primary::before {
    position: absolute;
    inset: 9px -7px 6px;
    border: 2px solid var(--signal);
    content: "";
    pointer-events: none;
}

.result-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #797f7a;
    font-size: 9px;
}

.result-meta i {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 1px solid #d9ddd9;
    border-radius: 50%;
    background: #edf1ec;
}

.result-meta > span,
.result-meta b {
    min-width: 0;
    overflow-wrap: anywhere;
}

.result-meta b {
    flex: 0 1 auto;
    max-width: 50%;
    margin-left: auto;
    padding: 3px 6px;
    color: var(--white);
    background: var(--signal);
    font-size: 8px;
    font-weight: 700;
}

.result-card .result-title {
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 720;
    line-height: 1.45;
}

.result-card .result-title mark {
    color: var(--signal);
}

.result-card p:not(.result-title) {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 100%;
    margin-bottom: 7px;
    overflow: hidden;
    color: #6f746f;
    font-size: 9px;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-tags {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 8px;
    color: #6d7b73;
    font-size: 8px;
}

.result-tags span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.effect-track {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 30px 1fr;
    align-items: center;
    gap: 7px;
    padding: 21px 2px 9px;
    color: var(--white);
}

.effect-track div {
    min-width: 0;
}

.effect-track span {
    display: block;
    margin-bottom: 3px;
    color: #7f97ff;
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .08em;
}

.effect-track strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.effect-track small {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: rgba(255, 254, 250, .52);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.effect-track > i {
    position: relative;
    height: 1px;
    background: var(--line-light);
}

.effect-track > i::after {
    position: absolute;
    top: -2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid rgba(255, 255, 255, .7);
    border-right: 1px solid rgba(255, 255, 255, .7);
    content: "";
    transform: rotate(45deg);
}

.stage-note {
    margin: 5px 0 0;
    color: rgba(255, 254, 250, .38);
    font-size: 8px;
    line-height: 1.5;
}

/* Signal ticker */
.signal-strip {
    overflow: hidden;
    color: var(--white);
    background: var(--signal);
}

.signal-track {
    display: flex;
    width: max-content;
    min-width: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 35px;
    padding: 17px 22px;
    animation: marquee 28s linear infinite;
}

.signal-track span {
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .12em;
    white-space: nowrap;
}

.signal-track i {
    width: 5px;
    height: 5px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
}

@keyframes marquee {
    to { transform: translateX(-15%); }
}

/* Intent */
.intent {
    background: var(--paper);
}

.intent-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.55fr);
    align-items: stretch;
    margin-top: clamp(60px, 7vw, 100px);
    border-block: 1px solid var(--ink);
}

.formula-part,
.formula-result {
    display: flex;
    min-width: 0;
    min-height: 210px;
    flex-direction: column;
    justify-content: center;
    padding: 30px clamp(18px, 2vw, 30px);
}

.formula-part {
    border-right: 1px solid var(--line);
}

.formula-label,
.formula-result > span {
    margin-bottom: 25px;
    color: var(--signal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.formula-part strong {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 8px;
    font-size: clamp(25px, 2.3vw, 35px);
    font-weight: 790;
    line-height: 1.1;
    letter-spacing: -.05em;
    overflow-wrap: anywhere;
    transition: opacity .2s ease;
}

.formula-part small,
.formula-result small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.formula-plus,
.formula-equal {
    display: grid;
    width: 38px;
    place-items: center;
    color: #9b9e98;
    font-size: 19px;
    font-weight: 400;
}

.formula-result {
    color: var(--white);
    background: var(--ink);
}

.formula-result > span {
    color: #7f97ff;
}

.formula-result strong {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 750;
    line-height: 1.32;
    letter-spacing: -.045em;
    word-break: keep-all;
    overflow-wrap: anywhere;
    transition: opacity .2s ease;
}

.formula-result small {
    color: rgba(255, 254, 250, .48);
}

.outcome-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
    border-top: 1px solid var(--line);
}

.outcome-list article {
    min-height: 340px;
    padding: 34px clamp(24px, 3vw, 44px) 40px 0;
    border-right: 1px solid var(--line);
}

.outcome-list article + article {
    padding-left: clamp(24px, 3vw, 44px);
}

.outcome-list article:last-child {
    padding-right: 0;
    border-right: 0;
}

.outcome-list article > span {
    display: block;
    margin-bottom: 70px;
    color: var(--signal);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .07em;
}

.outcome-list h3 {
    margin-bottom: 18px;
    font-size: clamp(25px, 2.25vw, 34px);
    font-weight: 740;
    line-height: 1.28;
    letter-spacing: -.045em;
}

.outcome-list p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
    word-break: keep-all;
}

/* Proof */
.section--dark {
    color: var(--white);
    background: var(--ink);
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(440px, 1.05fr) minmax(390px, .95fr);
    gap: clamp(60px, 8vw, 130px);
    align-items: center;
}

.proof-visual {
    position: relative;
    margin-bottom: 0;
}

.proof-visual::before {
    position: absolute;
    inset: 20px -20px -20px 20px;
    z-index: 0;
    border: 1px solid rgba(127, 151, 255, .46);
    content: "";
}

.proof-visual picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: #090b0b;
}

.proof-visual img {
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: top;
}

.proof-index {
    position: absolute;
    top: -22px;
    left: -22px;
    z-index: 3;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    color: var(--white);
    background: var(--signal);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: center;
}

.proof-visual figcaption {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    color: var(--ink);
    background: var(--white);
}

.proof-visual figcaption strong {
    font-size: 11px;
    font-weight: 750;
}

.proof-visual figcaption span {
    color: var(--muted);
    font-size: 9px;
    text-align: right;
}

.proof-copy h2 {
    color: var(--white);
    font-size: clamp(42px, 4.6vw, 68px);
}

.proof-copy h2 em {
    color: #8ca0ff;
}

.proof-lead {
    max-width: 560px;
    margin-bottom: 40px;
    color: rgba(255, 254, 250, .65);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.75;
    word-break: keep-all;
}

.proof-points {
    margin-bottom: 36px;
    border-top: 1px solid var(--line-light);
}

.proof-points > div {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
}

.proof-points dt {
    color: #8ca0ff;
    font-size: 11px;
    font-weight: 750;
}

.proof-points dd {
    color: rgba(255, 254, 250, .78);
    font-size: 13px;
}

.proof-disclaimer {
    max-width: 550px;
    margin: 18px 0 0;
    color: rgba(255, 254, 250, .36);
    font-size: 10px;
    line-height: 1.6;
}

/* Service and pricing */
.service {
    background: var(--white);
}

.service-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .72fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: stretch;
}

.service .section-head {
    padding-top: 16px;
}

.price-panel {
    display: flex;
    min-height: 425px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 4vw, 58px);
    color: var(--white);
    background: var(--signal);
}

.price-label {
    margin-bottom: 55px;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .15em;
}

.price-main {
    display: flex;
    align-items: baseline;
    margin-bottom: 16px;
    white-space: nowrap;
}

.price-main span {
    margin-right: 18px;
    font-size: 16px;
    font-weight: 750;
}

.price-main strong {
    font-size: clamp(60px, 6vw, 92px);
    font-weight: 850;
    line-height: .85;
    letter-spacing: -.07em;
}

.price-main em {
    margin-left: 7px;
    font-size: 18px;
    font-weight: 700;
}

.price-panel > p {
    max-width: 370px;
    margin-bottom: 27px;
    color: rgba(255, 254, 250, .72);
    font-size: 12px;
    line-height: 1.6;
}

.price-panel .button {
    width: 100%;
}

.distribution-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(68px, 8vw, 110px);
    border-block: 1px solid var(--ink);
}

.distribution-types article {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 32px clamp(24px, 3vw, 46px) 34px;
    border-right: 1px solid var(--line);
}

.distribution-types article:first-child {
    padding-left: 0;
}

.distribution-types article:last-child {
    padding-right: 0;
    border-right: 0;
}

.distribution-types article > span {
    margin-bottom: 72px;
    color: var(--signal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.distribution-types h3 {
    margin-bottom: 15px;
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 780;
    line-height: 1.15;
    letter-spacing: -.045em;
}

.distribution-types p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
}

.distribution-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 10px;
    font-weight: 720;
}

.distribution-link span {
    color: var(--signal);
    font-size: 16px;
    transition: transform .2s ease;
}

.distribution-link:hover span {
    transform: translate(3px, -3px);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(50px, 6vw, 82px);
    border-block: 1px solid var(--ink);
}

.included-grid article {
    min-height: 315px;
    padding: 28px clamp(20px, 2.3vw, 34px) 36px;
    border-right: 1px solid var(--line);
}

.included-grid article:first-child {
    padding-left: 0;
}

.included-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.included-grid span {
    display: block;
    margin-bottom: 85px;
    color: var(--signal);
    font-size: 10px;
    font-weight: 780;
}

.included-grid h3 {
    margin-bottom: 13px;
    font-size: 24px;
    font-weight: 760;
    letter-spacing: -.04em;
}

.included-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    word-break: keep-all;
}

.service-note {
    margin: 18px 0 0;
    color: #8b8e89;
    font-size: 10px;
}

/* Editorial photo section */
.editorial {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 790px;
    background: var(--paper-2);
}

.editorial-photo {
    position: relative;
    min-width: 0;
    min-height: 680px;
    overflow: hidden;
}

.editorial-photo::after {
    position: absolute;
    inset: 0;
    background: rgba(16, 27, 32, .17);
    content: "";
    mix-blend-mode: multiply;
    pointer-events: none;
}

.editorial-photo img {
    height: 100%;
    object-fit: cover;
    filter: saturate(.25) contrast(1.04);
}

.editorial-photo > span {
    position: absolute;
    right: 26px;
    bottom: 28px;
    z-index: 2;
    padding: 14px 16px;
    color: var(--white);
    background: var(--signal);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: .11em;
    text-align: right;
}

.editorial-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(65px, 7vw, 112px);
}

.editorial-copy h2 {
    font-size: clamp(42px, 4.4vw, 68px);
}

.editorial-copy > p {
    max-width: 620px;
    margin-bottom: 38px;
}

.editorial-copy ul {
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.editorial-copy li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: #3d4748;
    font-size: 13px;
}

.editorial-copy li span {
    color: var(--signal);
    font-size: 9px;
    font-weight: 800;
}

/* Process */
.process {
    background: var(--paper);
}

.process-list {
    margin: 74px 0 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.process-list li {
    display: grid;
    min-height: 130px;
    grid-template-columns: 90px minmax(220px, .75fr) 1.25fr;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    transition: color .25s ease, padding .25s ease, background .25s ease;
}

.process-list li:hover {
    padding-inline: 20px;
    color: var(--white);
    background: var(--ink);
}

.process-no {
    color: var(--signal);
    font-size: 11px;
    font-weight: 780;
}

.process-list small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 760;
    letter-spacing: .13em;
}

.process-list h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 740;
    letter-spacing: -.04em;
}

.process-list p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

.process-list li:hover small,
.process-list li:hover p {
    color: rgba(255, 254, 250, .62);
}

.compliance {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(360px, 1fr);
    gap: 30px clamp(50px, 8vw, 120px);
    margin-top: 82px;
    padding: clamp(38px, 5vw, 70px);
    color: var(--white);
    background: var(--ink);
}

.compliance-title > span {
    display: block;
    margin-bottom: 45px;
    color: #8ca0ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.compliance-title h3 {
    margin-bottom: 0;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 760;
    line-height: 1.18;
    letter-spacing: -.05em;
}

.compliance ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.compliance li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 254, 250, .77);
    font-size: 13px;
}

.compliance li i {
    position: relative;
    width: 13px;
    height: 13px;
    margin-top: 2px;
    border: 1px solid #8ca0ff;
}

.compliance li i::after {
    position: absolute;
    top: 2px;
    left: 3px;
    width: 6px;
    height: 3px;
    border-bottom: 1px solid #8ca0ff;
    border-left: 1px solid #8ca0ff;
    content: "";
    transform: rotate(-45deg);
}

.compliance > p {
    grid-column: 2;
    margin: -10px 0 0;
    color: rgba(255, 254, 250, .38);
    font-size: 10px;
    line-height: 1.6;
}

.compliance > p a {
    color: rgba(255, 254, 250, .68);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.compliance > p a:hover {
    color: #8ca0ff;
}

/* Website */
.website {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--signal);
}

.website::before {
    position: absolute;
    top: -18%;
    right: -4%;
    color: rgba(255, 255, 255, .075);
    content: "SEO";
    font-size: min(28vw, 420px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.09em;
    pointer-events: none;
}

.website-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(400px, .9fr) minmax(480px, 1.1fr);
    gap: clamp(60px, 6.5vw, 105px);
    align-items: center;
}

.website-copy h2 {
    color: var(--white);
    font-size: clamp(44px, 3.9vw, 62px);
}

.website-copy h2 em {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .38);
    text-decoration-thickness: 8px;
    text-underline-offset: -2px;
}

.website-copy > p {
    margin-bottom: 34px;
    color: rgba(255, 254, 250, .75);
}

.website-copy .button--signal {
    color: var(--ink);
    background: var(--white);
}

.website-copy .eyebrow span {
    color: var(--white);
}

.website-screen {
    border: 1px solid rgba(255, 255, 255, .45);
    background: var(--white);
    box-shadow: 22px 22px 0 var(--ink);
    transform: rotate(1.2deg);
}

.screen-bar {
    display: flex;
    height: 40px;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid #dddeda;
    color: #838984;
}

.screen-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cfd2ce;
}

.screen-bar span {
    margin-left: 8px;
    font-size: 8px;
}

.screen-body {
    color: var(--ink);
}

.screen-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #e5e6e2;
}

.screen-nav b {
    font-size: 11px;
    letter-spacing: .08em;
}

.screen-nav span {
    color: #777e78;
    font-size: 7px;
}

.screen-hero {
    position: relative;
    min-height: 270px;
    padding: 48px 40px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.screen-hero::after {
    position: absolute;
    top: -25px;
    right: -15px;
    width: 205px;
    height: 330px;
    border: 1px solid rgba(255, 255, 255, .18);
    content: "";
    transform: rotate(19deg);
}

.screen-hero small {
    display: block;
    margin-bottom: 34px;
    color: #8ca0ff;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
}

.screen-hero strong {
    position: relative;
    z-index: 1;
    font-size: clamp(29px, 3.2vw, 44px);
    font-weight: 720;
    line-height: 1.18;
    letter-spacing: -.05em;
}

.screen-hero i {
    position: absolute;
    right: 26px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
}

.screen-hero i::before {
    position: absolute;
    top: 24px;
    left: 15px;
    width: 21px;
    height: 1px;
    background: var(--white);
    content: "";
}

.screen-seo {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.screen-seo span {
    display: flex;
    min-height: 62px;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-right: 1px solid #e5e6e2;
    border-bottom: 1px solid #e5e6e2;
    color: #555f5a;
    font-size: 9px;
}

.screen-seo span:nth-child(even) {
    border-right: 0;
}

.screen-seo span:nth-child(n + 3) {
    border-bottom: 0;
}

.screen-seo i {
    color: var(--signal);
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}

/* FAQ */
.faq {
    background: var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading h2 {
    font-size: clamp(40px, 4.2vw, 62px);
}

.faq-heading > p {
    font-size: 15px;
}

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

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

.faq-list summary {
    display: grid;
    min-height: 86px;
    grid-template-columns: 45px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 690;
    list-style: none;
}

.faq-list summary > * {
    min-width: 0;
}

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

.faq-list summary > span {
    color: var(--signal);
    font-size: 9px;
    font-weight: 800;
}

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

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 7px;
    left: 1px;
    width: 14px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform .25s ease;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

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

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    max-width: 690px;
    margin: 0;
    padding: 0 42px 27px 55px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.78;
    word-break: keep-all;
}

/* Final */
.final-cta {
    padding: clamp(90px, 11vw, 160px) 0;
    color: var(--white);
    background: var(--ink);
}

.final-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
}

.final-inner > div:first-child > p {
    margin-bottom: 45px;
    color: #8ca0ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}

.final-inner h2 {
    margin-bottom: 0;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 770;
    line-height: .98;
    letter-spacing: -.068em;
}

.final-inner h2 em {
    color: #8ca0ff;
}

.final-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.circle-cta {
    display: flex;
    width: 190px;
    height: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border-radius: 50%;
    color: var(--white);
    background: var(--signal);
    text-align: center;
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.circle-cta:hover {
    color: var(--ink);
    background: var(--white);
    transform: rotate(-4deg) scale(1.03);
}

.circle-cta span {
    font-size: 16px;
    font-weight: 760;
    line-height: 1.35;
}

.circle-cta i {
    font-size: 22px;
    font-style: normal;
}

.final-action > p {
    margin-bottom: 0;
    color: rgba(255, 254, 250, .48);
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

/* Footer */
.site-footer {
    padding: 48px 0 55px;
    border-top: 1px solid var(--line-light);
    color: var(--white);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: .8fr .7fr 1.5fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-brand strong {
    font-size: 17px;
    font-weight: 830;
    letter-spacing: .08em;
}

.footer-brand span {
    color: rgba(255, 254, 250, .42);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-links a {
    color: rgba(255, 254, 250, .68);
    font-size: 11px;
}

.footer-links a:hover,
.footer-notice a:hover {
    color: #8ca0ff;
}

.footer-notice {
    max-width: 610px;
    justify-self: end;
}

.footer-notice p {
    margin-bottom: 8px;
    color: rgba(255, 254, 250, .42);
    font-size: 9px;
    line-height: 1.6;
}

.footer-notice small {
    display: block;
    margin-top: 25px;
    color: rgba(255, 254, 250, .27);
    font-size: 8px;
    letter-spacing: .09em;
}

.mobile-cta {
    display: none;
}

/* Progressive reveal */
.js.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js.reveal-ready [data-reveal-delay="1"] {
    transition-delay: .12s;
}

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

@media (max-width: 1180px) {
    .site-nav {
        gap: 20px;
    }

    .site-nav a {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
        gap: 60px;
    }

    .hero-copy h1 {
        font-size: clamp(57px, 6vw, 78px);
    }

    .editorial-copy {
        padding: 70px 7vw;
    }
}

@media (max-width: 1020px) {
    :root {
        --pad: clamp(22px, 4vw, 42px);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 0;
        padding-top: 140px;
    }

    .hero::before {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 70px;
    }

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

    .hero-copy h1 {
        font-size: clamp(66px, 10vw, 94px);
    }

    .hero-stage {
        width: min(750px, calc(100% - 18px));
        margin-left: auto;
    }

    .section-head--split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-head--split h2 {
        max-width: 850px;
    }

    .intent-board {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .formula-equal {
        display: none;
    }

    .formula-result {
        grid-column: 1 / -1;
        min-height: 150px;
        border-top: 1px solid var(--ink);
    }

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

    .service-top {
        grid-template-columns: 1fr 420px;
        gap: 45px;
    }

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

    .included-grid article:nth-child(2) {
        border-right: 0;
    }

    .included-grid article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .included-grid article:nth-child(3) {
        padding-left: 0;
    }

    .included-grid article:first-child,
    .included-grid article:nth-child(3) {
        padding-left: 0;
    }

    .included-grid article:nth-child(2),
    .included-grid article:last-child {
        padding-right: 0;
    }

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

    .editorial-photo {
        min-height: min(68vw, 620px);
    }

    .editorial-copy {
        padding: 90px var(--pad);
    }

    .editorial-copy > * {
        width: min(760px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

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

    .website-copy {
        max-width: 750px;
    }

    .website-screen {
        width: min(760px, calc(100% - 22px));
        margin-inline: auto;
    }

    .faq-grid {
        grid-template-columns: 320px 1fr;
        gap: 55px;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 75px;
    }

    .site-header,
    .site-header.is-scrolled {
        height: 70px;
    }

    .site-header {
        border-color: var(--line);
        background: rgba(242, 239, 231, .96);
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
        margin-left: auto;
    }

    .menu-toggle[aria-expanded="true"] i:first-of-type {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] i:last-of-type {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 70px 0 auto;
        display: flex;
        max-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: var(--paper);
        transition: max-height .35s ease, border-color .35s ease;
    }

    .site-nav.is-open {
        max-height: calc(100vh - 70px);
        border-color: var(--line);
    }

    .site-nav a {
        width: min(var(--max), calc(100% - (var(--pad) * 2)));
        margin-inline: auto;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a::after {
        display: none;
    }

    .outcome-list {
        grid-template-columns: 1fr;
    }

    .outcome-list article,
    .outcome-list article + article {
        display: grid;
        min-height: 0;
        grid-template-columns: 120px 1fr;
        gap: 0 30px;
        padding: 34px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .outcome-list article:last-child {
        border-bottom: 0;
    }

    .outcome-list article > span {
        grid-row: 1 / 3;
        margin: 6px 0 0;
    }

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

    .proof-visual {
        width: min(620px, calc(100% - 20px));
        margin-inline: auto;
    }

    .proof-copy {
        max-width: 700px;
    }

    .service-top {
        grid-template-columns: 1fr;
    }

    .price-panel {
        min-height: 0;
    }

    .distribution-types {
        grid-template-columns: 1fr;
    }

    .distribution-types article,
    .distribution-types article:first-child,
    .distribution-types article:last-child {
        min-height: 0;
        padding: 31px 0 30px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .distribution-types article:last-child {
        border-bottom: 0;
    }

    .distribution-types article > span {
        margin-bottom: 32px;
    }

    .process-list li {
        grid-template-columns: 60px 180px 1fr;
        gap: 15px;
    }

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

    .compliance > p {
        grid-column: 1;
    }

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

    .faq-heading {
        position: static;
        max-width: 650px;
    }

    .final-inner {
        grid-template-columns: 1fr;
    }

    .final-action {
        flex-direction: row;
        justify-content: flex-end;
    }

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

    .footer-notice {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 620px) {
    :root {
        --pad: 20px;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .section {
        padding-block: 92px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 19px;
    }

    .brand-type strong {
        font-size: 14px;
    }

    .section-head h2,
    .proof-copy h2,
    .editorial-copy h2,
    .website-copy h2,
    .faq-heading h2 {
        font-size: clamp(37px, 11.2vw, 53px);
        line-height: 1.1;
    }

    .eyebrow {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
        font-size: 10px;
    }

    .eyebrow span::before {
        width: 15px;
    }

    .hero {
        padding: 120px 0 75px;
    }

    .hero::after {
        right: -9vw;
        bottom: -5vw;
        font-size: 110vw;
    }

    .hero-grid {
        gap: 57px;
    }

    .hero-copy h1 {
        margin-bottom: 23px;
        font-size: clamp(47px, 13.8vw, 55px);
        line-height: 1.01;
    }

    .hero-copy h1 em::before {
        inset: 8% -2% 0;
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.68;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }

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

    .hero-actions .text-link {
        align-self: flex-start;
    }

    .hero-price {
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr auto;
    }

    .hero-price strong {
        font-size: 22px;
    }

    .hero-stage {
        width: calc(100% - 10px);
        margin-left: 0;
        padding: 18px 13px 15px;
        box-shadow: 10px 10px 0 var(--signal);
    }

    .stage-caption {
        margin-bottom: 13px;
    }

    .stage-caption span {
        font-size: 7px;
    }

    .stage-caption b {
        font-size: 9px;
    }

    .search-topbar {
        min-height: 57px;
        gap: 10px;
        padding: 10px 13px;
    }

    .search-n {
        font-size: 20px;
    }

    .search-query {
        font-size: 12px;
    }

    .search-topbar svg {
        width: 18px;
        height: 18px;
    }

    .search-tabs {
        gap: 15px;
        overflow: hidden;
        padding: 11px 14px 9px;
        font-size: 8px;
        white-space: nowrap;
    }

    .search-tabs strong::after {
        bottom: -10px;
    }

    .search-body {
        padding: 7px 12px 10px;
    }

    .result-card {
        padding-block: 13px;
    }

    .result-card .result-title {
        font-size: 11px;
    }

    .result-card p:not(.result-title),
    .result-meta {
        font-size: 7px;
    }

    .result-tags {
        font-size: 6px;
    }

    .result-card--primary::before {
        inset-inline: -4px;
    }

    .effect-track {
        grid-template-columns: 1fr 15px 1fr 15px 1fr;
        gap: 4px;
    }

    .effect-track strong {
        font-size: 12px;
    }

    .effect-track small {
        display: none;
    }

    .stage-note {
        font-size: 7px;
    }

    .signal-track {
        justify-content: flex-start;
        animation-duration: 18s;
    }

    .intent-board {
        grid-template-columns: minmax(0, 1fr);
        border-bottom: 0;
    }

    .formula-part,
    .formula-result {
        min-height: 0;
        padding: 24px 0;
    }

    .formula-part {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: baseline;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .formula-label {
        grid-row: 1 / 3;
        margin: 0;
    }

    .formula-part strong {
        margin-bottom: 3px;
        font-size: 27px;
    }

    .formula-plus,
    .formula-equal {
        display: none;
    }

    .formula-result {
        padding: 28px 22px;
    }

    .formula-result > span {
        margin-bottom: 17px;
    }

    .formula-result strong {
        font-size: 25px;
    }

    .outcome-list {
        margin-top: 42px;
    }

    .outcome-list article,
    .outcome-list article + article {
        display: block;
        padding: 30px 0;
    }

    .outcome-list article > span {
        margin: 0 0 40px;
    }

    .outcome-list h3 {
        font-size: 28px;
    }

    .proof-grid {
        gap: 65px;
    }

    .proof-visual {
        width: calc(100% - 10px);
        margin-left: 0;
    }

    .proof-visual::before {
        inset: 10px -10px -10px 10px;
    }

    .proof-index {
        top: -12px;
        left: -8px;
        width: 58px;
        height: 58px;
        font-size: 8px;
    }

    .proof-visual figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        padding: 12px;
    }

    .proof-visual figcaption span {
        text-align: left;
    }

    .proof-points > div {
        grid-template-columns: 90px 1fr;
    }

    .proof-copy .button {
        width: 100%;
    }

    .price-panel {
        margin-inline: calc(var(--pad) * -1);
        padding: 44px var(--pad);
    }

    .price-label {
        margin-bottom: 42px;
    }

    .price-main strong {
        font-size: 68px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .included-grid article,
    .included-grid article:first-child,
    .included-grid article:nth-child(2),
    .included-grid article:nth-child(3),
    .included-grid article:last-child {
        min-height: 0;
        padding: 28px 0 32px;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .included-grid span {
        margin-bottom: 38px;
    }

    .included-grid h3 {
        font-size: 26px;
    }

    .service-note {
        line-height: 1.6;
    }

    .editorial-photo {
        min-height: 440px;
    }

    .editorial-photo img {
        object-position: 50% 50%;
    }

    .editorial-photo > span {
        right: 16px;
        bottom: 16px;
    }

    .editorial-copy {
        padding: 82px var(--pad);
    }

    .editorial-copy li {
        align-items: start;
        font-size: 12px;
    }

    .process-list {
        margin-top: 55px;
    }

    .process-list li {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 8px 14px;
        padding: 27px 0;
    }

    .process-list li:hover {
        padding-inline: 12px;
    }

    .process-list p {
        grid-column: 2;
        font-size: 12px;
    }

    .process-list h3 {
        font-size: 23px;
    }

    .compliance {
        margin: 65px calc(var(--pad) * -1) 0;
        padding: 45px var(--pad);
    }

    .compliance-title > span {
        margin-bottom: 30px;
    }

    .website-grid {
        gap: 65px;
    }

    .website-copy .button {
        width: 100%;
    }

    .website-screen {
        width: calc(100% - 10px);
        margin-left: 0;
        box-shadow: 10px 10px 0 var(--ink);
        transform: none;
    }

    .screen-nav span {
        display: none;
    }

    .screen-hero {
        min-height: 215px;
        padding: 35px 26px;
    }

    .screen-hero strong {
        font-size: 32px;
    }

    .screen-seo {
        grid-template-columns: 1fr;
    }

    .screen-seo span,
    .screen-seo span:nth-child(even),
    .screen-seo span:nth-child(n + 3) {
        min-height: 50px;
        border-right: 0;
        border-bottom: 1px solid #e5e6e2;
    }

    .screen-seo span:last-child {
        border-bottom: 0;
    }

    .faq-grid {
        gap: 55px;
    }

    .faq-list summary {
        min-height: 78px;
        grid-template-columns: 32px minmax(0, 1fr) 18px;
        font-size: 15px;
        line-height: 1.45;
    }

    .faq-answer p {
        padding: 0 0 24px 32px;
        font-size: 13px;
    }

    .final-cta {
        padding-block: 90px;
    }

    .final-inner {
        gap: 55px;
    }

    .final-inner > div:first-child > p {
        margin-bottom: 30px;
    }

    .final-inner h2 {
        font-size: clamp(45px, 13.2vw, 62px);
        line-height: 1.02;
    }

    .final-action {
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .circle-cta {
        width: 145px;
        height: 145px;
    }

    .circle-cta span {
        font-size: 13px;
    }

    .final-action > p {
        text-align: left;
    }

    .site-footer {
        padding-bottom: 45px;
    }

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

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

    .mobile-cta {
        position: fixed;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 10px;
        z-index: 90;
        display: flex;
        height: 62px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        overflow: hidden;
        padding: 8px 9px 8px 17px;
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--white);
        background: rgba(16, 27, 32, .97);
        box-shadow: 0 10px 35px rgba(10, 15, 17, .28);
        opacity: 0;
        transform: translateY(90px);
        transition: opacity .35s ease, transform .35s ease;
    }

    .mobile-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-cta > span {
        display: flex;
        min-width: 0;
        flex: 1 1 auto;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-cta small,
    .mobile-cta strong {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-cta small {
        color: rgba(255, 254, 250, .48);
        font-size: 8px;
    }

    .mobile-cta strong {
        font-size: 14px;
    }

    .mobile-cta > b {
        display: flex;
        min-width: 0;
        max-width: 58%;
        height: 44px;
        flex: 0 1 auto;
        align-items: center;
        gap: 18px;
        overflow: hidden;
        padding: 0 14px;
        background: var(--signal);
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .mobile-cta > b > span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-cta > b i {
        flex: 0 0 auto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }
}

@media (max-width: 370px) {
    .hero-copy h1 {
        font-size: 46px;
    }

    .brand-type small {
        display: none;
    }

    .price-main strong {
        font-size: 59px;
    }

    .final-action > p {
        display: none;
    }

    .final-action {
        justify-content: flex-end;
    }
}

@media (max-width: 340px) {
    .hero-copy h1 {
        font-size: 41px;
    }
}

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

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

    .js.reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
