:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-2: #f1f5fb;
    --text: #111827;
    --muted: #64748b;
    --line: #e5eaf1;
    --blue: #0a84ff;
    --blue-2: #0066d6;
    --dark: #0b1020;
    --green: #10b981;
    --yellow: #f7c948;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.1);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    --radius: 28px;
    --radius-sm: 18px;
    --max: 1160px;
}

html {
    scroll-padding-top: 22px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0;
}

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

.pricing-page a {
    color: inherit;
    text-decoration: none;
}

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

.eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn {
    height: 50px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    transition: 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    color: #fff;
    box-shadow: 0 14px 30px rgba(10, 132, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(10, 132, 255, 0.34);
}

.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.75);
    color: #172033;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.section {
    padding: 84px 0;
}

.section-title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.section-desc {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at 70% 5%, rgba(10, 132, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #101728 0%, #111827 42%, #263144 100%);
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    opacity: 0.5;
}

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

.nav {
    margin-bottom: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.86);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.brand-logo {
    width: 36px;
    height: 36px;
}

.brand .brand-wordmark {
    font-size: 23px;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-buy {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
}

.pricing-auth {
    gap: 0;
}

.pricing-auth .auth-link-button,
.pricing-auth .auth-avatar-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
}

.pricing-auth .auth-link-button {
    min-height: 42px;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 850;
}

.pricing-auth .auth-pill-button,
.pricing-auth .auth-feedback-btn {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
    gap: 46px;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 24px;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: 0;
}

.hero .lead {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero .btn {
    height: 56px;
    padding: 0 28px;
}

.hero-proof {
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.proof-pill {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.proof-pill strong {
    display: block;
    color: #fff;
    font-size: 22px;
}

.proof-pill span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.hero-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-shot-card {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
    transform: rotate(1deg);
    box-sizing: border-box;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    --bg: #f5f7fb;
    --paper: #fff;
    --ink: #0b1220;
    --muted: #667085;
    --line: #e6eaf2;
    --blue: #1478ff;
    --blue2: #0057d9;
    --navy: #071426;
    --soft: #eef5ff;
    --cream: #fff8e8;
    --shadow: 0 18px 50px rgba(10, 22, 50, 0.1);
    --shadow2: 0 10px 30px rgba(10, 22, 50, 0.08);
    --radius: 28px;
    --max: 1180px;
}

.hero-shot-card.screen::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    opacity: 0.55;
}

.hero-shot-card .screenIn {
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    padding: 18px;
    background: var(--bg);
    color: #111;
    box-sizing: border-box;
}

.hero-shot-card .browser {
    height: 14px;
    display: flex;
    gap: 6px;
}

.hero-shot-card .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    background: #d8dde7;
}

.hero-shot-card .lessonCard {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #e8edf5;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow2);
}

.hero-shot-card .pill {
    padding: 7px 12px;
    display: inline-block;
    border-radius: 99px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.hero-shot-card .lessonCard h3 {
    max-width: 620px;
    margin-top: 20px;
    color: #111;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
}

.hero-shot-card .wave {
    height: 46px;
    margin: 14px 0;
    border-radius: 14px;
    background: linear-gradient(90deg, #eaf3ff, #cfe3ff, #eaf3ff);
}

.hero-shot-card .line {
    height: 10px;
    margin: 9px 0;
    border-radius: 99px;
    background: #e9eef7;
    width: 100%;
}

.hero-shot-card .line.w70 {
    width: 70%;
}

.hero-shot-card .line.w45 {
    width: 45%;
}

.hero-shot-card .lessonCard p {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.result-bar {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.result-wrap {
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1.25fr repeat(4, 1fr);
    gap: 28px;
    align-items: center;
}

.result-wrap h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: 0;
}

.result-wrap p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.metric strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
}

.metric span {
    color: var(--muted);
    font-size: 12px;
}

.cards {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    background: var(--surface);
    box-shadow: var(--soft-shadow);
}

.card .num {
    margin-bottom: 22px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

#benefits.white {
    background: #fff;
}

#benefits .wrap {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

#benefits h2 {
    margin: 10px 0 14px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

#benefits .lead {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

#benefits .cards {
    margin-top: 34px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

#benefits .card {
    min-height: 218px;
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 22, 50, 0.08);
}

#benefits .icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #e9f3ff, #fff);
    color: var(--blue);
    font-size: 16px;
    font-weight: 900;
}

#benefits .card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.4;
}

#benefits .card p {
    font-size: 15px;
    line-height: 1.75;
}

#benefits .card p br {
    display: none;
}

#outcome .wrap {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

#outcome h2 {
    margin: 10px 0 14px;
    max-width: 980px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

#outcome .outcome {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

#outcome .compare {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(10, 22, 50, 0.08);
}

#outcome .compare.bad {
    background: #fbfcff;
}

#outcome .compare.good {
    background: linear-gradient(180deg, #fff, #eff6ff);
}

#outcome .tag {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

#outcome .sentence {
    margin: 18px 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: -0.03em;
    font-weight: 850;
}

#outcome .compare.good .sentence {
    color: #0d5dd8;
}

#outcome .translation {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.anchor {
    background: #fff;
}

.anchor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: end;
}

.compare-row {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.compare {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: #fbfdff;
}

.compare.focus {
    border-color: rgba(10, 132, 255, 0.35);
    background: linear-gradient(180deg, #f1f8ff, #fff);
    box-shadow: var(--soft-shadow);
}

.compare small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.compare strong {
    display: block;
    margin: 8px 0;
    font-size: 24px;
}

.compare span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.price-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 34px;
    background: linear-gradient(180deg, #0e1528, #111827);
    color: #fff;
    box-shadow: var(--shadow);
}

.price-panel::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(10, 132, 255, 0.35);
    filter: blur(30px);
}

.price-panel > * {
    position: relative;
}

.price-label {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.price {
    margin: 24px 0 10px;
    font-size: 104px;
    line-height: 0.9;
    font-weight: 950;
    letter-spacing: 0;
}

.price em {
    font-size: 24px;
    font-style: normal;
}

.subprice {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
}

.checklist {
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.checklist li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.checklist li::before {
    content: "✓";
    color: #76e4b5;
    font-weight: 900;
}

.price-panel .btn {
    width: 100%;
    height: 58px;
    font-size: 16px;
}

.risk-note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.pricing-message {
    margin-top: 14px;
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(234, 244, 255, 0.12);
    color: #cfe7ff;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.6;
}

.pricing-message[data-tone="success"] {
    background: rgba(16, 185, 129, 0.14);
    color: #a7f3d0;
}

.pricing-message[data-tone="error"] {
    background: rgba(248, 113, 113, 0.15);
    color: #fecaca;
}

.pricing-order-panel {
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-order-panel h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
}

.pricing-order-details {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.pricing-order-details div,
.pricing-payment-box {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-order-details dt {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-weight: 800;
}

.pricing-order-details dd {
    margin: 4px 0 0;
    color: #fff;
    font-weight: 850;
    word-break: break-word;
}

.pricing-payment-box {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.pricing-payment-box strong {
    display: block;
    color: #fff;
}

.pricing-contact-placeholder {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.pricing-order-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.screens {
    background: var(--bg);
}

.lesson-flow {
    margin-top: 60px;
}

.flow-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.74fr);
    gap: 48px;
    align-items: start;
}

.flow-goal-card {
    min-height: 160px;
    border: 1px solid #dceafe;
    border-radius: 24px;
    padding: 26px 32px;
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.goal-icon,
.award-icon {
    display: grid;
    place-items: center;
    color: var(--blue);
}

.goal-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.goal-icon svg,
.award-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goal-icon svg {
    width: 56px;
    height: 56px;
    stroke-width: 4;
}

.flow-goal-card h3 {
    margin: 0;
    letter-spacing: 0;
}

.flow-goal-card h3 {
    font-size: 20px;
    text-align: left;
}

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

.flow-goal-card li {
    position: relative;
    padding-left: 30px;
    color: #526981;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.36;
}

.flow-goal-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eaf4ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 950;
}

.flow-stage + .flow-stage {
    margin-top: 28px;
}

.flow-stage-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flow-stage-badge {
    flex: 0 0 auto;
    padding: 10px 20px;
    border: 1px solid #d8e6ff;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6faff 0%, #edf4ff 100%);
    color: #2f67eb;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
}

.flow-stage-line,
.flow-divider-line {
    flex: 1 1 auto;
    height: 1px;
    background: #d9dde5;
}

.flow-stage-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.flow-card {
    position: relative;
    min-height: 218px;
    overflow: hidden;
    border: 1px solid #d8dce4;
    border-radius: 24px;
    padding: 28px 22px 24px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.flow-card-number {
    display: block;
    color: #e6eefc;
    font-size: 54px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.05em;
}

.flow-card h3 {
    margin: 18px 0 10px;
    color: #151515;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0;
}

.flow-card p {
    margin: 0;
    color: #3d3d3d;
    font-size: 14px;
    line-height: 1.55;
}

.flow-divider {
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 22px;
}

.flow-divider-arrow {
    flex: 0 0 auto;
    color: #6a6a6a;
    font-size: 36px;
    line-height: 1;
}

.flow-card-active {
    border-color: #366df0;
    background: linear-gradient(180deg, #3b74f6 0%, #2f64e4 100%);
    box-shadow: 0 18px 34px rgba(47, 100, 228, 0.22);
}

.flow-card-active .flow-card-number {
    color: rgba(255, 255, 255, 0.2);
}

.flow-card-active h3,
.flow-card-active p {
    color: #fff;
}

.flow-card-ai {
    background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.flow-card-ai .flow-card-number {
    font-size: 50px;
    letter-spacing: -0.03em;
}

.flow-card-ai h3,
.flow-card-ai p {
    color: #2f67eb;
}

.screens-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.screen-large,
.screen-side {
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.course-ui {
    overflow: hidden;
    border: 1px solid #e5edf6;
    border-radius: 22px;
    background: #f8fafc;
}

.ui-head {
    border-bottom: 1px solid #e5edf6;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ui-head b {
    font-size: 20px;
}

.ui-body {
    padding: 20px;
}

.sentence {
    margin-bottom: 12px;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    padding: 16px;
    background: #fff;
}

.sentence .en {
    font-size: 17px;
    font-weight: 800;
}

.sentence .zh {
    margin-top: 8px;
    color: #64748b;
}

.chips {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    border-radius: 999px;
    padding: 7px 10px;
    background: #eaf4ff;
    color: #0a6fe8;
    font-size: 12px;
    font-weight: 800;
}

.mini-ui {
    padding: 22px;
}

.mini-ui h3 {
    margin: 0 0 16px;
    font-size: 22px;
}

.step {
    border-bottom: 1px solid #edf2f7;
    padding: 14px 0;
    display: flex;
    gap: 12px;
}

.step:last-child {
    border-bottom: 0;
}

.step i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    background: #eaf4ff;
    color: #0a6fe8;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.step p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

.step b {
    color: #111827;
}

.cases {
    background: #fff;
}

.case-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.case-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: var(--soft-shadow);
}

.avatar {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eaf4ff, #dbeafe);
    color: #0a6fe8;
    font-weight: 950;
}

.case-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.case-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.case-card strong {
    color: #111827;
}

.fit-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.list-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.list-panel.warn {
    border-color: #f3dfb1;
    background: #fffaf0;
}

.warn-eyebrow {
    color: #d97706;
}

.list-panel h3 {
    margin: 0 0 18px;
    font-size: 26px;
}

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

.clean-list li {
    display: flex;
    gap: 10px;
    color: #475569;
    line-height: 1.55;
}

.clean-list li::before {
    content: "•";
    color: var(--blue);
    font-weight: 900;
}

.warn .clean-list li::before {
    color: #d97706;
}

.founder-note {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.founder-note .wrap {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 0 28px;
}

.founder-note h2 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.founder {
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 30px;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 22, 50, 0.08);
}

.founder .avatar {
    width: 110px;
    height: 110px;
    margin: 0;
    border-radius: 30px;
    justify-self: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(10, 111, 232, 0.08);
}

.founder .avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #fff7ef 0%, #f4f7ff 100%);
}

.founder p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.proof-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
    background: #fff;
}

.proof-band .container {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 36px;
    align-items: center;
}

.proof-band h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 950;
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.proof-metrics div {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: #f8fafc;
}

.proof-metrics strong {
    display: block;
    font-size: 26px;
}

.proof-metrics span {
    color: var(--muted);
    font-size: 12px;
}

.faq-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 17px;
}

.faq-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.final-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, #080d19, #111827);
    color: #fff;
    text-align: center;
}

.final-eyebrow {
    color: #7cc4ff;
}

.final-cta h2 {
    margin: 0 0 14px;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: 0;
}

.final-cta p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
}

.sticky-buy {
    position: sticky;
    bottom: 14px;
    z-index: 20;
    width: min(var(--max), calc(100% - 28px));
    margin: -48px auto 14px;
    border: 1px solid rgba(229, 234, 241, 0.9);
    border-radius: 999px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sticky-buy b {
    padding-left: 14px;
    font-size: 14px;
}

.sticky-buy .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
}

.real-proof {
    background: linear-gradient(180deg, #f6f8fb, #ffffff);
}

.real-focus-grid {
    margin-top: 40px;
    display: grid;
    gap: 28px;
}

.real-shot {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(76, 153, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.09);
}

.shot-kicker {
    margin: 0 0 16px;
    color: #0a6fe8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.real-story {
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 32px;
    align-items: center;
}

.real-story:nth-child(even) {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.real-story:nth-child(even) .real-story-copy {
    order: 2;
}

.real-story:nth-child(even) .real-story-visual {
    order: 1;
}

.real-story-copy {
    position: relative;
    z-index: 1;
    padding: 8px 4px 8px 2px;
}

.real-story-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.real-story-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

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

.real-story-points span {
    min-height: 68px;
    border: 1px solid rgba(10, 132, 255, 0.14);
    border-radius: 20px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.real-story-visual {
    position: relative;
    min-height: 320px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(122, 169, 255, 0.36), transparent 32%),
        radial-gradient(circle at bottom right, rgba(10, 132, 255, 0.18), transparent 34%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 55%, #eef4ff 100%);
}

.real-story-visual::before,
.real-story-visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.65;
}

.real-story-visual::before {
    width: 110px;
    height: 110px;
    top: 20px;
    right: 26px;
    background: rgba(255, 255, 255, 0.92);
}

.real-story-visual::after {
    width: 160px;
    height: 160px;
    bottom: 12px;
    left: 12px;
    background: rgba(199, 224, 255, 0.72);
}

.real-story-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 32px 70px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.real-story-frame img {
    width: 100%;
    border: 1px solid rgba(223, 232, 245, 0.92);
    border-radius: 24px;
    display: block;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.real-story-dictation .real-story-frame img {
    border-radius: 26px;
}

.proof-highlight {
    margin-top: 22px;
    border-radius: 999px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ebf4ff 0%, #f5f9ff 100%);
    color: #0a6fe8;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(10, 132, 255, 0.09);
}

@media (max-width: 900px) {
    .nav {
        margin-bottom: 48px;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: flex;
        gap: 8px;
    }

    .pricing-auth .auth-link-button {
        min-height: 38px;
        padding: 0 12px;
    }

    .nav-buy {
        height: 38px;
        padding: 0 14px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-grid,
    .anchor-grid,
    .screens-grid,
    .flow-hero,
    .fit-grid,
    .proof-band .container,
    .real-focus-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-proof,
    .result-wrap,
    .cards,
    .case-grid,
    .proof-metrics,
    .faq-grid,
    .compare-row,
    #outcome .outcome {
        grid-template-columns: 1fr;
    }

    #benefits .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founder {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .result-wrap {
        gap: 18px;
    }

    .section {
        padding: 58px 0;
    }

    .section-title {
        font-size: 34px;
    }

    #outcome h2 {
        font-size: 34px;
    }

    #benefits .card {
        min-height: auto;
    }

    .price {
        font-size: 82px;
    }

    .sticky-buy {
        border-radius: 24px;
        align-items: stretch;
    }

    .sticky-buy b {
        display: none;
    }

    .sticky-buy .btn {
        width: 100%;
        height: 48px;
    }

    .hero-card {
        display: none;
    }

    .flow-goal-card {
        grid-template-columns: 96px 1fr;
    }

    .goal-icon {
        width: 82px;
        height: 82px;
    }

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

    .flow-card {
        min-height: 196px;
    }

    .real-story,
    .real-story:nth-child(even) {
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .real-story:nth-child(even) .real-story-copy,
    .real-story:nth-child(even) .real-story-visual {
        order: initial;
    }

    .real-story-points {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .real-story-points span {
        min-height: auto;
    }

    .real-story-visual {
        padding: 16px;
        min-height: auto;
    }

    .real-story-frame {
        padding: 12px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .brand {
        font-size: 14px;
    }

    .brand-logo {
        width: 30px;
        height: 30px;
    }

    .brand .brand-wordmark {
        font-size: 20px;
    }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-buy {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    #outcome .wrap {
        width: min(100% - 24px, 1180px);
    }

    #benefits .wrap {
        width: min(100% - 24px, 1180px);
    }

    .founder-note .wrap {
        width: min(100% - 24px, 1180px);
        padding: 0;
    }

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

    #outcome .compare {
        padding: 22px;
        border-radius: 24px;
    }

    #outcome .sentence {
        font-size: 21px;
    }

    .hero .lead {
        font-size: 17px;
    }

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

    .hero .btn,
    .btn {
        width: 100%;
    }

    .price {
        font-size: 72px;
    }

    .flow-goal-card {
        border-radius: 20px;
        padding: 20px;
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 18px;
    }

    .flow-goal-card h3 {
        font-size: 24px;
    }

    .founder {
        border-radius: 24px;
        padding: 22px;
        gap: 18px;
    }

    .founder .avatar {
        width: 84px;
        height: 84px;
        border-radius: 24px;
        font-size: 32px;
    }

    .flow-stage-head {
        gap: 12px;
    }

    .flow-stage-badge {
        padding: 9px 16px;
        font-size: 15px;
    }

    .flow-stage-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .flow-card {
        min-height: auto;
        border-radius: 20px;
        padding: 22px 18px 20px;
    }

    .flow-card-number,
    .flow-card-ai .flow-card-number {
        font-size: 44px;
    }

    .flow-card h3 {
        margin-top: 14px;
        font-size: 18px;
    }

    .flow-card p {
        font-size: 13px;
    }

    .flow-divider {
        gap: 14px;
        margin: 18px 0;
    }

    .flow-divider-arrow {
        font-size: 28px;
    }
}
