:root {
    --ink: #07111f;
    --ink-2: #14233a;
    --muted: #596a80;
    --muted-2: #8795a6;
    --line: #dce6f0;
    --line-strong: #c5d3e1;
    --paper: #ffffff;
    --wash: #f5f9fc;
    --wash-2: #edf6ff;
    --blue: #0067ff;
    --cyan: #00c7ee;
    --green: #18b982;
    --amber: #ffb020;
    --danger: #ff4d68;
    --shadow-sm: 0 12px 34px rgba(7, 17, 31, 0.08);
    --shadow: 0 28px 90px rgba(7, 17, 31, 0.16);
    --radius: 8px;
    --asset-grid-light:
        linear-gradient(90deg, rgba(197, 211, 225, 0.58) 1px, transparent 1px),
        linear-gradient(rgba(197, 211, 225, 0.58) 1px, transparent 1px);
    --asset-grid-dark:
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

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

.site-shell {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 8%, rgba(0, 199, 238, 0.16), transparent 28rem),
        radial-gradient(circle at 4% 22%, rgba(0, 103, 255, 0.08), transparent 22rem),
        #ffffff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(220, 230, 240, 0.9);
    backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
    box-shadow: 0 16px 42px rgba(7, 17, 31, 0.08);
}

.nav {
    width: min(1200px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

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

.brand img {
    width: 168px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #43546a;
    font-size: 0.9rem;
    font-weight: 850;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--ink);
}

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

.nav-login {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
    transition: color 160ms ease;
}

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

.nav-actions,
.hero-actions,
.price-actions,
.cta-actions,
.section-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    padding: 0 18px;
    color: var(--ink);
    background: #ffffff;
    font-size: 0.92rem;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    color: #ffffff;
    border-color: var(--ink);
    background: var(--ink);
    box-shadow: 0 16px 38px rgba(7, 17, 31, 0.2);
}

.button-primary:hover {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 18px 46px rgba(0, 103, 255, 0.24);
}

.button-secondary:hover {
    border-color: var(--blue);
}

.button-light {
    color: var(--ink);
    border-color: #ffffff;
    background: #ffffff;
}

.button-ghost-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.62);
    background: transparent;
}

.hero {
    width: min(1200px, calc(100% - 40px));
    min-height: min(760px, calc(100vh - 72px));
    margin: 0 auto;
    padding: 54px 0 68px;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.hero h1,
.page-hero h1,
.seo-hero h1,
.case-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(3rem, 4.75vw, 5rem);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-copy,
.page-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: #47596f;
    font-size: clamp(1.03rem, 1.15vw, 1.2rem);
}

.hero-actions,
.price-actions {
    margin-top: 28px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-note span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #ffffff;
    font-size: 0.84rem;
    font-weight: 850;
}

.product-stage {
    position: relative;
    min-height: 500px;
}

.stage-logo {
    position: absolute;
    top: 0;
    right: 24px;
    width: 220px;
    opacity: 0.06;
}

.browser-frame {
    position: absolute;
    right: 0;
    top: 44px;
    width: min(560px, 100%);
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.11);
    border-radius: var(--radius);
    background:
        var(--asset-grid-light),
        radial-gradient(circle at 86% 12%, rgba(0, 199, 238, 0.12), transparent 18rem),
        #ffffff;
    background-size: 28px 28px, 28px 28px, auto, auto;
    box-shadow: var(--shadow);
}

.browser-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(248, 251, 254, 0.92);
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c6d2df;
}

.browser-title {
    margin-left: 10px;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
}

.lobby-preview {
    padding: 20px;
    background: transparent;
}

.preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.preview-head strong {
    display: block;
    color: var(--ink);
    font-size: 1.14rem;
}

.preview-head span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.preview-status {
    color: var(--green);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.34fr 1fr 1fr;
    grid-template-rows: repeat(2, 138px);
    gap: 12px;
}

.thumb {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        var(--asset-grid-light),
        #f8fbfe;
    background-size: 22px 22px;
    min-height: 0;
}

.thumb.wide {
    grid-column: auto;
}

.preview-grid .thumb:first-child {
    grid-row: 1 / span 2;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-grid .thumb:not(:first-child) img {
    object-fit: contain;
}

.preview-grid::after {
    content: "CMS-ready export";
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(24, 185, 130, 0.32);
    border-radius: var(--radius);
    color: var(--green);
    background:
        var(--asset-grid-light),
        #f4fffb;
    background-size: 22px 22px;
    font-size: 0.78rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
}

.input-stack,
.output-badge {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.input-stack {
    left: -58px;
    top: 96px;
    width: 190px;
    padding: 12px;
    background:
        var(--asset-grid-light),
        #ffffff;
    background-size: 24px 24px;
}

.input-stack span,
.output-badge span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.input-stack img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.72) contrast(0.86);
}

.output-badge {
    display: none;
    left: 44px;
    bottom: 30px;
    width: 290px;
    padding: 12px;
}

.output-badge img {
    width: 100%;
    border-radius: 6px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.stage-line {
    position: absolute;
    left: 158px;
    top: 220px;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.stage-line::before,
.stage-line::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue);
}

.stage-line::before {
    left: 0;
}

.stage-line::after {
    right: 0;
    background: var(--green);
}

.trust-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
}

.trust-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    min-height: 142px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 45px rgba(7, 17, 31, 0.055);
    min-width: 0;
}

.trust-item:last-child {
    border-right: 1px solid var(--line);
}

.trust-item strong {
    display: block;
    color: var(--ink);
    font-size: 1rem;
}

.trust-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

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

.section-alt {
    background: var(--wash);
}

.section-dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 199, 238, 0.2), transparent 25rem),
        #07111f;
}

.section-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.48fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
}

.section h2 {
    max-width: 820px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.35rem, 3.75vw, 4.05rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0;
}

.section-dark h2,
.section-dark .large-statement {
    color: #ffffff;
}

.section-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.74);
}

.split,
.pricing-detail-grid,
.case-copy-grid,
.seo-link-index {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}

.large-statement {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.05vw, 3.4rem);
    line-height: 1.04;
    font-weight: 950;
}

.copy-stack {
    display: grid;
    gap: 22px;
}

.copy-stack p {
    margin: 0;
    color: #4a5c72;
    font-size: 1.08rem;
}

.story-list,
.gain-list,
.faq-list,
.pricing-detail-list,
.seo-link-list,
.process {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.story-row,
.gain-list li,
.faq-list li,
.pricing-detail-list div,
.seo-link-list a {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.story-row strong,
.gain-list strong,
.faq-list strong,
.pricing-detail-list strong,
.seo-link-list strong {
    color: var(--ink);
    font-size: 1.03rem;
    line-height: 1.2;
}

.story-row span,
.gain-list span,
.faq-list span,
.pricing-detail-list span,
.seo-link-list span {
    color: var(--muted);
}

.inline-link {
    display: inline-flex;
    margin-left: 4px;
    color: var(--ink);
    font-weight: 950;
    border-bottom: 1px solid rgba(0, 103, 255, 0.35);
    transition: color 160ms ease, border-color 160ms ease;
}

.inline-link:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.section-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 76px;
    padding-bottom: 76px;
}

.section-menu a,
.value-card,
.plan-card,
.example-pair,
.workflow-shot {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.section-menu a {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-menu a:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.11);
}

.section-menu span {
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 950;
}

.section-menu strong {
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 950;
}

.section-menu em {
    color: var(--muted);
    font-style: normal;
    font-weight: 750;
}

.seo-link-index h2 {
    font-size: clamp(2.4rem, 4.2vw, 4.5rem);
}

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

.example-pair {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 0;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.example-pair.is-large {
    box-shadow: var(--shadow);
}

.example-pair:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

.example-media {
    display: flex;
    min-height: 0;
    flex-direction: column;
    min-width: 0;
    border-right: 1px solid var(--line);
    background:
        var(--asset-grid-light),
        #f8fbfe;
    background-size: 24px 24px;
}

.example-media.after {
    border-right: 0;
}

.example-media span {
    display: block;
    padding: 11px 14px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.example-media img {
    width: 100%;
    height: clamp(240px, 24vw, 330px);
    object-fit: contain;
    background: transparent;
}

.example-media.before img {
    object-position: center;
}

.example-media.after img {
    object-position: center;
}

.example-copy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px;
    border-top: 1px solid var(--line);
}

.example-copy h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.05;
}

.example-copy p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    font-weight: 720;
    line-height: 1.45;
}

.text-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    margin-top: 16px;
    padding: 0 14px;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--ink);
    font-size: 0.9rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.16);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.text-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.text-link:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 16px 38px rgba(0, 103, 255, 0.24);
}

.section-actions {
    margin-top: 32px;
}

.seo-hero .example-pair,
.case-hero .example-pair {
    max-width: 540px;
    justify-self: end;
}

.example-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.example-mosaic a {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.example-mosaic a:nth-child(even) {
    transform: translateY(30px);
}

.example-mosaic img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.page-hero,
.seo-hero,
.case-hero {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.82fr);
    gap: 60px;
    align-items: start;
}

.seo-visual-stack {
    position: relative;
    min-height: 560px;
}

.seo-visual-stack img {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        var(--asset-grid-light),
        #f8fbfe;
    background-size: 24px 24px;
    box-shadow: var(--shadow);
}

.seo-visual-stack img:first-child {
    left: 0;
    top: 18px;
    width: 56%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.72) contrast(0.86);
}

.seo-visual-stack img:last-child {
    right: 0;
    bottom: 0;
    width: 50%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.price-hero-panel {
    width: min(100%, 430px);
    justify-self: end;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.price-summary-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.price-summary-row:first-child {
    padding-top: 0;
}

.price-summary-row strong {
    color: var(--ink);
}

.price-summary-row span {
    color: var(--muted);
}

.price-highlight {
    padding: 18px 0 0;
}

.price-highlight strong {
    display: block;
    color: var(--blue);
    font-size: 2.72rem;
    line-height: 1;
    font-weight: 950;
}

.price-highlight span {
    color: var(--muted);
    font-weight: 800;
}

.price-art {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding-top: 4px;
}

.price-art figure {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        var(--asset-grid-light),
        #f8fbfe;
    background-size: 22px 22px;
}

.price-art span {
    display: block;
    padding: 8px 10px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.7rem;
    font-weight: 950;
    text-transform: uppercase;
}

.price-art img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    object-fit: contain;
}

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

.trial-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr) auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid rgba(0, 103, 255, 0.26);
    border-radius: var(--radius);
    background: linear-gradient(112deg, rgba(0, 103, 255, 0.08), rgba(0, 199, 238, 0.08)), #ffffff;
    box-shadow: var(--shadow-sm);
}

.trial-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.trial-card p:not(.section-kicker) {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 760;
}

.trial-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trial-card li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
    font-weight: 760;
}

.trial-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 590px;
    flex-direction: column;
    overflow: hidden;
    padding: 26px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-card.is-featured {
    border-color: rgba(0, 103, 255, 0.55);
    box-shadow: 0 28px 80px rgba(0, 103, 255, 0.18);
}

.plan-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.13);
}

.plan-card.is-featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--wash-2);
    font-size: 0.72rem;
    font-weight: 950;
    text-transform: uppercase;
}

.plan-name {
    display: block;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 950;
}

.plan-price {
    display: block;
    color: var(--ink);
    font-size: 3.1rem;
    line-height: 1;
    font-weight: 950;
}

.plan-price .muted {
    color: var(--muted);
    font-size: 1.1rem;
}

.plan-note {
    display: block;
    min-height: 48px;
    margin-top: 14px;
    color: var(--muted);
    font-weight: 750;
}

.plan-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--line);
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-weight: 720;
}

.plan-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.plan-action {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--ink);
    font-weight: 950;
}

.plan-action:hover {
    border-color: var(--blue);
    background: var(--blue);
}

.plan-card.is-featured .plan-action {
    border-color: var(--blue);
    background: var(--blue);
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.section-inner:has(.compare-table) {
    overflow-x: auto;
}

.compare-table th,
.compare-table td {
    padding: 18px 16px 18px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.compare-table th {
    color: var(--ink);
}

.compare-table td {
    color: var(--muted);
}

.process-step {
    display: grid;
    grid-template-columns: 80px minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.process-number {
    color: var(--blue);
    font-weight: 950;
}

.process-step h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.05;
}

.process-step p {
    margin: 0;
    color: var(--muted);
}

.product-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.proof-cell {
    min-height: 150px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    min-width: 0;
}

.proof-cell:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-cell strong {
    display: block;
    color: #ffffff;
    font-size: 1.95rem;
    line-height: 1;
}

.proof-cell span {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 760;
    overflow-wrap: anywhere;
}

.workflow-shot {
    overflow: hidden;
    width: min(100%, 390px);
    justify-self: end;
    background:
        var(--asset-grid-light),
        #f8fbfe;
    background-size: 24px 24px;
}

.workflow-shot img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.workflow-shot div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-top: 1px solid var(--line);
}

.workflow-shot strong {
    color: var(--ink);
}

.workflow-shot span {
    color: var(--green);
    font-weight: 950;
}

.cta-band {
    color: #ffffff;
    background: linear-gradient(112deg, #0067ff 0%, #008df4 52%, #00c7ee 100%);
}

.cta-band .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 76px;
}

.cta-band h2 {
    color: #ffffff;
}

.cta-band p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
}

.footer {
    border-top: 1px solid var(--line);
    background: #ffffff;
    padding: 46px 0 34px;
}

.footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
    gap: 56px;
    padding: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-brand {
    display: grid;
    gap: 20px;
    align-content: start;
}

.footer-brand img {
    width: 166px;
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 760;
}

.footer-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-proof span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: #f7fbff;
    font-size: 0.78rem;
    font-weight: 900;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-cta {
    display: inline-flex;
    width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--ink);
    font-weight: 950;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-cta:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    background: var(--blue);
}

.footer-secondary {
    display: inline-flex;
    width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    color: var(--ink);
    background: #ffffff;
    font-weight: 950;
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.footer-secondary:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    color: var(--blue);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    align-content: start;
    padding-top: 4px;
}

.footer-nav div {
    display: grid;
    gap: 12px;
    align-content: start;
}

.footer-nav span {
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-nav a {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 850;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-nav a:hover {
    transform: translateX(2px);
    color: var(--blue);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-weight: 760;
}

@media (max-width: 1120px) {
    .hero,
    .page-hero,
    .seo-hero,
    .case-hero,
    .split,
    .section-head,
    .pricing-detail-grid,
    .case-copy-grid,
    .seo-link-index,
    .cta-band .section-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .product-stage {
        min-height: 540px;
    }

    .trust-inner,
    .pricing-grid,
    .product-proof,
    .section-menu,
    .example-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trial-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .trust-item,
    .proof-cell {
        border-bottom: 1px solid var(--line);
    }

    .proof-cell {
        border-bottom-color: rgba(255, 255, 255, 0.16);
    }

    .seo-hero .example-pair,
    .case-hero .example-pair,
    .price-hero-panel,
    .workflow-shot {
        justify-self: start;
    }

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

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

@media (max-width: 760px) {
    .nav,
    .hero,
    .page-hero,
    .seo-hero,
    .case-hero,
    .section-inner,
    .trust-inner,
    .footer-inner {
        width: min(100% - 30px, 1200px);
    }

    .nav {
        min-height: 68px;
    }

    .brand img {
        width: 148px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .button-secondary {
        display: none;
    }

    .nav-login {
        display: none;
    }

    .hero,
    .page-hero,
    .seo-hero,
    .case-hero {
        padding: 52px 0 64px;
        gap: 38px;
    }

    .hero h1,
    .page-hero h1,
    .seo-hero h1,
    .case-hero h1 {
        font-size: 3.15rem;
    }

    .product-stage {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .stage-logo,
    .stage-line,
    .input-stack,
    .output-badge {
        display: none;
    }

    .browser-frame {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .preview-grid .thumb:first-child,
    .preview-grid .thumb:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .preview-grid::after {
        display: none;
    }

    .thumb {
        aspect-ratio: 3 / 4;
    }

    .trust-inner,
    .pricing-grid,
    .product-proof,
    .section-menu,
    .example-grid,
    .trial-card,
    .example-pair,
    .example-copy,
    .story-row,
    .gain-list li,
    .faq-list li,
    .pricing-detail-list div,
    .seo-link-list a,
    .process-step,
    .price-summary-row {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .proof-cell {
        min-height: auto;
        padding: 22px 0;
    }

    .trust-item {
        padding: 20px;
    }

    .proof-cell {
        padding: 22px;
    }

    .proof-cell {
        border-bottom-color: rgba(255, 255, 255, 0.16);
    }

    .section-inner {
        padding: 70px 0;
    }

    .section-head {
        gap: 22px;
        margin-bottom: 34px;
    }

    .section h2 {
        font-size: 2.45rem;
    }

    .large-statement {
        font-size: 2.1rem;
    }

    .plan-card {
        min-height: auto;
    }

    .seo-visual-stack {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .seo-visual-stack img {
        position: relative;
        inset: auto !important;
        width: 100% !important;
    }

    .example-mosaic,
    .price-art {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-art {
        width: 100%;
    }

    .example-media {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        background:
            var(--asset-grid-light),
            #f8fbfe;
        background-size: 24px 24px;
    }

    .example-media img {
        height: auto;
        object-fit: contain;
    }

    .example-copy {
        gap: 12px;
        padding: 22px;
    }

    .example-mosaic a:nth-child(even) {
        transform: none;
    }

    .footer-inner {
        padding: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    .hero h1,
    .page-hero h1,
    .seo-hero h1,
    .case-hero h1 {
        font-size: 2.58rem;
    }

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

    .nav-actions .button-primary {
        width: auto;
        min-height: 40px;
        padding: 0 12px;
    }
}
