/* ================================================
   Cedar Activation Page
   Aesthetic: Grounded warmth — editorial, organic
   ================================================ */

/* -- Page-level typography override -- */
#activate-hero,
#activate-hero *,
.activate-section,
.activate-section * {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

/* -- Color tokens (aligned with main site: light on dark) -- */
:root {
    --cedar-teal: #21b2a6;
    --cedar-dark: #2e3842;
    --cedar-darker: #252f38;
    --cedar-darkest: #1c242c;
    --cedar-text: #c8cdd3;
    --cedar-heading: #ffffff;
    --cedar-muted: rgba(255, 255, 255, 0.5);
    --cedar-rule: rgba(255, 255, 255, 0.125);
    --cedar-orange: #FEAB0C;
    --cedar-blue: #8bccf5;
}

/* ================================================
   HERO
   ================================================ */
#activate-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(175deg, var(--cedar-darkest) 0%, #253a45 40%, var(--cedar-dark) 100%);
    position: relative;
    overflow: hidden;
}

#activate-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

#activate-hero .inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#activate-hero h1 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

#activate-hero .intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
}

.hero-arrow {
    display: inline-block;
    margin-top: 2.5rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
}

.hero-arrow:hover {
    color: rgba(255,255,255,0.7);
    transform: translateY(3px);
}

/* ================================================
   SECTIONS — base
   ================================================ */
.activate-section {
    padding: 3.5rem 2rem;
    background: var(--cedar-dark);
}

.activate-section.alt {
    background: var(--cedar-darker);
}

.activate-section .inner {
    max-width: 640px;
    margin: 0 auto;
}

.activate-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cedar-heading);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.activate-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cedar-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.activate-section p {
    color: var(--cedar-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ================================================
   ABOUT — icon card grid
   ================================================ */
#activate-about .inner {
    max-width: 700px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--cedar-rule);
    border-radius: 10px;
    padding: 1.5rem;
}

.about-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(33, 178, 166, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--cedar-teal);
}

.about-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cedar-heading);
    margin: 0 0 0.5rem 0;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cedar-text);
    margin: 0;
}

.about-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

/* ================================================
   REFERRAL
   ================================================ */
.referral-text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--cedar-text);
}

/* ================================================
   FOOTER NOTE
   ================================================ */
.footer-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--cedar-muted);
}

.footer-note a {
    color: var(--cedar-teal);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.footer-note a:hover {
    border-bottom-color: var(--cedar-teal);
}

/* ================================================
   EXPECT
   ================================================ */
.expect-list {
    list-style: none;
    padding: 0;
}

.expect-list li {
    color: var(--cedar-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.expect-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cedar-teal);
}

/* ================================================
   FEEDBACK — two blocks
   ================================================ */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.feedback-block h2 {
    font-size: 1.2rem;
}

.feedback-examples {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.feedback-examples code {
    background: rgba(33, 178, 166, 0.1);
    border: 1px solid rgba(33, 178, 166, 0.2);
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #5dd4ca;
    display: inline-block;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.feedback-note {
    font-style: italic;
    color: var(--cedar-muted);
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ================================================
   CTA — the money section
   ================================================ */
#activate-cta {
    text-align: center;
    padding: 4rem 2rem;
}

#activate-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cedar-rule);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    margin: 0 auto 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cedar-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step p {
    text-align: center;
    margin: 0;
    font-size: 1.05rem;
    color: var(--cedar-text);
    line-height: 1.6;
}

.step p .highlight {
    color: #ffffff;
    font-weight: 600;
}

.step-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    margin: 0.25rem auto;
}

.root-code {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cedar-teal);
    background: rgba(33, 178, 166, 0.06);
    border: 2px solid rgba(33, 178, 166, 0.15);
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    letter-spacing: 0.08em;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    display: inline-block;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

.cta-note a {
    color: var(--cedar-teal);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cta-note a:hover {
    border-bottom-color: var(--cedar-teal);
}

/* ================================================
   MOBILE
   ================================================ */
@media (max-width: 600px) {
    #activate-hero {
        padding: 3.5rem 1.5rem 2.5rem;
    }

    #activate-hero h1 {
        font-size: 1.7rem;
    }

    .hero-image-wrap {
        width: 120px;
        height: 120px;
    }

    .activate-section {
        padding: 2.5rem 1.5rem;
    }

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

    .about-card:last-child:nth-child(odd) {
        max-width: 100%;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .root-code {
        font-size: 1.4rem;
        padding: 0.5rem 1.2rem;
    }
}
