/* =========================================
   PANEL SAGA — THE PROTAGONIST ARC
   ========================================= */

:root {
    --background: #07070d;
    --background-soft: #0c0b15;
    --text: #f5f3fb;
    --text-muted: #aaa6ba;
    --purple: #a34cff;
    --purple-light: #c89cff;
    --border: rgba(163, 76, 255, 0.25);
}


/* =========================================
   RESET
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--background);
    color: var(--text);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    min-height: 100vh;

    overflow-x: hidden;
}


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


/* =========================================
   HEADER
   ========================================= */

.product-header {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    position: relative;
    z-index: 10;
}


.product-logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;

    display: flex;
    align-items: center;
    gap: 10px;
}


.product-logo span {
    font-size: 23px;
    opacity: 0.85;
}


.header-cta {
    padding: 13px 24px;

    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--purple-light);

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.header-cta:hover {
    background: rgba(163, 76, 255, 0.12);
    border-color: rgba(163, 76, 255, 0.55);

    transform: translateY(-1px);
}


/* =========================================
   HERO
   ========================================= */

.hero {
    min-height: calc(100vh - 82px);

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    padding: 90px 24px 110px;

    text-align: center;

    overflow: hidden;
}


/* subtle purple atmosphere */

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 500px;

    left: 50%;
    top: 35%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(132, 45, 255, 0.16) 0%,
            rgba(132, 45, 255, 0.06) 35%,
            transparent 70%
        );

    pointer-events: none;
}


.hero-content {
    width: 100%;
    max-width: 1050px;

    position: relative;
    z-index: 1;
}


/* =========================================
   EYEBROW
   ========================================= */

.eyebrow {
    margin-bottom: 28px;

    color: var(--purple-light);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;
}


/* =========================================
   TITLE
   ========================================= */

.hero h1 {
    font-size: clamp(64px, 8vw, 116px);

    line-height: 0.92;

    letter-spacing: -5px;

    font-weight: 800;

    margin-bottom: 40px;
}


.hero h1 span {
    display: block;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #d7b7ff 55%,
            #a34cff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =========================================
   HERO SUBTITLE
   ========================================= */

.hero h2 {
    font-size: clamp(24px, 3vw, 38px);

    line-height: 1.3;

    letter-spacing: -1px;

    font-weight: 700;

    max-width: 850px;

    margin: 0 auto 25px;
}


.hero-description {
    max-width: 700px;

    margin: 0 auto 38px;

    color: var(--text-muted);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   CTA
   ========================================= */

.primary-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 220px;

    padding: 17px 30px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #a34cff,
            #7835d0
        );

    box-shadow:
        0 12px 35px rgba(125, 47, 220, 0.28);

    font-size: 16px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.primary-cta span {
    font-size: 20px;
}


.primary-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 45px rgba(125, 47, 220, 0.4);
}


.hero-note {
    margin-top: 18px;

    color: #777388;

    font-size: 13px;
}


/* =========================================
   TEMPORARY NEXT SECTION
   ========================================= */

.section-placeholder {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 24px;

    background: var(--background-soft);

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: #777388;

    text-align: center;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .product-header {
        height: 72px;

        padding: 0 20px;
    }


    .product-logo {
        font-size: 21px;
    }


    .header-cta {
        padding: 10px 17px;

        font-size: 13px;
    }


    .hero {
        min-height: calc(100vh - 72px);

        padding:
            70px
            20px
            90px;
    }


    .eyebrow {
        margin-bottom: 22px;

        font-size: 11px;

        letter-spacing: 3px;
    }


    .hero h1 {
        font-size: clamp(52px, 15vw, 76px);

        letter-spacing: -3px;

        margin-bottom: 30px;
    }


    .hero h2 {
        font-size: 23px;

        line-height: 1.35;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.6;
    }


    .primary-cta {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================================
   RECOGNITION SECTION
   ========================================= */

.recognition-section {
    padding: 120px 24px;

    background:
        linear-gradient(
            180deg,
            #0c0b15 0%,
            #090811 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.recognition-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.recognition-section .section-label {
    margin-bottom: 22px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}


.recognition-section h2 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}


.recognition-intro {
    max-width: 700px;

    margin-bottom: 60px;

    color: var(--text-muted);

    font-size: 19px;

    line-height: 1.7;
}


/* CARDS */

.recognition-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.recognition-card {
    min-height: 250px;

    padding: 34px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.recognition-card:hover {
    transform: translateY(-4px);

    background:
        rgba(163, 76, 255, 0.045);

    border-color:
        rgba(163, 76, 255, 0.25);
}


.recognition-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 12px;

    background:
        rgba(163, 76, 255, 0.1);

    border:
        1px solid rgba(163, 76, 255, 0.18);

    color: var(--purple-light);

    font-size: 20px;
}


.recognition-card h3 {
    margin-bottom: 12px;

    color: var(--text);

    font-size: 23px;

    letter-spacing: -0.5px;
}


.recognition-card p {
    max-width: 440px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* REFRAME */

.recognition-reframe {
    max-width: 760px;

    margin-top: 75px;

    padding-top: 45px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.recognition-reframe p {
    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 18px;
}


.recognition-reframe strong {
    display: block;

    color: var(--text);

    font-size: clamp(24px, 3vw, 32px);

    line-height: 1.35;

    letter-spacing: -0.8px;
}


/* =========================================
   RECOGNITION — MOBILE
   ========================================= */

@media (max-width: 700px) {

    .recognition-section {
        padding: 85px 20px;
    }


    .recognition-section h2 {
        font-size: 38px;

        letter-spacing: -1.8px;
    }


    .recognition-intro {
        font-size: 17px;

        margin-bottom: 40px;
    }


    .recognition-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .recognition-card {
        min-height: auto;

        padding: 28px;
    }


    .recognition-reframe {
        margin-top: 55px;

        padding-top: 35px;
    }
}

/* =========================================
   THE ARC SECTION
   ========================================= */

.arc-section {
    padding: 130px 24px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(125, 48, 210, 0.08),
            transparent 45%
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.arc-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.arc-section .section-label {
    margin-bottom: 22px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}


.arc-section h2 {
    max-width: 850px;

    margin-bottom: 30px;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.02;

    letter-spacing: -3px;
}


.arc-section h2 span {
    display: block;

    color: var(--purple-light);
}


.arc-intro {
    max-width: 760px;

    color: var(--text-muted);

    font-size: 19px;

    line-height: 1.75;
}


.arc-intro + .arc-intro {
    margin-top: 12px;

    color: var(--text);
}


/* =========================================
   ARC SYSTEM
   ========================================= */

.arc-system {
    margin-top: 80px;

    display: flex;
    align-items: stretch;

    gap: 0;
}


.arc-step {
    flex: 1;

    padding: 30px 25px;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.02);

    border-radius: 16px;
}


.arc-number {
    margin-bottom: 30px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.arc-step h3 {
    margin-bottom: 14px;

    font-size: 21px;

    letter-spacing: -0.5px;
}


.arc-step p {
    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.65;
}


.arc-line {
    width: 24px;

    flex-shrink: 0;

    align-self: center;

    height: 1px;

    background:
        rgba(163, 76, 255, 0.4);
}


/* =========================================
   ARC STATEMENT
   ========================================= */

.arc-statement {
    max-width: 800px;

    margin-top: 85px;

    padding-top: 45px;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.arc-statement p {
    margin-bottom: 12px;

    color: var(--text-muted);

    font-size: 18px;
}


.arc-statement strong {
    display: block;

    color: var(--text);

    font-size: clamp(26px, 3vw, 36px);

    line-height: 1.3;

    letter-spacing: -1px;
}


/* =========================================
   ARC — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .arc-system {
        flex-direction: column;

        gap: 14px;
    }


    .arc-line {
        width: 1px;

        height: 22px;

        margin: 0 auto;
    }

}


@media (max-width: 700px) {

    .arc-section {
        padding: 90px 20px;
    }


    .arc-section h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .arc-intro {
        font-size: 17px;
    }


    .arc-system {
        margin-top: 55px;
    }


    .arc-step {
        padding: 27px;
    }


    .arc-statement {
        margin-top: 60px;
    }

}

/* =========================================
   WHAT'S INSIDE SECTION
   ========================================= */

.inside-section {
    padding: 135px 24px;

    background: #07070d;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.inside-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.inside-section .section-label {
    margin-bottom: 22px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}


.inside-section h2 {
    margin-bottom: 28px;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.03;

    letter-spacing: -3px;
}


.inside-section h2 span {
    color: var(--purple-light);
}


.inside-intro {
    max-width: 720px;

    margin-bottom: 70px;

    color: var(--text-muted);

    font-size: 19px;

    line-height: 1.7;
}


/* =========================================
   INSIDE GRID
   ========================================= */

.inside-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.inside-card {
    min-height: 340px;

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.inside-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(163, 76, 255, 0.28);
}


.inside-card-large,
.inside-card-wide {
    grid-column: span 2;
}


.inside-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 55px;
}


.inside-number {
    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.inside-tag {
    color: #777388;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.inside-card h3 {
    max-width: 650px;

    margin-bottom: 15px;

    font-size: 28px;

    line-height: 1.2;

    letter-spacing: -1px;
}


.inside-card p {
    max-width: 650px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   MISSION VISUAL
   ========================================= */

.inside-visual {
    max-width: 460px;

    margin-top: 35px;

    padding: 25px;

    background:
        rgba(0, 0, 0, 0.18);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;
}


.visual-label {
    margin-bottom: 15px;

    color: var(--purple-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.visual-line {
    color: #5d596b;

    font-size: 13px;
}


.visual-line.short {
    margin-top: 8px;

    max-width: 70%;
}


/* =========================================
   CHARACTER STATS
   ========================================= */

.stat-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
}


.stat-list span {
    padding: 9px 11px;

    border:
        1px solid rgba(163, 76, 255, 0.2);

    border-radius: 8px;

    background:
        rgba(163, 76, 255, 0.05);

    color: #c5a3e9;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================
   BOSS VISUAL
   ========================================= */

.boss-visual {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    padding: 18px;

    background:
        rgba(163, 76, 255, 0.04);

    border:
        1px solid rgba(163, 76, 255, 0.12);

    border-radius: 12px;
}


.boss-symbol {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(163, 76, 255, 0.1);

    color: var(--purple-light);

    font-size: 20px;
}


.boss-visual strong {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    letter-spacing: 1px;
}


.boss-visual small {
    color: #777388;

    font-size: 12px;
}


/* =========================================
   DAILY QUEST
   ========================================= */

.daily-content {
    display: grid;

    grid-template-columns:
        1fr 320px;

    gap: 50px;

    align-items: center;
}


.quest-preview {
    padding: 25px;

    background:
        rgba(163, 76, 255, 0.045);

    border:
        1px solid rgba(163, 76, 255, 0.16);

    border-radius: 14px;
}


.quest-day {
    margin-bottom: 25px;

    color: var(--purple-light);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


.quest-preview strong {
    display: block;

    margin-bottom: 10px;

    font-size: 16px;
}


.quest-preview p {
    font-size: 14px;
}


.quest-xp {
    margin-top: 25px;

    color: #a9ffcc;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================
   BOTTOM LINE
   ========================================= */

.inside-bottom {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 65px;

    color: #716c7e;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    text-align: center;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .inside-section {
        padding: 90px 20px;
    }


    .inside-section h2 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .inside-intro {
        font-size: 17px;

        margin-bottom: 50px;
    }


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


    .inside-card-large,
    .inside-card-wide {
        grid-column: span 1;
    }


    .inside-card {
        min-height: auto;

        padding: 27px;
    }


    .inside-card-top {
        margin-bottom: 40px;
    }


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


    .daily-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .inside-bottom {
        line-height: 1.8;
    }

}

/* =========================================
   WORKBOOK PREVIEW
   ========================================= */

.preview-section {
    padding: 140px 24px;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(130, 60, 220, 0.08),
            transparent 45%
        );
}


.preview-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


.preview-section .section-label {
    margin-bottom: 22px;

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}


.preview-section h2 {
    margin-bottom: 28px;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.04;

    letter-spacing: -3px;
}


.preview-section h2 span {
    color: var(--purple-light);
}


.preview-intro {
    max-width: 700px;

    margin-bottom: 75px;

    color: var(--text-muted);

    font-size: 19px;

    line-height: 1.7;
}


/* =========================================
   WORKBOOK GRID
   ========================================= */

.workbook-preview-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    align-items: start;
}


/* =========================================
   WORKBOOK PAGE
   ========================================= */

.workbook-page {
    position: relative;

    min-height: 510px;

    padding: 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f7f5fb,
            #e9e4f2
        );

    border-radius: 8px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    color: #17131f;

    transform:
        translateY(0);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.workbook-page:nth-child(2) {
    transform: translateY(35px);
}


.workbook-page:nth-child(3) {
    transform: translateY(10px);
}


.workbook-page:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.45);
}


.workbook-page:nth-child(2):hover {
    transform:
        translateY(27px);
}


/* =========================================
   PAGE HEADER
   ========================================= */

.page-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom:
        1px solid rgba(20, 15, 30, 0.12);

    color: #81788c;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.page-content {
    padding-top: 45px;
}


.page-label {
    margin-bottom: 20px;

    color: #8146c8;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.page-content h3 {
    max-width: 280px;

    margin-bottom: 18px;

    font-size: 30px;

    line-height: 1.08;

    letter-spacing: -1.2px;
}


.page-content p {
    max-width: 290px;

    color: #716a7b;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   WRITING AREA
   ========================================= */

.writing-area {
    margin-top: 45px;

    padding: 18px;

    border:
        1px solid rgba(30, 20, 40, 0.1);

    border-radius: 6px;

    background:
        rgba(255, 255, 255, 0.45);
}


.writing-area span {
    display: block;

    margin-bottom: 20px;

    color: #81788c;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.writing-area div {
    height: 22px;

    border-bottom:
        1px solid rgba(40, 30, 50, 0.22);
}


/* =========================================
   CHARACTER BARS
   ========================================= */

.character-bars {
    margin-top: 35px;
}


.character-bars div {
    margin-bottom: 17px;
}


.character-bars span {
    display: block;

    margin-bottom: 7px;

    color: #71697b;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}


.character-bars i {
    display: block;

    height: 6px;

    width: 100%;

    border-radius: 10px;

    background:
        #d8d2e0;

    overflow: hidden;
}


.character-bars i::after {
    content: "";

    display: block;

    height: 100%;

    width: 55%;

    border-radius: inherit;

    background:
        #8c4bd5;
}


.character-bars div:nth-child(2) i::after {
    width: 72%;
}


.character-bars div:nth-child(3) i::after {
    width: 42%;
}


.character-bars div:nth-child(4) i::after {
    width: 64%;
}


.character-bars div:nth-child(5) i::after {
    width: 81%;
}


/* =========================================
   DAILY QUEST
   ========================================= */

.day-counter {
    margin-bottom: 30px;

    color: #6e6579;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.quest-box {
    margin-top: 35px;

    padding: 18px;

    border-radius: 6px;

    background:
        #ece7f3;

    border:
        1px solid rgba(110, 70, 150, 0.12);
}


.quest-box span,
.reflection-box span {
    display: block;

    margin-bottom: 10px;

    color: #8146c8;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.quest-box strong {
    display: block;

    color: #28202f;

    font-size: 14px;

    line-height: 1.5;
}


.reflection-box {
    margin-top: 15px;

    padding: 18px;

    border-top:
        1px solid rgba(30, 20, 40, 0.1);
}


.reflection-box p {
    margin: 0;

    font-size: 12px;
}


/* =========================================
   PAGE FOOTER
   ========================================= */

.page-footer {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;

    padding-top: 14px;

    border-top:
        1px solid rgba(20, 15, 30, 0.1);

    color: #8a8293;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================
   PREVIEW NOTE
   ========================================= */

.preview-note {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 14px;

    max-width: 650px;

    margin: 105px auto 0;

    text-align: center;
}


.preview-note-mark {
    color: var(--purple-light);

    font-size: 20px;
}


.preview-note p {
    margin: 0;

    color: #777181;

    font-size: 14px;

    line-height: 1.6;
}


.preview-note strong {
    color: #c7b4db;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .workbook-preview-grid {
        grid-template-columns: 1fr;
        max-width: 480px;

        margin: 0 auto;
    }


    .workbook-page,
    .workbook-page:nth-child(2),
    .workbook-page:nth-child(3) {
        transform: none;
    }


    .workbook-page:hover,
    .workbook-page:nth-child(2):hover {
        transform: translateY(-5px);
    }


    .preview-section {
        padding: 90px 20px;
    }


    .preview-section h2 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .preview-intro {
        font-size: 17px;

        margin-bottom: 55px;
    }

}


/* =========================================
   REAL PRODUCT PREVIEWS
========================================= */

.arc-preview-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 100px;
}

.arc-section-heading {
    max-width: 900px;
    margin-bottom: 70px;
}

.arc-eyebrow {
    display: inline-block;
    margin-bottom: 24px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #b982ff;
}

.arc-section-heading h2 {
    margin: 0;

    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.045em;

    color: #f7f5fb;
}

.arc-section-heading h2 span {
    color: #b982ff;
}

.arc-section-heading p {
    max-width: 780px;
    margin-top: 28px;

    font-size: 18px;
    line-height: 1.7;

    color: #aeb0c4;
}


/* GRID */

.arc-preview-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* CARD */

.arc-preview-card {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.arc-preview-card:hover {
    transform: translateY(-6px);

    border-color: rgba(185, 130, 255, 0.35);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}


/* IMAGE */

.arc-preview-image {
    padding: 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(185, 130, 255, 0.08),
            transparent 65%
        );
}

.arc-preview-image img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 8px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4);
}


/* CAPTION */

.arc-preview-caption {
    display: flex;
    gap: 20px;

    padding: 25px 28px 30px;
}

.arc-preview-caption > span {
    flex-shrink: 0;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;

    color: #b982ff;
}

.arc-preview-caption strong {
    display: block;

    font-size: 19px;

    color: #f5f3fa;
}

.arc-preview-caption p {
    margin: 7px 0 0;

    font-size: 15px;
    line-height: 1.55;

    color: #9ea1b8;
}


/* BOTTOM MESSAGE */

.arc-preview-bottom {
    margin-top: 60px;

    text-align: center;

    font-size: 16px;
    color: #85889f;
}

.arc-preview-bottom span {
    margin-right: 8px;

    color: #b982ff;
}

.arc-preview-bottom strong {
    color: #e8e5f0;
}


/* MOBILE */

@media (max-width: 800px) {

    .arc-preview-section {
        padding-top: 90px;
    }

    .arc-preview-grid {
        grid-template-columns: 1fr;
    }

    .arc-preview-image {
        padding: 18px;
    }

    .arc-preview-caption {
        padding: 20px;
    }

}

/* =========================================
   OFFER SECTION
========================================= */

.arc-offer-section {
    max-width: 1200px;
    margin: 0 auto;

    padding: 120px 24px 140px;
}

.arc-offer-inner {
    max-width: 1150px;
    margin: 0 auto;
}

.arc-offer-section .arc-eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #b982ff;
}


.arc-offer-section h2 {
    margin: 0;

    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;

    letter-spacing: -0.045em;

    color: #f7f5fb;
}

.arc-offer-section h2 span {
    color: #b982ff;
}


.arc-offer-lead {
    max-width: 700px;

    margin: 30px 0 70px;

    font-size: 20px;
    line-height: 1.7;

    color: #aeb0c4;
}


/* GRID */

.arc-offer-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(380px, 0.9fr);

    gap: 70px;

    align-items: start;
}


/* LEFT SIDE */

.arc-offer-copy {
    display: flex;

    flex-direction: column;

    gap: 0;
}


.arc-offer-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 22px;

    padding: 30px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.arc-offer-point:last-child {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.arc-offer-point > span {
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.15em;

    color: #b982ff;
}


.arc-offer-point h3 {
    margin: 0;

    font-size: 20px;

    color: #f5f3fa;
}


.arc-offer-point p {
    max-width: 600px;

    margin: 10px 0 0;

    font-size: 15px;
    line-height: 1.65;

    color: #979aae;
}


/* OFFER CARD */

.arc-offer-card {
    position: sticky;

    top: 30px;

    padding: 34px;

    border: 1px solid rgba(185, 130, 255, 0.28);

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(185, 130, 255, 0.10),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.30);
}


.arc-offer-card-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.15em;

    color: #8f91a7;
}


.arc-offer-card h3 {
    margin: 30px 0 14px;

    font-size: 30px;
    line-height: 1.1;

    letter-spacing: -0.025em;

    color: #f7f5fb;
}


.arc-offer-card > p {
    margin: 0 0 30px;

    font-size: 15px;
    line-height: 1.65;

    color: #a5a7bb;
}


/* INCLUDES */

.arc-offer-includes {
    display: flex;

    flex-direction: column;

    gap: 13px;

    padding: 24px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.arc-offer-includes div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 14px;

    color: #d5d3df;
}


.arc-offer-includes span {
    color: #b982ff;

    font-weight: 800;
}


/* PRICE */

.arc-offer-price {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 28px 0;
}


.arc-offer-price small {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;

    color: #85879d;
}


.arc-offer-price strong {
    font-size: 48px;
    line-height: 1;

    letter-spacing: -0.04em;

    color: #f7f5fb;
}


.arc-offer-price > span {
    font-size: 13px;

    color: #85879d;
}


/* BUTTON */

.arc-primary-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    width: 100%;

    padding: 17px 24px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #b982ff,
            #8654d8
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(142, 85, 220, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.arc-primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(142, 85, 220, 0.38);
}


.arc-primary-button span {
    font-size: 20px;
}


/* MOBILE */

@media (max-width: 900px) {

    .arc-offer-section {
        padding-top: 90px;
    }

    .arc-offer-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .arc-offer-card {
        position: relative;

        top: auto;
    }

}


@media (max-width: 600px) {

    .arc-offer-card {
        padding: 25px;
    }

    .arc-offer-card h3 {
        font-size: 26px;
    }

    .arc-offer-point {
        grid-template-columns: 35px 1fr;

        gap: 14px;
    }

}


/* =========================================
   TRANSFORMATION SECTION
========================================= */

.pa-transformation {
    max-width: 1180px;
    margin: 0 auto;
    padding: 150px 32px;
}

.pa-section-label {
    color: #bd7cff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.pa-transformation-heading {
    max-width: 850px;
}

.pa-transformation-heading h2 {
    margin: 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 800;
}

.pa-transformation-heading h2 span {
    display: block;
    color: #bd7cff;
}

.pa-transformation-heading p {
    max-width: 760px;
    margin-top: 30px;
    color: #aeb0c4;
    font-size: 18px;
    line-height: 1.8;
}


/* SHIFTS */

.pa-shifts {
    margin-top: 90px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.pa-shift {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 35px;
    padding: 42px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.pa-shift-number {
    color: #bd7cff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    padding-top: 6px;
}

.pa-shift h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 750;
}

.pa-shift h3 span {
    color: #bd7cff;
}

.pa-shift p {
    max-width: 720px;
    margin: 14px 0 0;
    color: #9fa2b8;
    font-size: 16px;
    line-height: 1.75;
}


/* CLOSING */

.pa-transformation-close {
    margin-top: 110px;
    padding: 70px 40px;
    text-align: center;
    border: 1px solid rgba(189,124,255,0.25);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at center,
            rgba(128, 65, 210, 0.12),
            transparent 65%
        );
}

.pa-transformation-close p {
    margin: 0;
    color: #9fa2b8;
    font-size: 17px;
}

.pa-transformation-close h3 {
    margin: 18px auto 0;
    max-width: 700px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.pa-transformation-close h3 span {
    color: #bd7cff;
}


/* MOBILE */

@media (max-width: 700px) {

    .pa-transformation {
        padding: 100px 22px;
    }

    .pa-transformation-heading h2 {
        letter-spacing: -2px;
    }

    .pa-shift {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 32px 0;
    }

    .pa-shift h3 {
        font-size: 22px;
    }

    .pa-shift p {
        font-size: 15px;
    }

    .pa-transformation-close {
        padding: 50px 24px;
    }

}


/* =========================================
   FAQ SECTION
========================================= */

.pa-faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 150px 32px 120px;
}

.pa-faq-header {
    max-width: 800px;
    margin-bottom: 70px;
}

.pa-faq-header h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.pa-faq-header h2 span {
    display: block;
    color: #bd7cff;
}

.pa-faq-header p {
    margin-top: 25px;
    color: #aeb0c4;
    font-size: 17px;
    line-height: 1.7;
}


/* FAQ LIST */

.pa-faq-list {
    border-top: 1px solid rgba(255,255,255,0.12);
}


/* FAQ ITEM */

.pa-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pa-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 30px 5px;

    cursor: pointer;

    list-style: none;

    font-size: 19px;
    font-weight: 700;

    color: #f5f3fa;
}

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


/* PLUS ICON */

.pa-faq-icon {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(189,124,255,0.35);
    border-radius: 50%;

    color: #bd7cff;

    font-size: 22px;
    font-weight: 400;

    transition: transform 0.25s ease;
}


/* OPEN STATE */

.pa-faq-item[open] .pa-faq-icon {
    transform: rotate(45deg);
}


/* ANSWER */

.pa-faq-answer {
    padding: 0 70px 30px 5px;
}

.pa-faq-answer p {
    margin: 0;

    color: #9fa2b8;

    font-size: 16px;
    line-height: 1.8;

    max-width: 720px;
}


/* MOBILE */

@media (max-width: 700px) {

    .pa-faq {
        padding: 100px 22px 80px;
    }

    .pa-faq-header {
        margin-bottom: 50px;
    }

    .pa-faq-header h2 {
        letter-spacing: -1.5px;
    }

    .pa-faq-item summary {
        padding: 24px 0;
        font-size: 17px;
    }

    .pa-faq-answer {
        padding: 0 45px 25px 0;
    }

}


/* =========================================
   FINAL CTA
========================================= */

.pa-final-cta {
    padding: 160px 32px 120px;
}

.pa-final-cta-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}


/* HEADER */

.pa-final-cta h2 {
    margin: 0;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;
}

.pa-final-cta h2 span {
    display: block;
    color: #bd7cff;
}

.pa-final-description {
    max-width: 650px;

    margin: 32px auto 70px;

    color: #aeb0c4;

    font-size: 18px;
    line-height: 1.7;
}


/* OFFER CARD */

.pa-final-offer {
    max-width: 900px;

    margin: 0 auto;

    padding: 55px;

    text-align: left;

    border: 1px solid rgba(189,124,255,0.35);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at top right,
            rgba(157, 92, 255, 0.14),
            transparent 45%
        ),
        rgba(18, 15, 30, 0.75);

    box-shadow:
        0 30px 100px rgba(0,0,0,0.35);
}


/* OFFER TOP */

.pa-final-offer-top {
    display: grid;

    grid-template-columns:
        1fr
        220px;

    gap: 60px;

    padding-bottom: 40px;

    border-bottom:
        1px solid rgba(255,255,255,0.10);
}

.pa-offer-label,
.pa-price-label {
    color: #9d94ad;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.pa-final-offer h3 {
    margin: 20px 0 16px;

    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -1.2px;
}

.pa-final-offer p {
    margin: 0;

    color: #aeb0c4;

    font-size: 16px;

    line-height: 1.7;
}


/* PRICE */

.pa-final-price {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}

.pa-final-price strong {
    display: block;

    margin: 8px 0;

    font-size: 48px;

    line-height: 1;

    color: #f7f4fb;
}

.pa-final-price > span:last-child {
    color: #89869a;

    font-size: 13px;
}


/* FEATURES */

.pa-final-includes {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px 30px;

    padding: 35px 0;
}

.pa-final-includes div {
    color: #d5d0df;

    font-size: 15px;
}

.pa-final-includes div::first-letter {
    color: #bd7cff;
}


/* BUTTON */

.pa-final-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    width: 100%;

    padding: 20px 28px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #bd7cff,
        #8748db
    );

    color: white;

    font-size: 17px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 15px 40px rgba(141,76,220,0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

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

    box-shadow:
        0 20px 50px rgba(141,76,220,0.35);
}

.pa-final-button span {
    font-size: 22px;
}


/* NOTE */

.pa-final-note {
    margin-top: 18px;

    text-align: center;

    color: #777487;

    font-size: 13px;
}


/* CLOSING */

.pa-final-closing {
    max-width: 700px;

    margin: 80px auto 0;

    color: #9f9bad;

    font-size: 16px;

    line-height: 1.7;
}

.pa-final-closing span {
    margin-right: 8px;

    color: #bd7cff;
}

.pa-final-closing strong {
    color: #f4f1f8;
}


/* MOBILE */

@media (max-width: 700px) {

    .pa-final-cta {
        padding: 100px 20px 80px;
    }

    .pa-final-cta h2 {
        letter-spacing: -2px;
    }

    .pa-final-description {
        margin-bottom: 50px;
        font-size: 16px;
    }

    .pa-final-offer {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .pa-final-offer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pa-final-offer h3 {
        font-size: 28px;
    }

    .pa-final-price strong {
        font-size: 42px;
    }

    .pa-final-includes {
        grid-template-columns: 1fr;
        gap: 14px;
    }

}