:root {
    --bg: #f7f3ec;
    --surface: #fffaf2;
    --ink: #171717;
    --muted: #69645b;
    --line: rgba(23, 23, 23, 0.12);
    --blue: #1557d6;
    --green: #0f8a72;
    --coral: #d96745;
    --gold: #c59a3d;
    --radius: 22px;
    --shadow: 0 24px 80px rgba(20, 19, 17, 0.18);
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(21, 87, 214, 0.5);
    outline-offset: 4px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--green), var(--blue));
    transform: scaleX(var(--page-progress, 0));
    transform-origin: left center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--max), calc(100% - 40px));
    min-height: 64px;
    margin: 14px auto 0;
    padding: 10px 12px 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(24, 22, 19, 0.42);
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-nav .nav-cta {
    background: #fff;
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: 94svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
}

.hero-media,
.hero-scrim {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: 58% center;
    transform: translateY(calc(var(--scroll-y, 0) * 0.06px));
    filter: saturate(0.96) contrast(1.02);
}

.hero-scrim {
    background:
        linear-gradient(90deg, rgba(9, 9, 8, 0.86) 0%, rgba(9, 9, 8, 0.68) 38%, rgba(9, 9, 8, 0.16) 68%, rgba(9, 9, 8, 0.08) 100%),
        linear-gradient(180deg, rgba(9, 9, 8, 0.35) 0%, rgba(9, 9, 8, 0.08) 42%, rgba(9, 9, 8, 0.56) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 74px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.eyebrow.dark {
    color: var(--green);
}

.hero-title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.55rem, 6.5vw, 5.15rem);
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
    word-break: auto-phrase;
    overflow-wrap: anywhere;
}

.hero-title .title-line {
    display: block;
}

.mobile-break {
    display: none;
}

.mobile-title {
    display: none;
}

.hero-lead {
    max-width: 730px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.65vw, 1.24rem);
    line-height: 2;
    text-wrap: pretty;
}

.hero-actions,
.offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
    background: var(--blue);
    color: #fff;
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.offer .button.secondary {
    border-color: var(--line);
    color: var(--ink);
    background: #fff;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(720px, 100%);
    gap: 10px;
    margin-top: 48px;
}

.hero-kpis div {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.hero-kpis span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kpis strong {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 1.08rem;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #fff;
    animation: cue 1.8s ease-in-out infinite;
}

.section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 118px 0;
}

.section-grid,
.sticky-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: start;
}

.section-copy {
    position: sticky;
    top: 118px;
}

.section-copy h2,
.sticky-copy h2,
.section-head h2,
.ai-copy h2,
.offer-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-copy p,
.sticky-copy p,
.ai-copy p,
.offer-card p {
    color: var(--muted);
    font-size: 1.02rem;
    text-wrap: pretty;
}

.pain-stack {
    display: grid;
    gap: 16px;
}

.pain-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.78);
    box-shadow: 0 12px 50px rgba(23, 23, 23, 0.07);
}

.pain-card span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 138, 114, 0.12);
    color: var(--green);
    font-weight: 900;
}

.pain-card h3 {
    margin: 18px 0 8px;
    font-size: 1.34rem;
    line-height: 1.35;
}

.pain-card p,
.proof-card p {
    margin: 0;
    color: var(--muted);
}

.method {
    width: 100%;
    max-width: none;
    padding: 120px max(20px, calc((100vw - var(--max)) / 2));
    background: #efe7da;
}

.sticky-copy {
    position: sticky;
    top: 118px;
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--blue);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.journey-panel {
    display: grid;
    place-items: center;
    min-height: 740px;
}

.phone-frame {
    width: min(360px, 100%);
    padding: 18px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 38px;
    background: #141414;
    box-shadow: var(--shadow);
    transform: translateY(calc(var(--scroll-y, 0) * -0.012px));
}

.phone-top {
    width: 78px;
    height: 7px;
    margin: 4px auto 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.feed-card {
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
}

.feed-card.image-card {
    padding: 0;
    overflow: hidden;
}

.feed-card.image-card img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
}

.feed-card span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.feed-card strong {
    display: block;
    margin-top: 4px;
    line-height: 1.5;
}

.motion-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    text-wrap: pretty;
}

.what-you-get {
    padding-top: 110px;
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 24px;
    padding: clamp(30px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: 0 18px 68px rgba(23, 23, 23, 0.08);
}

.intro-panel h2,
.program-detail h2,
.faq-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.18;
    letter-spacing: 0;
    text-wrap: balance;
}

.intro-panel p,
.get-card p,
.timeline-card p,
.faq-item p {
    color: var(--muted);
    text-wrap: pretty;
}

.intro-panel > p {
    margin: 0;
    font-size: 1.04rem;
}

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

.get-card {
    min-height: 320px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.72);
}

.card-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21, 87, 214, 0.1);
    color: var(--blue);
    font-weight: 900;
}

.get-card h3 {
    margin: 22px 0 10px;
    font-size: 1.28rem;
    line-height: 1.35;
}

.get-card p {
    margin: 0;
    line-height: 1.75;
}

.program-detail {
    padding-top: 54px;
}

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

.timeline-card {
    position: relative;
    min-height: 270px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
}

.timeline-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--gold), var(--green), var(--blue));
}

.timeline-card span {
    display: inline-flex;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.timeline-card h3 {
    margin: 14px 0 10px;
    font-size: 1.18rem;
    line-height: 1.42;
}

.timeline-card p {
    margin: 0;
    line-height: 1.75;
}

.self-study {
    padding-top: 86px;
}

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

.compare-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 16px 58px rgba(23, 23, 23, 0.08);
}

.compare-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.compare-card h3 {
    margin: 0 0 18px;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.25;
    text-wrap: balance;
}

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

.compare-card li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.65;
}

.compare-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.compare-card.risk {
    background: #fff4ee;
}

.compare-card.risk li::before {
    background: var(--coral);
}

.compare-card.gain {
    background: #eff9f5;
}

.compare-card.gain li::before {
    background: var(--green);
}

.urgency-note {
    max-width: 820px;
    margin: 24px auto 0;
    padding: 18px 24px;
    border: 1px solid rgba(21, 87, 214, 0.18);
    border-radius: 999px;
    background: rgba(21, 87, 214, 0.08);
    color: var(--blue);
    text-align: center;
    font-weight: 800;
}

.member-benefits {
    padding-bottom: 70px;
}

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

.join-visual-grid {
    margin-top: 22px;
}

.benefit-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 14px 48px rgba(23, 23, 23, 0.08);
}

.benefit-card img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
}

.benefit-card h3,
.benefit-card p {
    padding: 0 22px;
}

.benefit-card h3 {
    margin: 22px 0 10px;
    font-size: 1.28rem;
}

.benefit-card p {
    padding-bottom: 24px;
}

.results-section {
    width: 100%;
    max-width: none;
    padding: 112px max(20px, calc((100vw - var(--max)) / 2));
    background: #171717;
    color: #fff;
}

.results-section .section-head p {
    color: rgba(255, 255, 255, 0.68);
}

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

.result-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 22px;
    min-height: 390px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 76px rgba(0, 0, 0, 0.2);
}

.result-card.featured {
    background:
        linear-gradient(145deg, rgba(21, 87, 214, 0.36), rgba(255, 255, 255, 0.09));
    border-color: rgba(255, 255, 255, 0.24);
}

.member-meta span,
.result-number small {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.member-meta strong {
    display: block;
    margin-top: 6px;
    font-size: 1.22rem;
}

.result-number {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.result-number b {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1;
}

.result-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    text-wrap: pretty;
}

.proof-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.proof-bar div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.proof-bar strong,
.proof-bar span {
    display: block;
}

.proof-bar strong {
    font-size: 1.45rem;
}

.proof-bar span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

.result-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
    text-align: center;
}

.ai-section {
    position: relative;
    min-height: 760px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: #0d1114;
}

.ai-background {
    position: absolute;
    inset: 0;
}

.ai-background img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center;
    transform: translateY(calc(var(--scroll-y, 0) * 0.035px));
}

.ai-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 10, 12, 0.92) 0%, rgba(8, 10, 12, 0.64) 48%, rgba(8, 10, 12, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 10, 12, 0.18), rgba(8, 10, 12, 0.76));
}

.ai-content {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 40px;
    align-items: center;
}

.ai-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.ai-board {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(14, 16, 18, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.board-header {
    display: flex;
    gap: 7px;
    padding: 4px 0 16px;
}

.board-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.board-row {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.board-row + .board-row {
    margin-top: 10px;
}

.board-row.active {
    background: rgba(21, 87, 214, 0.38);
}

.board-row.muted {
    border: 1px dashed rgba(255, 255, 255, 0.24);
    background: transparent;
}

.board-row small {
    display: block;
    color: rgba(255, 255, 255, 0.56);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.board-row strong {
    display: block;
    margin-top: 4px;
    line-height: 1.45;
}

.offer {
    padding-bottom: 130px;
}

.faq-section {
    padding-bottom: 42px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 10px 36px rgba(23, 23, 23, 0.06);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 18px 58px 18px 24px;
    cursor: pointer;
    font-weight: 900;
    line-height: 1.5;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(15, 138, 114, 0.1);
    color: var(--green);
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
}

.offer-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(34px, 7vw, 64px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.offer-actions {
    justify-content: center;
}

.footer {
    width: 100%;
    padding: 40px 20px;
    border-top: 1px solid var(--line);
    background: #171717;
    color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
    width: min(var(--max), 100%);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer a:hover {
    color: #fff;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-visible {
    animation: reveal-in 650ms ease both;
}

@keyframes cue {
    0% {
        transform: translate(-50%, 0);
        opacity: 0.25;
    }
    45% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 18px);
        opacity: 0.2;
    }
}

@keyframes reveal-in {
    from {
        opacity: 0.01;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 920px) {
    .site-header {
        width: calc(100% - 28px);
    }

    .site-nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: 92svh;
    }

    .hero-media img {
        object-position: 64% center;
    }

    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(9, 9, 8, 0.66) 0%, rgba(9, 9, 8, 0.72) 44%, rgba(9, 9, 8, 0.84) 100%);
    }

    .hero-inner {
        padding: 126px 0 62px;
    }

    .hero-title {
        font-size: clamp(2.05rem, 8.5vw, 3.35rem);
    }

    .hero-kpis,
    .intro-panel,
    .get-grid,
    .timeline-grid,
    .comparison-grid,
    .benefit-grid,
    .result-grid,
    .proof-bar,
    .section-grid,
    .sticky-layout,
    .ai-content {
        grid-template-columns: 1fr;
    }

    .section-copy,
    .sticky-copy {
        position: static;
    }

    .journey-panel {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .site-header {
        width: calc(100vw - 28px);
        min-height: 58px;
        margin-top: 10px;
        padding-left: 18px;
        gap: 12px;
    }

    .brand {
        flex: 0 0 auto;
        font-size: 1.05rem;
    }

    .site-nav {
        position: absolute;
        top: 50%;
        right: 12px;
        flex: 0 0 auto;
        margin-left: 0;
        min-width: 0;
        transform: translateY(-50%);
    }

    .site-nav .nav-cta {
        max-width: 132px;
        padding: 0 13px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.86rem;
    }

    .hero-inner,
    .section,
    .ai-content {
        width: min(100% - 32px, var(--max));
    }

    .hero-title {
        font-size: clamp(1.86rem, 8.05vw, 2.28rem);
        line-height: 1.12;
    }

    .mobile-break {
        display: block;
    }

    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    .hero-lead {
        font-size: 0.96rem;
        line-height: 1.9;
        overflow-wrap: anywhere;
    }

    .join-hero .hero-title {
        font-size: clamp(1.72rem, 7.15vw, 2.05rem);
    }

    .hero-actions,
    .offer-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-kpis {
        gap: 8px;
    }

    .hero-kpis div {
        padding: 13px 15px;
    }

    .section {
        padding: 82px 0;
    }

    .what-you-get {
        padding-top: 82px;
    }

    .get-card,
    .timeline-card {
        min-height: auto;
    }

    .method {
        padding: 82px 16px;
    }

    .results-section {
        padding: 82px 16px;
    }

    .section-copy h2,
    .sticky-copy h2,
    .section-head h2,
    .intro-panel h2,
    .program-detail h2,
    .faq-section h2,
    .ai-copy h2,
    .offer-card h2 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .pain-card {
        padding: 22px;
    }

    .urgency-note {
        border-radius: 20px;
        text-align: left;
    }

    .result-card {
        min-height: auto;
        padding: 24px;
    }

    .ai-content {
        grid-template-columns: 1fr;
    }

    .ai-board {
        padding: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .hero-media img,
    .ai-background img,
    .phone-frame {
        transform: none;
    }
}
