/* ============================================
   CAPITAL CIRCLE — Apple-Inspired Design v4
   ============================================ */

:root {
    --text:        #1d1d1f;
    --secondary:   #6e6e73;
    --light:       #f5f5f7;
    --mid:         #e8e8ed;
    --border:      #d2d2d7;
    --white:       #ffffff;
    --blue:        #0071e3;
    --blue-hover:  #0077ed;
    --blue-tint:   rgba(0,113,227,0.08);
    --dark:        #0a0a0a;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;

    --max: 1120px;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-md:  0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lift: 0 20px 60px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.06);

    --sp-section: 6rem 0;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 17px;
    overflow-x: hidden;
    animation: pageFadeIn 0.5s ease-out both;
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
                transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.20s; }
[data-reveal][data-delay="3"] { transition-delay: 0.30s; }
[data-reveal][data-delay="4"] { transition-delay: 0.40s; }

/* ============================================
   GRADIENT TEXT
   ============================================ */

.title-accent {
    background: linear-gradient(135deg, #0071e3 0%, #34aadc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 52px;
}

.logo a { text-decoration: none; display: flex; align-items: center; }

.logo-clip {
    width: 112px; height: 40px;
    overflow: hidden; position: relative; flex-shrink: 0;
}
.footer-logo-clip { width: 84px; height: 30px; opacity: 0.7; }

.logo-img {
    position: absolute;
    width: 133px; height: 133px;
    top: -46px; left: -10px;
    mix-blend-mode: multiply;
}
.footer-logo-img { width: 100px; height: 100px; top: -35px; left: -8px; }

.nav { display: flex; gap: 2.5rem; align-items: center; }

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.nav-link:hover { color: var(--text); }

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 980px;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--blue-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none; border: none; cursor: pointer;
    gap: 5px; padding: 4px;
}
.menu-toggle span {
    width: 22px; height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   URGENCY BAR
   ============================================ */

.urgency-bar {
    background: var(--text);
    padding: 0.5rem 0;
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}

.urgency-inner strong { color: #fff; }

.urg-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34c759;
    flex-shrink: 0;
    animation: urgPulse 2s infinite;
}

@keyframes urgPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,199,89,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(52,199,89,0); }
}

.urg-sep { color: rgba(255,255,255,0.25); }

.urg-cta {
    background: var(--blue);
    color: #fff;
    padding: 0.2rem 0.875rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 0.25rem;
    transition: background 0.2s;
}
.urg-cta:hover { background: var(--blue-hover); }

/* ============================================
   HERO — SPLIT LAYOUT
   ============================================ */

.hero {
    padding: 8rem 2rem 7rem;
    position: relative;
    overflow: hidden;
    background-image: url('../images/dlf-cybercity.webp');
    background-size: cover;
    background-position: center 60%;
}

.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-split {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both; }

.hero-location-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.35em 0.9em;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-title-pre {
    display: block;
    font-size: 0.38em;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.01em;
    margin-bottom: 0.15em;
    line-height: 1;
}

.hero-title-base {
    font-weight: 800;
}

.hero-accent {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-cta-note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 0.9s 0.12s cubic-bezier(0.16,1,0.3,1) both;
    position: relative;
}

.hero-visual-deco {
    position: absolute;
    inset: -60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}
.hero-visual-deco svg { width: 100%; height: 100%; }

/* Hero Feed */
.hero-feed {
    background: rgba(8, 12, 20, 0.82);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    position: relative;
    z-index: 1;
}

.hero-feed-hd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-feed-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4cd964;
    flex-shrink: 0;
    animation: hfPulse 2s ease-in-out infinite;
}

@keyframes hfPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,217,100,0.5); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(76,217,100,0); }
}

.hero-feed-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    flex: 1;
}

.hero-feed-time {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.2);
    font-variant-numeric: tabular-nums;
}

.hero-feed-body {
    overflow: hidden;
    min-height: 236px;
}

.hf-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.8rem 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hf-item.hf-entering {
    opacity: 0;
    transform: translateY(-10px);
}

.hf-item.hf-leaving {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.hf-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.hf-dot--blue  { background: var(--blue); box-shadow: 0 0 0 3px rgba(0,113,227,0.22); }
.hf-dot--green { background: #4cd964;     box-shadow: 0 0 0 3px rgba(76,217,100,0.22); }
.hf-dot--gold  { background: #f5a623;     box-shadow: 0 0 0 3px rgba(245,166,35,0.22); }

.hf-body { flex: 1; min-width: 0; }

.hf-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0.18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hf-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hf-badge {
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.2em 0.6em;
    border-radius: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.hf-badge--blue  { background: rgba(0,113,227,0.2);   color: #5ba8ff; }
.hf-badge--green { background: rgba(76,217,100,0.15);  color: #4cd964; }
.hf-badge--gold  { background: rgba(245,166,35,0.15);  color: #f5a623; }

.hero-feed-ft {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.125rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-feed-ft-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ── Hero Event Card ── */
.hero-event-card {
    display: block;
    text-decoration: none;
    background: rgba(8, 12, 20, 0.82);
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    position: relative;
    z-index: 1;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.hero-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
    border-color: rgba(0,113,227,0.35);
}

.hero-event-img {
    width: 100%; height: 150px;
    overflow: hidden; position: relative;
}

.hero-event-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}

.hero-event-card:hover .hero-event-img img {
    transform: scale(1.04);
}

.hero-event-badge {
    position: absolute; top: 10px; left: 12px;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(0,113,227,0.85);
    color: #fff;
    padding: 4px 10px; border-radius: 980px;
    backdrop-filter: blur(8px);
}

.hero-event-body {
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-event-label {
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(0,113,227,0.8);
    margin-bottom: 6px;
}

.hero-event-title {
    font-size: 17px; font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff; line-height: 1.2;
    margin-bottom: 4px;
}

.hero-event-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-event-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
}

.hero-event-meta span {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 500;
    color: rgba(255,255,255,0.45);
}

.hero-event-meta svg { opacity: 0.5; flex-shrink: 0; }

.hero-event-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px;
    font-size: 12.5px; font-weight: 700;
    color: #0071e3;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.hero-event-card:hover .hero-event-cta { color: #3395f5; }

/* ============================================
   BUTTONS
   ============================================ */

.cta-button, .cta-button-white {
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    display: inline-block;
    text-decoration: none;
}
.cta-button {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,113,227,0.25);
}
.cta-button:hover {
    background: var(--blue-hover);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0,113,227,0.35);
}
.cta-button:active { transform: scale(0.98); }

.cta-button-white {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-button-white:hover {
    background: rgba(255,255,255,0.95);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ============================================
   MARQUEE STRIP
   ============================================ */

.marquee-wrap {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.875rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--light), transparent);
}
.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--light), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mq-item {
    font-size: 0.8125rem;
    color: var(--secondary);
    padding: 0 1.25rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.mq-item strong { color: var(--text); font-weight: 600; }

.mq-sep {
    color: var(--blue);
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   TENSION STRIP
   ============================================ */

/* ============================================
   CONTRAST SECTION
   ============================================ */

.contrast-section {
    background: #f5f5f7;
    padding: 7rem 2rem;
}

.contrast-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contrast-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contrast-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.contrast-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.contrast-sub {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
}

/* Tabs */
.ctabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    background: #e8e8ed;
    border-radius: 14px;
    padding: 0.3rem;
    width: fit-content;
    margin: 0 auto 2.5rem;
}

.ctab {
    padding: 0.5em 1.4em;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.ctab.active {
    background: #fff;
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Tab content */
.ctab-content { display: none; }
.ctab-content.active { display: block; }

/* Two-Panel Layout */
.cpanels-wrap {
    width: 100%;
}

.cpanels {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 320px;
}

/* VS divider */
.cpanel-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.cpanel-vs::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
    z-index: -1;
}

/* Panel image */
.cpanel-img {
    margin: -2.5rem -2rem 1.5rem;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

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

.cpanel-cc .cpanel-img img {
    filter: brightness(0.85);
}

.cpanel-other .cpanel-img img {
    filter: brightness(0.9) saturate(0.8);
}

/* Panel base */
.cpanel {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Left panel — muted */
.cpanel-other {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

/* Right panel — dark navy */
.cpanel-cc {
    background: #0e1a2b;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
}

.cpanel-cc::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    padding-bottom: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,113,227,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Panel header */
.cpanel-hd {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cpanel-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cpanel-other .cpanel-title {
    color: var(--secondary);
}

.cpanel-cc .cpanel-title {
    color: rgba(255,255,255,0.9);
}

.cpanel-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25em 0.75em;
    border-radius: 6px;
    background: rgba(0,113,227,0.15);
    color: #5ba8ff;
    border: 1px solid rgba(0,113,227,0.3);
}

/* Panel list */
.cpanel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 0;
}

.cpanel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.93rem;
    line-height: 1.5;
}

.cpanel-other .cpanel-list li {
    color: var(--secondary);
}

.cpanel-cc .cpanel-list li {
    color: rgba(255,255,255,0.75);
}

.cpanel-cc .cpanel-list li strong {
    color: #fff;
    font-weight: 600;
}

/* Check/cross markers */
.ci {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.ci-yes {
    background: rgba(0,113,227,0.15);
    color: #5ba8ff;
}

.ci-yes::before { content: '✓'; font-weight: 700; }

.ci-no {
    background: rgba(0,0,0,0.05);
    color: #aaa;
}

.ci-no::before { content: '✕'; font-weight: 600; }

/* Badges inside list items */
.cbadge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.2em 0.65em;
    border-radius: 5px;
    white-space: nowrap;
    vertical-align: middle;
    margin-left: 0.4em;
}

.cbadge-blue {
    background: rgba(0,113,227,0.18);
    color: #5ba8ff;
}

.cbadge-gold {
    background: rgba(200,150,0,0.18);
    color: #d4a017;
}

/* Footer */
.contrast-footer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.contrast-footer-text {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .cpanels {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .cpanel-vs {
        height: 36px;
        width: 100%;
        flex-direction: row;
    }
    .cpanel-vs::before {
        top: 50%; bottom: auto;
        left: 0; right: 0;
        width: 100%; height: 1px;
        transform: none;
    }
    .cpanel-other { border-radius: 20px 20px 0 0; }
    .cpanel-cc { border-radius: 0 0 20px 20px; }
    .ctabs { width: 100%; }
    .ctab { font-size: 0.8rem; padding: 0.5em 0.9em; }
}

/* ============================================
   LEARNING MODEL — Interactive Stepper
   ============================================ */

.learn-model {
    background: var(--light);
    padding: 7rem 2rem;
}

.lm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lm-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--text);
    margin: 0.6rem 0 0.75rem;
    line-height: 1.1;
}

.lm-sub {
    font-size: 1.05rem;
    color: var(--secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* Interactive layout */
.lm-interactive {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ── Steps (left) ── */
.lm-steps {
    display: flex;
    flex-direction: column;
}

.lm-step {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.lm-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
}

.lm-step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    margin-top: 2px;
}

.lm-step-line-seg {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: var(--border);
    margin: 4px 0;
    transition: background 0.4s;
}

.lm-step:last-child .lm-step-line-seg {
    display: none;
}

.lm-step-body {
    padding: 0.15rem 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    position: relative;
}

.lm-step-num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #bbb;
    transition: color 0.2s;
}

.lm-step-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: color 0.2s;
    line-height: 1.3;
}

.lm-step-when {
    font-size: 0.78rem;
    color: #bbb;
    transition: color 0.2s;
}

/* Progress bar inside step */
.lm-step-bar {
    position: absolute;
    bottom: 12px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--blue);
    border-radius: 2px;
}

/* Active step */
.lm-step.active .lm-step-dot {
    border-color: var(--blue);
    background: var(--blue);
    transform: scale(1.15);
}

.lm-step.active + .lm-step .lm-step-line-seg,
.lm-step.active .lm-step-line-seg {
    background: var(--blue);
}

.lm-step.active .lm-step-num { color: var(--blue); }
.lm-step.active .lm-step-name { color: var(--text); font-weight: 700; }
.lm-step.active .lm-step-when { color: var(--secondary); }

.lm-step.active .lm-step-bar {
    animation: lmBarFill 4s linear forwards;
}

@keyframes lmBarFill {
    from { width: 0; }
    to   { width: 100%; }
}

/* ── Panels (right) ── */
.lm-panels {
    display: grid;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 380px;
}

.lm-panel {
    grid-area: 1 / 1;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lm-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.lm-panel-text {
    flex: 1;
}

.lm-panel-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lm-panel-body {
    font-size: 0.97rem;
    color: var(--secondary);
    line-height: 1.7;
}

/* ── Mock UI cards ── */
.lm-mock {
    flex-shrink: 0;
    width: 220px;
    background: #0e1a2b;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lm-mock::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 80%; padding-bottom: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,113,227,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.lm-mock-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* Brief mock */
.lm-mock-company {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.lm-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lm-mock-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.lm-mk {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.lm-mv {
    color: rgba(255,255,255,0.85);
    text-align: right;
}

.lm-mock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
}

.lm-mock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4cd964;
    animation: lmPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.lm-mock-dot--green { background: #4cd964; }

@keyframes lmPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.lm-mock-status--green { color: #4cd964; }

/* Call mock */
.lm-mock-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 36px;
}

.lm-mock-wave span {
    flex: 1;
    border-radius: 2px;
    background: rgba(0,113,227,0.6);
    animation: lmWaveBar 0.8s ease-in-out infinite alternate;
}

.lm-mock-wave span:nth-child(1)  { height: 14px; animation-delay: 0.0s; }
.lm-mock-wave span:nth-child(2)  { height: 24px; animation-delay: 0.07s; }
.lm-mock-wave span:nth-child(3)  { height: 18px; animation-delay: 0.14s; }
.lm-mock-wave span:nth-child(4)  { height: 30px; animation-delay: 0.21s; }
.lm-mock-wave span:nth-child(5)  { height: 20px; animation-delay: 0.28s; }
.lm-mock-wave span:nth-child(6)  { height: 32px; animation-delay: 0.35s; }
.lm-mock-wave span:nth-child(7)  { height: 16px; animation-delay: 0.42s; }
.lm-mock-wave span:nth-child(8)  { height: 28px; animation-delay: 0.49s; }
.lm-mock-wave span:nth-child(9)  { height: 22px; animation-delay: 0.56s; }
.lm-mock-wave span:nth-child(10) { height: 12px; animation-delay: 0.63s; }
.lm-mock-wave span:nth-child(11) { height: 26px; animation-delay: 0.56s; }
.lm-mock-wave span:nth-child(12) { height: 18px; animation-delay: 0.49s; }
.lm-mock-wave span:nth-child(13) { height: 32px; animation-delay: 0.42s; }
.lm-mock-wave span:nth-child(14) { height: 20px; animation-delay: 0.35s; }
.lm-mock-wave span:nth-child(15) { height: 14px; animation-delay: 0.28s; }

@keyframes lmWaveBar {
    from { transform: scaleY(0.4); opacity: 0.5; }
    to   { transform: scaleY(1);   opacity: 1; }
}

.lm-mock-timestamp {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

.lm-mock-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    line-height: 1.45;
    padding: 0.75rem;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    border-left: 2px solid var(--blue);
}

/* Commission mock */
.lm-mock-amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #4cd964;
}

/* Exit mock */
.lm-mock-big {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
}

.lm-mock-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: -0.5rem;
}

.lm-mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.lm-mock-tags span {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25em 0.65em;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .lm-interactive { grid-template-columns: 1fr; gap: 2rem; }
    .lm-steps { flex-direction: row; gap: 0; overflow-x: auto; padding-bottom: 0.5rem; }
    .lm-step { flex-direction: column; align-items: center; flex: 1; min-width: 80px; }
    .lm-step-indicator { flex-direction: row; width: auto; }
    .lm-step-line-seg { width: 100%; height: 2px; min-height: unset; margin: 0 4px; }
    .lm-step-body { align-items: center; text-align: center; padding: 0.5rem 0 0; }
    .lm-step-bar { display: none; }
    .lm-panel { flex-direction: column; padding: 2rem; }
    .lm-mock { width: 100%; }
}

/* ============================================
   EDITORIAL SNAPS
   ============================================ */

.editorial-snap {
    position: relative;
    overflow: hidden;
    height: 62vh;
    min-height: 400px;
    max-height: 640px;
}

.editorial-snap-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-snap:hover .editorial-snap-img {
    transform: scale(1.03);
}

.editorial-snap-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    right: 45%;
    color: #fff;
    font-size: clamp(1rem, 1.8vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.editorial-snap-caption--right {
    left: auto;
    right: 3rem;
    text-align: right;
}

.editorial-snap--right .editorial-snap-img {
    object-position: center center;
}

/* ============================================
   SHARED SECTION PATTERNS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PROBLEM — STARK STATEMENTS
   ============================================ */

/* ============================================
   INSIGHT TABS
   ============================================ */

.insight-tabs {
    background: var(--white);
}

.it-nav-wrap {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.it-nav {
    display: flex;
    gap: 0;
}

.it-tab {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.it-tab:hover { color: var(--text); }

.it-tab--active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.it-panels { position: relative; }

.it-panel {
    padding: 5rem 2rem 6rem;
    animation: itFadeIn 0.35s ease forwards;
}

.it-panel--light { background: var(--white); }
.it-panel--dark  { background: #1d1d1f; }
.it-panel--grey  { background: var(--light); }

@keyframes itFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Light panel overrides for pipeline chart — use parent for higher specificity */
.it-lc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 4rem;
    position: relative;
}

.it-panel--light .pl-num               { color: var(--text); }
.it-panel--light .pl-num--accent       { color: var(--blue); }
.it-panel--light .pl-name              { color: var(--text); opacity: 0.75; }
.it-panel--light .pl-note              { color: var(--secondary); }
.it-panel--light .pl-bar-track         { background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.07); }
.it-panel--light .pl-axis-label        { color: var(--secondary); }
.it-panel--light .pl-conv-line         { background: rgba(0,0,0,0.1); }
.it-panel--light .pl-conv-badge        { color: var(--secondary); background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }

.it-sub {
    font-size: 0.875rem;
    color: var(--secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* ---- Volume Panel: Pipeline Chart ---- */

.it-vol-hd {
    text-align: center;
    margin-bottom: 3.5rem;
}

.it-vol-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.it-vol-sub {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
}

.it-pipe {
    display: grid;
    grid-template-columns: 1fr 72px 1fr 72px 1fr;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.it-pipe-stage {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.it-pipe-stage:hover {
    box-shadow: var(--shadow-lift);
    transform: translateY(-4px);
}

.it-pipe-stage--final {
    border-color: rgba(0,113,227,0.35);
    box-shadow: 0 0 0 1px rgba(0,113,227,0.12), var(--shadow-sm);
}

.it-pipe-stage--final:hover {
    box-shadow: 0 0 0 1px rgba(0,113,227,0.25), var(--shadow-lift);
    transform: translateY(-4px);
}

.it-pipe-tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.it-pipe-tag--blue {
    color: var(--blue);
    background: var(--blue-tint);
    border-color: rgba(0,113,227,0.2);
}

.it-pipe-num {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.it-pipe-num--blue {
    color: var(--blue);
}

.it-pipe-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.it-pipe-desc {
    font-size: 0.78rem;
    color: var(--secondary);
    line-height: 1.5;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.it-pipe-bar {
    height: 5px;
    background: var(--light);
    border-radius: 99px;
    overflow: hidden;
    margin-top: auto;
}

.it-pipe-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--border), #a1a1a6);
    border-radius: 99px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.it-pipe-fill--2 {
    background: linear-gradient(90deg, #a1a1a6, #6e6e73);
}

.it-pipe-fill--blue {
    background: linear-gradient(90deg, var(--blue), #34aadc);
    box-shadow: 0 0 8px rgba(0,113,227,0.4);
}

/* Animate bars when parent has .revealed */
#plChart.revealed .it-pipe-fill {
    width: var(--fw);
}

/* Arrow connectors */
.it-pipe-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 0.5rem;
}

.it-pipe-arrow-ln {
    flex: 1;
    width: 1px;
    background: var(--border);
    min-height: 30px;
}

.it-pipe-arrow-pct {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--secondary);
    text-align: center;
    line-height: 1.3;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
    .it-pipe {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .it-pipe-arrow {
        flex-direction: row;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .it-pipe-arrow-ln {
        flex: 1;
        width: auto;
        height: 1px;
        min-height: auto;
    }
}

/* ---- Panel 2: Conversation dot + verdict icon ---- */
.hc-tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.3rem;
    vertical-align: middle;
    background: currentColor;
    opacity: 0.7;
}

.hc-verdict-icon {
    font-style: normal;
    margin-right: 0.3rem;
}

/* Hiring Conversation Section */
.hire-convo {
    padding: 8rem 2rem;
    background: #1d1d1f;
    position: relative;
    overflow: hidden;
}

.hc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hc-eye {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.hc-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hc-stage {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 2.5rem;
    max-width: 820px;
    margin: 0 auto 4rem;
    align-items: start;
}

.hc-thread {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hc-thread-tag {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 20px;
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.hc-thread-tag--bad {
    background: rgba(255,59,48,0.1);
    color: rgba(255,100,90,0.8);
    border: 1px solid rgba(255,59,48,0.18);
}

.hc-thread-tag--good {
    background: rgba(0,113,227,0.12);
    color: rgba(91,168,255,0.9);
    border: 1px solid rgba(0,113,227,0.2);
}

.hc-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 220px;
}

.hc-bubble {
    max-width: 88%;
    padding: 0.6rem 0.95rem;
    border-radius: 16px;
    font-size: 0.8rem;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.hc-bubble--in {
    opacity: 1;
    transform: translateY(0);
}

.hc-bubble--hm {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    border-radius: 14px 14px 14px 3px;
    align-self: flex-start;
    border: 1px solid rgba(255,255,255,0.06);
}

.hc-bubble--cand {
    background: rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.8);
    border-radius: 14px 14px 3px 14px;
    align-self: flex-end;
    text-align: right;
}

.hc-bubble--highlight {
    background: var(--blue);
    color: #fff;
    border: none;
}

.hc-bubble--cold {
    background: rgba(255,59,48,0.1);
    color: rgba(255,100,90,0.85);
    border: 1px solid rgba(255,59,48,0.14);
}

.hc-bubble--warm {
    background: rgba(52,199,89,0.1);
    color: rgba(52,199,89,0.95);
    border: 1px solid rgba(52,199,89,0.18);
}

/* Typing indicator */
.hc-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.6rem 0.85rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px 14px 14px 3px;
    align-self: flex-start;
    width: fit-content;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.hc-typing--in {
    opacity: 1;
    transform: translateY(0);
}

.hc-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    animation: hcDot 1.1s ease-in-out infinite;
}

.hc-typing span:nth-child(2) { animation-delay: 0.18s; }
.hc-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes hcDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Verdict */
.hc-verdict {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    opacity: 0;
    transform: scale(0.8) translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hc-verdict--in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.hc-verdict--bad {
    background: rgba(255,59,48,0.1);
    color: rgba(255,90,80,0.9);
    border: 1px solid rgba(255,59,48,0.18);
}

.hc-verdict--good {
    background: rgba(52,199,89,0.1);
    color: rgba(52,199,89,0.95);
    border: 1px solid rgba(52,199,89,0.22);
}

/* Divider */
.hc-divider {
    background: rgba(255,255,255,0.07);
    align-self: stretch;
    margin-top: 2.5rem;
    min-height: 200px;
}

/* Close line */
.hc-close {
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    letter-spacing: -0.02em;
    max-width: 480px;
    margin: 0 auto;
}

.hc-close strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

@media (max-width: 620px) {
    .hc-stage { grid-template-columns: 1fr; gap: 2.5rem; }
    .hc-divider { display: none; }
    .hc-bubble--cand { align-self: flex-end; }
}

/* ============================================
   STORY REFRAME (Reality + Problem + Calls)
   ============================================ */

.story-reframe {
    padding: 6rem 2rem 7rem;
    background: var(--light);
}

.sr-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto 4rem;
}

.sr-fact {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: default;
}

.sr-fact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,113,227,0.2);
}

.sr-fact-num {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--secondary);
    opacity: 0.4;
    display: block;
    margin-bottom: 0.9rem;
}

.sr-fact strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.sr-fact p {
    font-size: 0.8rem;
    color: var(--secondary);
    line-height: 1.65;
}

.sr-calls-wrap {
    max-width: 860px;
    margin: 0 auto 3rem;
}

.sr-calls-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.sr-calls {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
}

.sr-call {
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}

.sr-call--before {
    background: var(--white);
}

.sr-call--before:hover {
    box-shadow: var(--shadow-sm);
}

.sr-call--after {
    background: var(--white);
    border-color: rgba(0,113,227,0.2);
    box-shadow: 0 0 0 3px rgba(0,113,227,0.06);
}

.sr-call--after:hover {
    box-shadow: 0 0 0 3px rgba(0,113,227,0.1), var(--shadow-sm);
}

.sr-call-hd {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.sr-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sr-dot--red   { background: #ff3b30; box-shadow: 0 0 6px rgba(255,59,48,0.4); }
.sr-dot--green { background: #34c759; box-shadow: 0 0 6px rgba(52,199,89,0.4); }

.sr-week {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.sr-status {
    font-size: 0.62rem;
    color: var(--secondary);
    margin-left: auto;
}

.sr-transcript {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--secondary);
    min-height: 90px;
    font-style: italic;
}

.sr-call--after .sr-transcript {
    color: var(--text);
}

.sr-cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: var(--blue);
    vertical-align: text-bottom;
    margin-left: 1px;
    animation: srBlink 0.85s steps(1) infinite;
}

@keyframes srBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.sr-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    padding-top: 3rem;
}

.sr-divider-line {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.sr-divider-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
    text-transform: uppercase;
    writing-mode: vertical-lr;
    padding: 0.4rem 0;
}

.sr-replay {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.sr-replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.sr-replay-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,113,227,0.08);
}

.sr-replay-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.sr-bridge {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    color: var(--secondary);
    letter-spacing: -0.02em;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 680px) {
    .sr-facts { grid-template-columns: 1fr; }
    .sr-calls { grid-template-columns: 1fr; gap: 1rem; }
    .sr-divider { flex-direction: row; padding-top: 0; }
    .sr-divider-line { width: 28px; height: 1px; }
    .sr-divider-badge { writing-mode: horizontal-tb; }
}

/* ============================================
   TRANSFORMATION PANEL (REBUILD)
   ============================================ */
.tfm-wrap {
    padding: 3rem 0 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.tfm-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.tfm-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 10px;
}
.tfm-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.2;
}

/* Cards row */
.tfm-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 2.5rem;
}

.tfm-card {
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tfm-card--before {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.tfm-card--after {
    background: rgba(0,113,227,0.12);
    border: 1px solid rgba(0,113,227,0.3);
}

.tfm-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
}
.tfm-card-tag--blue { color: #60aaff; }

.tfm-card-role {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}
.tfm-card-ctc {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.35);
    line-height: 1;
}
.tfm-card-ctc span { font-size: 0.7rem; font-weight: 400; opacity: 0.6; }
.tfm-card-ctc--blue { color: #fff; }

.tfm-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 4px 0;
}

/* Skills */
.tfm-skills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tfm-skill {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tfm-skill-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
}
.tfm-skill-bar {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}
.tfm-skill-fill {
    height: 100%;
    width: var(--w);
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: width 0.9s cubic-bezier(0.22,1,0.36,1);
}
.tfm-skill-fill--blue {
    background: #0071e3;
    box-shadow: 0 0 6px rgba(0,113,227,0.5);
}

/* Proof rows */
.tfm-proof {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 500;
}
.tfm-proof--none { color: rgba(255,255,255,0.3); }
.tfm-proof--yes  { color: #34c759; }

/* Arrow divider */
.tfm-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    color: rgba(255,255,255,0.2);
}
.tfm-arrow-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}
.tfm-arrow-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.tfm-arrow-chevron {
    color: #0071e3;
    transform: rotate(90deg);
    margin-top: 4px;
}

/* Timeline */
.tfm-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}
.tfm-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    max-width: 160px;
}
.tfm-ms-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.tfm-ms-dot--blue {
    background: #0071e3;
    border-color: rgba(0,113,227,0.4);
    box-shadow: 0 0 8px rgba(0,113,227,0.6);
}
.tfm-ms-track {
    height: 1px;
    flex: 1;
    background: rgba(255,255,255,0.1);
    margin-top: 5px;
    align-self: flex-start;
}
.tfm-ms-week {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.tfm-milestone--final .tfm-ms-week { color: #60aaff; }
.tfm-ms-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
}
.tfm-milestone--final .tfm-ms-text { color: rgba(255,255,255,0.6); }

@media (max-width: 640px) {
    .tfm-cards { grid-template-columns: 1fr; }
    .tfm-arrow { flex-direction: row; padding: 10px 0; writing-mode: unset; }
    .tfm-arrow-line { width: 40px; height: 1px; }
    .tfm-arrow-label { writing-mode: horizontal-tb; }
    .tfm-arrow-chevron { transform: none; }
    .tfm-timeline { flex-wrap: wrap; gap: 16px; }
    .tfm-ms-track { display: none; }
}

/* ============================================
   PROGRAM — 3 VISUAL PANELS
   ============================================ */

.program {
    padding: 8rem 2rem 6rem;
    background: var(--light);
    position: relative;
}

.program-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.panel {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
    position: relative;
}
.panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0071e3, #34aadc);
}
.panel:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.panel-mock { flex-shrink: 0; }

.panel-num {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    padding: 1.5rem 1.5rem 0.375rem;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    padding: 0 1.5rem 0.375rem;
    line-height: 1.2;
}

.panel-desc {
    font-size: 0.9375rem;
    color: var(--secondary);
    line-height: 1.6;
    padding: 0 1.5rem 1.75rem;
}

/* --- Email Mockup --- */

.mock-email {
    border-bottom: 1px solid var(--border);
}

.mock-email-head {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mock-field {
    font-size: 0.75rem;
    color: var(--text);
}
.mock-muted { color: var(--secondary); }
.mock-field-sub { color: var(--secondary); }

.mock-email-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mock-line {
    height: 7px;
    background: var(--mid);
    border-radius: 4px;
}
.mock-line-full { width: 100%; }
.mock-line-80   { width: 80%; }
.mock-line-60   { width: 60%; }
.mock-line-40   { width: 40%; }

.mock-tag {
    padding: 0.5625rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(0,113,227,0.07);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* --- Call Mockup --- */

.mock-call {
    background: #0d0d0d;
    padding: 1.375rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-call-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.mock-rec-dot {
    width: 7px; height: 7px;
    background: #ff3b30;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.mock-call-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.mock-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 48px;
    margin-bottom: 1rem;
}

.mock-waveform span {
    flex: 1;
    border-radius: 2px;
    background: rgba(255,255,255,0.15);
}
.mock-waveform span:nth-child(1)  { height: 28%; }
.mock-waveform span:nth-child(2)  { height: 65%; background: var(--blue); }
.mock-waveform span:nth-child(3)  { height: 40%; background: var(--blue); }
.mock-waveform span:nth-child(4)  { height: 88%; background: var(--blue); }
.mock-waveform span:nth-child(5)  { height: 55%; background: var(--blue); }
.mock-waveform span:nth-child(6)  { height: 32%; }
.mock-waveform span:nth-child(7)  { height: 75%; }
.mock-waveform span:nth-child(8)  { height: 22%; }
.mock-waveform span:nth-child(9)  { height: 60%; }
.mock-waveform span:nth-child(10) { height: 90%; }
.mock-waveform span:nth-child(11) { height: 38%; }
.mock-waveform span:nth-child(12) { height: 68%; }
.mock-waveform span:nth-child(13) { height: 20%; }
.mock-waveform span:nth-child(14) { height: 50%; }
.mock-waveform span:nth-child(15) { height: 80%; }

.mock-feedback {
    font-size: 0.75rem;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    padding: 0.5rem 0.875rem;
    border-radius: 9px;
    border-left: 2px solid var(--blue);
    font-style: italic;
    line-height: 1.5;
}

/* --- Offer Mockup --- */

.mock-offer {
    background: linear-gradient(150deg, #003a8c 0%, #0055cc 50%, #0071e3 100%);
    padding: 2rem 1.5rem;
    text-align: center;
}

.mock-offer-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.875rem;
    background: rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 980px;
}

.mock-offer-ctc {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.mock-offer-role {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
}

.mock-offer-note {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   TIMELINE (inside Program section)
   ============================================ */

.tl-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 580px;
    margin: 0 auto;
}

.tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.tl-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}

.tl-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.tl-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--border));
    margin-top: 24px;
}

/* ============================================
   PROOF — RESULTS STATS
   ============================================ */

.proof {
    padding: 8rem 2rem;
    background: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
}

.proof-stat {
    background: var(--light);
    padding: 2.75rem 2rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.proof-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, #34aadc 100%);
}
.proof-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.proof-stat--hero {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--text);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}
.proof-stat--hero::before {
    background: linear-gradient(90deg, var(--blue) 0%, #34aadc 100%);
}
.proof-stat--hero .proof-number {
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
}
.proof-stat--hero .proof-arrow {
    color: var(--blue);
}
.proof-stat--hero .proof-label {
    color: rgba(255,255,255,0.5);
}

.proof-number {
    display: block;
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.proof-arrow { color: var(--blue); font-style: normal; }

.proof-label {
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.5;
    display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 8rem 2rem;
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem; left: 2rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--blue);
    opacity: 0.1;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
}

.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 1.75rem;
    padding-top: 0.75rem;
    font-style: italic;
    font-weight: 400;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testimonial-card footer strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    font-style: normal;
}

.testimonial-card footer span {
    font-size: 0.8125rem;
    color: var(--blue);
    font-style: normal;
}

/* ============================================
   SELECTION — LINEAR FLOW
   ============================================ */

.selection {
    padding: 8rem 2rem;
    background: var(--light);
}

.sel-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.sel-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1.125rem 2rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-width: 160px;
}

.sel-num {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sel-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.sel-arrow {
    font-size: 1.375rem;
    color: var(--blue);
    flex-shrink: 0;
    opacity: 0.5;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.fit-box {
    background: var(--white);
    padding: 2.25rem 2.5rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.fit-yes { border-color: rgba(0,113,227,0.2); }

.fit-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}
.fit-box p {
    font-size: 0.9375rem;
    color: var(--secondary);
    line-height: 1.7;
}

/* ============================================
   PARTNERS STRIP
   ============================================ */

.partners-strip {
    background: #fff;
    padding: 2.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}

.partners-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--secondary);
    margin-bottom: 1.75rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
}

.partner-logo {
    height: 52px;
    width: auto;
    min-width: 80px;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: opacity 0.2s, filter 0.2s;
}

.partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img.logo-sm {
    height: 55%;
    max-width: 100px;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-section {
    padding: 0;
    overflow: hidden;
}

.location-inner {
    position: relative;
    height: 520px;
}

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

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7%;
    max-width: 620px;
}

.location-badge {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35em 0.9em;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    width: fit-content;
}

.location-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.location-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.location-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

@media (max-width: 768px) {
    .location-inner { height: 480px; }
    .location-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.82) 60%, rgba(0,0,0,0.2) 100%);
        justify-content: flex-end;
        padding: 0 6% 2.5rem;
        max-width: 100%;
    }
}

/* ============================================
   INVESTMENT — SINGLE CARD
   ============================================ */

/* ============================================
   PROGRAM FEE SECTION
   ============================================ */

.fee-section {
    padding: 6rem 0;
    background: #0a0a0a;
    overflow: hidden;
}

.fee-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fee-header .section-eyebrow {
    color: rgba(255,255,255,0.35);
}

.fee-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* ---- Left: Price card ---- */
.fee-price-card {
    background: #111;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.fee-price-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.fee-price-amount {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.05em;
    line-height: 1;
}

.fee-price-gst {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin-top: -1.25rem;
    letter-spacing: 0.02em;
}

/* Comparison bars */
.fee-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
}

.fee-bar-row {
    display: grid;
    grid-template-columns: 130px 1fr 70px;
    align-items: center;
    gap: 0.75rem;
}

.fee-bar-lbl {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.fee-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    overflow: hidden;
}

.fee-bar-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.fee-bar-fill--now     { background: rgba(255,255,255,0.2); }
.fee-bar-fill--after   { background: linear-gradient(90deg, var(--blue), #34aadc); }
.fee-bar-fill--recover { background: linear-gradient(90deg, #34c759, #30d158); }

.fee-section.bars-ready .fee-bar-fill--now     { width: 33%; }
.fee-section.bars-ready .fee-bar-fill--after   { width: 88%; }
.fee-section.bars-ready .fee-bar-fill--recover { width: 14%; }

.fee-bar-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-align: right;
    white-space: nowrap;
}
.fee-bar-val--blue  { color: #5bb3ff; }
.fee-bar-val--green { color: #34c759; }

/* Apply button */
.fee-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 0.9rem 1rem 0.9rem 1.5rem;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
    margin-top: auto;
}

.fee-apply-btn svg {
    width: 18px;
    height: 18px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.fee-apply-btn:hover { background: #f0f0f0; transform: translateY(-1px); }
.fee-apply-btn:hover svg { transform: translateX(3px); }

/* ---- Right: Receipt ---- */
.fee-receipt {
    background: #0f0f0f;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fee-receipt-hd {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.fee-receipt-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.fee-receipt-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    font-style: italic;
}

/* Receipt line items */
.fee-items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.fee-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.fee-item.fee-item--visible {
    opacity: 1;
    transform: translateX(0);
}

.fee-item--green { background: rgba(52,199,89,0.04); margin: 0 -3rem; padding: 0.8rem 3rem; }

.fee-item-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
}

.fee-item-icon {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fee-item-icon--green {
    color: #34c759;
    border-color: rgba(52,199,89,0.3);
    background: rgba(52,199,89,0.08);
}

.fee-item-name {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.fee-item-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.fee-item-val--green {
    color: #34c759;
    font-size: 0.85rem;
}

.fee-item-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Totals */
.fee-totals {
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fee-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fee-total-val {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.fee-total-row--cost {
    color: rgba(255,255,255,0.25);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.1);
}

.fee-total-row--net {
    border-bottom: none;
    font-size: 1rem;
    font-weight: 800;
    color: #34c759;
    letter-spacing: -0.02em;
    padding-top: 0.85rem;
}

.fee-net-val {
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

/* Guarantee line */
.fee-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    background: rgba(0,113,227,0.07);
    border: 1px solid rgba(0,113,227,0.18);
    border-radius: 10px;
}

.fee-guarantee svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}

.fee-guarantee span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

@media (max-width: 780px) {
    .fee-layout { grid-template-columns: 1fr; }
    .fee-bar-row { grid-template-columns: 100px 1fr 60px; }
    .fee-item--green { margin: 0 -1.5rem; padding: 0.8rem 1.5rem; }
    .fee-price-card, .fee-receipt { padding: 2rem 1.5rem; }
}

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

.faq {
    padding: 7rem 0;
    background: var(--light);
}

.faq-list {
    max-width: 680px;
    margin: 3rem auto 0;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.375rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }

.faq-q::after {
    content: '+';
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--secondary);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    line-height: 1;
}

.faq-item.open .faq-q { color: var(--blue); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--blue); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
    padding: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 0 1.375rem;
}

.faq-a p {
    font-size: 0.9375rem;
    color: var(--secondary);
    line-height: 1.75;
    margin: 0;
}

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

.final-cta {
    padding: 9rem 2rem;
    background: linear-gradient(-45deg, #002d6e, #004bba, #0071e3, #005cc0, #002d6e);
    background-size: 400% 400%;
    animation: gradShift 18s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

@keyframes gradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.final-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    position: relative;
}

.final-headline {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin-bottom: 1.5rem;
    position: relative;
}

.final-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.75rem;
    line-height: 1.6;
    position: relative;
}

.final-tagline {
    margin-top: 2.25rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
    letter-spacing: -0.01em;
    position: relative;
}

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

.footer {
    background: #f0f0f5;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-section h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-section ul { list-style: none; }
.footer-section a {
    color: var(--secondary);
    font-size: 0.875rem;
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
.footer-section a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { color: var(--secondary); font-size: 0.8125rem; }

/* ============================================
   STICKY SCROLL CTA
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 0.875rem 0;
    z-index: 890;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--secondary);
    flex-wrap: wrap;
}

.sticky-cta-info strong {
    color: var(--text);
    font-weight: 600;
}

.sticky-cta-sep {
    color: var(--border);
}

.sticky-cta-btn {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 980px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: -0.01em;
}
.sticky-cta-btn:hover {
    background: var(--blue-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.wa-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.375rem;
    border-radius: 980px;
    box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.1);
    z-index: 999;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 48px rgba(37,211,102,0.4);
}
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

a, button { transition: color 0.2s, background 0.2s, transform 0.25s, opacity 0.2s; }

/* ============================================
   PATTERN INTERRUPT OVERRIDES
   ============================================ */

/* Billboard "1 in 200" */
.selection-title {
    font-size: clamp(6rem, 15vw, 13rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.05em !important;
    margin-bottom: 0.25rem !important;
}

/* Investment price — left-aligned, confrontational */
.investment-header {
    text-align: left;
}
.investment-title {
    font-size: clamp(3rem, 6.5vw, 6rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
}

/* Story headlines — bigger */
.story-headline {
    font-size: clamp(2.5rem, 4.5vw, 4.25rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.05 !important;
}

/* ============================================
   VISUAL STORY STRIP
   ============================================ */

.story-strip {
    overflow: hidden;
}

.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.story-img-col {
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
}

.story-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-chapter:hover .story-img-col img {
    transform: scale(1.04);
}

.story-copy-col {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.story-chapter:nth-child(2) .story-copy-col {
    background: #f5f5f7;
}

.story-chapter--dark .story-copy-col {
    background: #1d1d1f;
}

.story-chapter--dark .story-eyebrow {
    color: rgba(0, 113, 227, 0.85);
}

.story-chapter--dark .story-headline {
    color: #f5f5f7;
}

.story-chapter--dark .story-body {
    color: rgba(255, 255, 255, 0.55);
}

.story-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0071e3;
    margin-bottom: 20px;
}

.story-headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.story-body {
    font-size: 1rem;
    line-height: 1.78;
    color: #6e6e73;
    max-width: 400px;
}

/* ============================================
   SELECTION EDITORIAL IMAGE
   ============================================ */

.sel-editorial {
    max-width: 300px;
    margin: 0 auto 60px;
    text-align: center;
}

.sel-editorial-img {
    width: 100%;
    display: block;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

.sel-editorial-caption {
    margin-top: 12px;
    font-size: 0.8125rem;
    color: var(--secondary);
    letter-spacing: 0.04em;
}

/* ============================================
   LATE NIGHT READER
   ============================================ */

.late-reader {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border);
}

.lr-text {
    font-size: clamp(1.4rem, 3vw, 2.25rem);
    font-weight: 300;
    color: var(--secondary);
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.lr-highlight {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   ADMISSIONS
   ============================================ */

.admissions {
    padding: var(--sp-section);
    background: #0a0a0a;
    color: #fff;
}

.admissions .section-eyebrow {
    color: rgba(255,255,255,0.35);
}

.admissions .section-title {
    color: #fff;
}

.admissions .section-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
}

/* Track */
.adm-track {
    max-width: 640px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
}

/* Each step row */
.adm-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 1.5rem;
    position: relative;
}

.adm-step--last .adm-step-left {
    align-items: flex-start;
}

/* Left column: node + connector line */
.adm-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adm-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.adm-node svg {
    width: 16px;
    height: 16px;
}

.adm-node--done {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.adm-node--active {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.2);
}

.adm-node--final {
    background: #fff;
    border-color: #fff;
    color: #0a0a0a;
}

.adm-line {
    flex: 1;
    width: 1.5px;
    background: rgba(255,255,255,0.1);
    min-height: 2.5rem;
    margin: 4px 0;
}

/* Right column: step content */
.adm-step-body {
    padding-bottom: 2.5rem;
}

.adm-step--last .adm-step-body {
    padding-bottom: 0;
}

.adm-step-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    margin-top: 0.6rem;
}

.adm-num { display: none; }

.adm-time {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
}

.adm-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.adm-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.adm-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
}

.adm-tag--blue {
    color: var(--blue);
    background: var(--blue-tint);
    border-color: rgba(0,113,227,0.2);
}

.adm-tag--green {
    color: rgba(52,199,89,0.9);
    background: rgba(52,199,89,0.08);
    border-color: rgba(52,199,89,0.2);
}

/* CTA */
.adm-cta {
    max-width: 640px;
    margin: 3rem auto 0;
    padding-left: calc(48px + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.adm-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 1rem 1.5rem 1rem 2rem;
    border-radius: 100px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 32px rgba(0,0,0,0.4);
}

.adm-apply-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 16px 48px rgba(0,0,0,0.5);
}

.adm-apply-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #0a0a0a;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.adm-apply-btn-arrow svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.adm-apply-btn:hover .adm-apply-btn-arrow {
    transform: translateX(3px);
}

.adm-cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.adm-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
}

.adm-cta-pill--live {
    color: rgba(52,199,89,0.85);
    background: rgba(52,199,89,0.08);
    border-color: rgba(52,199,89,0.18);
}

/* ============================================
   ASPIRATIONAL PANEL
   ============================================ */

.aspire-panel {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    max-height: 600px;
    display: flex;
}

.aspire-img {
    width: 100%;
    min-height: 480px;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.58) saturate(1.1);
}

.aspire-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 88px 96px;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}

.aspire-eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.aspire-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.75rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 20px;
}

.aspire-body {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-content { text-align: center; }
    .hero-actions { justify-content: center; }

    /* Show only the offer card on tablet/mobile */
    .hero-visual {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .hero-feed {
        width: 260px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .hero-visual-deco { display: none; }

    .program-panels     { grid-template-columns: 1fr; }
    .proof-grid         { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .proof-stat--hero   { grid-column: 1 / -1; grid-row: auto; }
    .fit-grid           { grid-template-columns: 1fr; }
    .testimonial-grid   { grid-template-columns: 1fr; }
    .hero-split         { grid-template-columns: 1fr; gap: 2.5rem; }
    .selection-title    { font-size: clamp(4rem, 12vw, 8rem) !important; }
    .footer-content     { grid-template-columns: 1fr 1fr; }
    .footer-brand       { grid-column: 1 / -1; }


    /* Editorial snaps */
    .editorial-snap { height: 50vh; min-height: 280px; }
    .editorial-snap-caption { right: 2rem; font-size: 1rem; }
    .editorial-snap-caption--right { left: 2rem; right: 2rem; text-align: left; }

    /* Story strip collapse */
    .story-chapter {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .story-img-col {
        height: 320px;
    }
    .story-copy-col {
        padding: 52px 40px;
    }
    .story-chapter--flip .story-img-col {
        order: -1;
    }
    .story-chapter--dark .story-copy-col {
        padding: 52px 40px;
    }

    /* Aspire panel */
    .aspire-overlay {
        padding: 56px 48px;
    }
    .aspire-headline {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 52px; left: 0; right: 0;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
        align-items: flex-start;
    }
    .nav.active { display: flex; }
    .nav-link { font-size: 1rem; color: var(--text); padding: 0.5rem 0; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .hero { padding: 5rem 2rem 4rem; }
    .section-title { font-size: 2.375rem; }
    .sel-flow { gap: 0.75rem; }
    .sel-step { min-width: 140px; padding: 0.875rem 1.25rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 3.5rem 1.25rem; }
    .proof-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .final-headline { font-size: 2.375rem; }
    .wa-float { padding: 0.875rem; border-radius: 50%; }
    .wa-text { display: none; }
    .investment-card { padding: 2rem 1.5rem; }
    .sel-flow { flex-direction: column; gap: 0.625rem; align-items: stretch; }
    .sel-step { min-width: unset; }
    .sel-arrow { transform: rotate(90deg); padding-bottom: 0; align-self: center; }
    .hero-cta-note { display: none; }
    .sticky-cta-info { display: none; }
    .sticky-cta-inner { justify-content: center; }
    .hero-card-2 { max-width: 90%; }

    /* Story strip mobile */
    .story-img-col { height: 260px; }
    .story-copy-col { padding: 40px 24px; }
    .story-chapter--dark .story-copy-col { padding: 40px 24px; }

    /* Aspire panel mobile */
    .aspire-overlay { padding: 36px 28px; }
    .aspire-headline { font-size: 2.25rem; }
    .aspire-body { font-size: 1rem; }
    .sel-editorial { max-width: 240px; }
}

/* ============================================
   PATTERN INTERRUPTS — Phase 1
   ============================================ */

/* 1.1 Selection Color Easter Egg */
::selection {
    background: rgba(0, 113, 227, 0.2);
    color: var(--text);
}
.fit-no ::selection,
.fit-no::selection {
    background: rgba(255, 59, 48, 0.2);
    color: var(--text);
}

/* 1.2 Breathing Dot-Grid */
@keyframes breathe {
    0%, 100% { opacity: 0.03; }
    50%      { opacity: 0.08; }
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,113,227,0.5) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: breathe 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.final-cta-bg {
    animation: breathe 6s ease-in-out infinite;
}

/* 1.3 Film Grain Texture */
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(-2px, 2px); }
    50%      { transform: translate(2px, -2px); }
    75%      { transform: translate(-1px, -1px); }
}
.story-chapter--dark .story-copy-col::after,
.final-cta::after,
.live-counter::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    animation: grain 0.3s steps(4) infinite;
}
.story-chapter--dark .story-copy-col { position: relative; overflow: hidden; }

/* 1.4 Full-Viewport Single Line */
.interrupt-line {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 4rem 2rem;
}
.interrupt-line p {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--secondary);
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-align: center;
    max-width: 700px;
}

/* 1.5 Typewriter */
.typewriter-word {
    border-right: 2px solid var(--blue);
    padding-right: 2px;
    animation: cursorBlink 0.7s step-end infinite;
}
.typewriter-word.done {
    border-right-color: transparent;
    animation: none;
}
@keyframes cursorBlink {
    0%, 100% { border-right-color: var(--blue); }
    50%      { border-right-color: transparent; }
}

/* 1.6 Split-Word Typography */
.split-num {
    display: block;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    color: var(--text);
}
.split-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}
.split-rest {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-top: 0.75rem;
    color: var(--text);
}

/* 1.7 Diagonal Cut */
.story-chapter--dark {
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -3%;
    margin-bottom: -3%;
    padding-top: 3%;
    padding-bottom: 3%;
    position: relative;
    z-index: 2;
}

/* 1.8 Off-Grid Testimonial */
.testimonial-card:nth-child(2) {
    transform: rotate(-1.5deg) scale(1.05);
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0,113,227,0.12), var(--shadow-md);
    border-color: rgba(0,113,227,0.15);
}
.testimonial-card:nth-child(2):hover {
    transform: rotate(-1.5deg) scale(1.08) translateY(-5px);
}

/* 1.9 Hero Cards Overlapping Marquee */
.hero {
    padding-bottom: 9rem;
}
.hero-visual {
    margin-bottom: -60px;
    position: relative;
    z-index: 5;
}
.marquee-wrap {
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
}

/* 1.10 Sidebar Annotation */
.investment-header {
    position: relative;
}
.margin-note {
    position: absolute;
    right: calc(100% + 2rem);
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    font-family: 'Caveat', cursive;
    font-size: 1.125rem;
    color: var(--blue);
    opacity: 0.7;
    white-space: nowrap;
    pointer-events: none;
}
@media (max-width: 1300px) {
    .margin-note { display: none; }
}

/* 1.11 Golden After */
.aspire-headline {
    color: #f5a623 !important;
}
.aspire-img {
    filter: brightness(0.58) saturate(1.1) sepia(0.15) !important;
}

/* Context-Aware Copy (Phase 2.1) */
.context-line-wrap {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
}
.context-line {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    color: var(--secondary);
    letter-spacing: 0;
    opacity: 0.7;
}

/* Cursor Transformation (Phase 2.2) — crosshair on sections, pointer restored on interactive elements */
.story-chapter--dark { cursor: crosshair; }
.final-cta { cursor: crosshair; }
.live-counter { cursor: crosshair; }
.seat-section { cursor: crosshair; }
.story-chapter--dark a, .story-chapter--dark button,
.final-cta a, .final-cta button,
.live-counter a, .live-counter button,
.seat-section a, .seat-section button { cursor: pointer; }

/* Perspective Tilt (Phase 2.3) */
.tilt-card {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Scroll Progress Narrative (Phase 2.4) */
.scroll-progress {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 999;
    background: rgba(0,0,0,0.04);
    pointer-events: none;
}
.scroll-progress-fill {
    height: 100%;
    background: var(--blue);
    width: 0%;
    transition: width 0.1s linear;
}
.scroll-progress-milestones {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
}
.scroll-milestone {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.5s;
    white-space: nowrap;
}
.scroll-milestone.active {
    opacity: 0.6;
}

/* Live Counter (Phase 3.1) */
.live-counter {
    background: #080c14;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lc-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.lc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,113,227,0.07) 0%, transparent 70%);
    animation: lcGlow 6s ease-in-out infinite alternate;
}

@keyframes lcGlow {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* Eyebrow */
.lc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4rem;
    position: relative;
}

.lc-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4cd964;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.lc-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid #4cd964;
    animation: lcPulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes lcPulseRing {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Pipeline bar chart */
.pl-chart {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 820px;
    margin: 0 auto 3.5rem;
    height: 400px;
    padding: 0 1rem;
}

.pl-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pl-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

.pl-num {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.pl-num--accent {
    color: #5ba8ff;
}

.pl-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
    text-align: center;
}

.pl-note {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
    text-align: center;
    max-width: 120px;
}

.pl-bar-track {
    width: 72px;
    flex: 1;
    margin-top: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px 8px 3px 3px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    max-height: 200px;
    align-self: flex-end;
    margin-bottom: 0;
}

.pl-bar {
    width: 100%;
    height: 0;
    border-radius: 5px 5px 0 0;
    transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pl-bar--1 {
    background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
}

.pl-bar--2 {
    background: linear-gradient(180deg, rgba(0,147,255,0.65) 0%, rgba(0,113,227,0.35) 100%);
    box-shadow: 0 -4px 16px rgba(0,113,227,0.25);
}

.pl-bar--3 {
    background: linear-gradient(180deg, #74b9ff 0%, #0071e3 100%);
    box-shadow: 0 -6px 24px rgba(0,113,227,0.55), 0 -2px 8px rgba(116,185,255,0.4);
}

.pl-chart.revealed .pl-bar {
    height: var(--ph);
}

.pl-bar--1 { transition-delay: 0s; }
.pl-bar--2 { transition-delay: 0.15s; }
.pl-bar--3 { transition-delay: 0.3s; }

.pl-axis-label {
    flex-shrink: 0;
    margin-top: 0.6rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Conversion connector */
.pl-conv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    width: 64px;
    padding-bottom: calc(0.6rem + 1em); /* align with axis labels */
    gap: 0.3rem;
}

.pl-conv-line {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.08);
}

.pl-conv-badge {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.45);
    text-align: center;
    line-height: 1.45;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 0.2rem 0.45rem;
    white-space: nowrap;
}

/* Sub line */
.live-counter-sub {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

/* Responsive */
@media (max-width: 600px) {
    .pl-chart { height: auto; flex-direction: column; align-items: stretch; gap: 1.5rem; padding: 0; }
    .pl-col { flex-direction: row; align-items: center; gap: 1.25rem; height: auto; }
    .pl-num-wrap { align-items: flex-start; padding-top: 0; flex: 1; }
    .pl-bar-track { width: 100%; max-height: 10px; flex: 2; margin-top: 0; align-self: center; border-radius: 4px; }
    .pl-bar { height: 100% !important; width: 0; border-radius: 4px; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .pl-bar--1, .pl-bar--2, .pl-bar--3 { height: 100% !important; }
    .pl-chart.revealed .pl-bar { width: var(--ph); height: 100% !important; }
    .pl-axis-label { display: none; }
    .pl-conv { flex-direction: row; width: auto; padding: 0; justify-content: center; height: auto; }
    .pl-conv-line { width: 20px; height: 1px; }
}

/* ============================================
   ROI CALCULATOR
   ============================================ */

.roi-calc {
    padding: var(--sp-section);
    background: var(--light);
}

.roi-card {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    overflow: hidden;
}

.roi-divider {
    background: var(--border);
    align-self: stretch;
}

/* Inputs */
.roi-inputs {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-ctc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.roi-ctc-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.roi-ctc-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 0.2s;
    font-variant-numeric: tabular-nums;
}

/* Custom slider */
.roi-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.roi-slider-track-bg {
    position: relative;
    height: 4px;
    background: var(--mid);
    border-radius: 99px;
    margin-bottom: -4px;
    pointer-events: none;
}

.roi-slider-track-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--blue);
    border-radius: 99px;
    transition: width 0.05s;
    width: 25%;
}

.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    box-shadow: 0 2px 8px rgba(0,113,227,0.3);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: grab;
}

.roi-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(0,113,227,0.4);
    cursor: grabbing;
}

.roi-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* Experience tabs */
.roi-exp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.roi-exp-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    white-space: nowrap;
}

.roi-exp-tabs {
    display: flex;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 3px;
    gap: 2px;
}

.roi-exp-tab {
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    border: none;
    background: transparent;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font);
}

.roi-exp-tab--active {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Comparison bars */
.roi-bars {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.roi-bar-row {
    display: grid;
    grid-template-columns: 36px 1fr 52px;
    align-items: center;
    gap: 0.75rem;
}

.roi-bar-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
}

.roi-bar-track {
    height: 8px;
    background: var(--light);
    border-radius: 99px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.roi-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.roi-bar-fill--before {
    background: var(--border);
    width: 22%;
}

.roi-bar-fill--after {
    background: linear-gradient(90deg, var(--blue), #34aadc);
    width: 56%;
}

.roi-bar-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.roi-bar-val--after {
    color: var(--blue);
}

/* Outputs */
.roi-outputs {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #fafafa;
}

.roi-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.roi-hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
}

.roi-hero-num {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: color 0.2s;
}

.roi-hero-sub {
    font-size: 0.75rem;
    color: var(--secondary);
    line-height: 1.4;
}

.roi-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.roi-stat-box {
    background: var(--white);
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: background 0.2s;
}

.roi-stat-box:hover {
    background: var(--blue-tint);
}

.roi-stat-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
}

.roi-stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.roi-fee-note {
    font-size: 0.72rem;
    color: var(--secondary);
    opacity: 0.7;
    line-height: 1.5;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

@media (max-width: 860px) {
    .roi-card {
        grid-template-columns: 1fr;
    }
    .roi-divider {
        height: 1px;
        width: auto;
    }
    .roi-outputs {
        background: var(--white);
    }
}

/* Your Seat Card (Phase 3.3) */
.seat-section {
    background: #1d1d1f;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}
.seat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 3.5rem 3rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.seat-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.seat-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    right: -1px;
    width: 1px;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 6px, transparent 6px, transparent 12px);
}
.seat-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
}
.seat-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.seat-of {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2rem;
}
.seat-reserved {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}
.seat-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--blue);
    vertical-align: text-bottom;
    animation: cursorBlink 0.7s step-end infinite;
    margin-left: 2px;
}
.seat-viewers {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin-top: 2rem;
}
.seat-cta {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(0,113,227,0.35);
}
.seat-cta:hover {
    background: var(--blue-hover);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0,113,227,0.45);
}

/* Rejection Email Easter Egg (Phase 3.4) */
.fit-no {
    position: relative;
    overflow: hidden;
}
.fit-no .fit-box-content {
    transition: opacity 0.4s;
}
.rejection-mock {
    position: absolute;
    inset: 0;
    background: #0d0d0d;
    border-radius: var(--r-md);
    padding: 1.5rem 2rem;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.fit-no.rejection-active .fit-box-content {
    opacity: 0;
}
.fit-no.rejection-active .rejection-mock {
    opacity: 1;
}
.rejection-from {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.375rem;
}
.rejection-subject {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rejection-body {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    font-style: italic;
}

/* Redacted Text Reveal (Phase 4.1) */
.fit-no .redacted-text {
    position: relative;
    display: inline;
}
.fit-no .redact-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text);
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fit-no.redact-revealed .redact-bar {
    transform: scaleX(0);
    transform-origin: right;
}

/* Scroll-Through ENOUGH (Phase 4.2) */
.enough-section {
    height: 200vh;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.enough-word {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: clamp(20vw, 35vw, 40vw);
    font-weight: 900;
    color: var(--text);
    opacity: 0.04;
    letter-spacing: -0.06em;
    line-height: 0.85;
    pointer-events: none;
    padding: 2rem;
}

/* Body Inversion (Phase 4.3) */
body {
    transition: background-color 0.6s ease;
}
.body--dark {
    background-color: #1d1d1f;
}
.body--dark .header {
    background: rgba(29,29,31,0.85) !important;
    border-bottom-color: rgba(255,255,255,0.06) !important;
}
.body--dark .header .nav-link {
    color: rgba(255,255,255,0.5);
}
.body--dark .header .nav-link:hover {
    color: rgba(255,255,255,0.9);
}
.body--dark .header .logo-img {
    filter: invert(1);
}
.body--dark .menu-toggle span {
    background: rgba(255,255,255,0.8);
}

/* Story Parallax (Phase 4.4) */
.story-img-col img {
    will-change: transform;
}
/* Headlines are visible by default; JS adds text-revealed for the slide-in animation */
.story-headline {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.story-chapter--dark .story-headline {
    color: #f5f5f7;
}
/* text-revealed is a progressive enhancement — no-op since headlines are already visible */
.story-headline.text-revealed {
    opacity: 1;
}

/* Animated Waveform (Phase 5.1) */
@keyframes waveBar {
    0%, 100% { height: var(--h-start); }
    50%      { height: var(--h-end); }
}
.mock-waveform.animated span {
    animation: waveBar var(--wave-dur) ease-in-out infinite;
    animation-delay: var(--wave-delay);
}
.mock-play-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.625rem;
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 0;
}
.mock-play-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Before/After Call Comparison (Phase 5.2) */
.call-compare {
    padding: 6rem 2rem;
    background: var(--light);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.compare-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.compare-card--before {
    background: #f0f0f0;
    filter: saturate(0.3);
    opacity: 0.85;
}
.compare-card--after {
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,113,227,0.1);
    border-color: rgba(0,113,227,0.2);
}
.compare-label {
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.compare-card--before .compare-label {
    color: var(--secondary);
}
.compare-card--after .compare-label {
    color: var(--blue);
}
.compare-player {
    padding: 1.5rem;
}
.compare-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 40px;
    margin-bottom: 0.75rem;
}
.compare-wave span {
    flex: 1;
    border-radius: 2px;
    animation: waveBar var(--wave-dur) ease-in-out infinite;
    animation-delay: var(--wave-delay);
}
.compare-card--before .compare-wave span {
    background: rgba(0,0,0,0.12);
}
.compare-card--after .compare-wave span {
    background: rgba(0,113,227,0.3);
}
.compare-quote {
    font-size: 0.8125rem;
    color: var(--secondary);
    font-style: italic;
    line-height: 1.5;
}
@media (max-width: 600px) {
    .compare-grid { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero::after,
    .final-cta-bg,
    .story-chapter--dark .story-copy-col::after,
    .final-cta::after,
    .live-counter::after { animation: none; }
    .typewriter-word { animation: none; border-right-color: transparent; }
    .mock-waveform.animated span { animation: none; }
    .compare-wave span { animation: none; }
    .seat-cursor { animation: none; }
    .enough-word { position: relative; }
}

/* ===== Comparison Table ===== */
.compare-table { padding: var(--sp-section) 0; background: var(--light); }
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--white);
}
.compare-tbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    font-size: 0.95rem;
}
.compare-tbl thead { border-bottom: 2px solid var(--border); }
.compare-tbl th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--secondary);
    white-space: nowrap;
}
.compare-tbl th.compare-highlight {
    color: var(--blue);
    background: var(--blue-tint);
    font-weight: 700;
    position: relative;
}
.compare-tbl th.compare-highlight::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 3px 3px 0 0;
}
.compare-tbl td {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--mid);
    color: var(--text);
    vertical-align: middle;
}
.compare-tbl tbody tr:hover { background: rgba(0,0,0,0.015); }
.compare-metric {
    font-weight: 600;
    color: var(--secondary);
    white-space: nowrap;
    font-size: 0.9rem;
}
.compare-highlight-cell {
    background: var(--blue-tint);
    color: var(--text);
}
.compare-yes {
    color: #1a8d1a;
    font-weight: 600;
}
.compare-no {
    color: #b0b0b5;
}
.compare-muted {
    color: #b0b0b5;
    font-style: italic;
}
@media (max-width: 900px) {
    .compare-tbl { font-size: 0.85rem; }
    .compare-tbl th, .compare-tbl td { padding: 0.85rem 1rem; }
    .compare-metric-head { position: sticky; left: 0; background: var(--white); z-index: 2; }
    .compare-metric { position: sticky; left: 0; background: var(--white); z-index: 2; }
}

/* ===== Curriculum ===== */
.curriculum {
    background: #f5f5f7;
    padding: 6rem 0 5rem;
}

.curr-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.curr-intro {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0.75rem auto 0;
}

/* ── Explorer shell ── */
.curr-explorer {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 24px;
    overflow: hidden;
    min-height: 540px;
}

/* ── Sidebar ── */
.curr-sidebar {
    border-right: 1px solid #e5e5ea;
    padding: 1.5rem 0;
    overflow-y: auto;
}

.curr-ph-group { padding: 0; }

.curr-ph-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aeaeb2;
    padding: 1.25rem 1.5rem 0.5rem;
}

.curr-ph-label--live { color: #0071e3; }
.curr-ph-label--exit { color: #1d1d1f; }

.curr-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0071e3;
    display: inline-block;
    animation: pulseLive 2s ease-in-out infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.75); }
}

.curr-ph-divider {
    height: 1px;
    background: #f0f0f2;
    margin: 0.5rem 1.5rem;
}

.curr-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0.55rem 1.5rem 0.55rem 1.25rem;
    background: none;
    border: none;
    border-left: 2.5px solid transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.14s, border-color 0.14s;
}

.curr-row:hover { background: #f5f5f7; }

.curr-row-num {
    font-size: 0.68rem;
    font-weight: 700;
    color: #d2d2d7;
    letter-spacing: 0.04em;
    min-width: 18px;
    flex-shrink: 0;
    transition: color 0.14s;
}

.curr-row-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6e6e73;
    line-height: 1.3;
    transition: color 0.14s;
}

.curr-row--live .curr-row-num { color: rgba(0,113,227,0.4); }

/* Active states */
.curr-row.active {
    background: rgba(0,113,227,0.05);
    border-left-color: #0071e3;
}
.curr-row.active .curr-row-num { color: #0071e3; }
.curr-row.active .curr-row-title { color: #1d1d1f; font-weight: 600; }

.curr-row--exit.active {
    background: rgba(29,29,31,0.05);
    border-left-color: #1d1d1f;
}
.curr-row--exit.active .curr-row-num { color: #1d1d1f; }

/* ── Content pane ── */
.curr-pane {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Giant watermark number */
.curr-pane-bg {
    position: absolute;
    bottom: -0.1em;
    right: -0.04em;
    font-size: clamp(140px, 20vw, 220px);
    font-weight: 900;
    line-height: 1;
    color: #f0f0f2;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.06em;
    font-variant-numeric: tabular-nums;
    transition: opacity 0.15s;
}

.curr-pane-inner {
    flex: 1;
    padding: 2.5rem 3rem 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.curr-pane-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.curr-pane-wk {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0071e3;
    transition: opacity 0.15s;
}

.curr-pane-sep {
    color: #d2d2d7;
    font-size: 0.7rem;
}

.curr-pane-phase {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #aeaeb2;
    transition: opacity 0.15s;
}

.curr-pane-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #1d1d1f;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    max-width: 480px;
    transition: opacity 0.15s;
}

.curr-pane-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.curr-desc-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #6e6e73;
    animation: descLineIn 0.4s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.curr-desc-line::before {
    content: '';
    width: 5px;
    height: 5px;
    min-width: 5px;
    border-radius: 50%;
    background: #0071e3;
    opacity: 0.45;
    margin-top: 0.55em;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.curr-desc-line:hover::before {
    opacity: 1;
}

.curr-desc-line--lead {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.curr-desc-line--lead::before {
    width: 6px;
    height: 6px;
    min-width: 6px;
    opacity: 1;
    margin-top: 0.5em;
}

@keyframes descLineIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tool strip */
.curr-tool-strip {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.25rem;
    transition: opacity 0.15s;
}

.curr-tool-strip.has-tools {
    display: flex;
}

.curr-tool-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aeaeb2;
}

.curr-tool-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.curr-tool-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 60px;
    padding: 0;
    border: 1px solid #e5e5ea;
    border-radius: 12px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.18s, transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s;
}

.curr-tool-chip:hover {
    border-color: #c7c7cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
}

.curr-tool-chip img {
    width: 80px;
    height: 36px;
    object-fit: contain;
    display: block;
    background: #fff;
}

.curr-tool-chip[data-tool="zoom"] img,
.curr-tool-chip[data-tool="google meet"] img,
.curr-tool-chip[data-tool="microsoft teams"] img {
    width: 100px;
    height: 52px;
}

.curr-tool-chip[data-tool="whatsapp"] img {
    width: 96px;
    height: 48px;
}

.curr-tool-chip[data-tool="zapier"] img {
    width: 64px;
    height: 28px;
}

.curr-tool-chip[data-tool="clay"] img {
    width: 60px;
    height: 26px;
}

.curr-tool-chip[data-tool="aisensy"] img {
    width: 100px;
    height: 56px;
}

.curr-pane-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    transition: opacity 0.15s;
}

.curr-ptag {
    font-size: 0.68rem;
    font-weight: 600;
    color: #1d1d1f;
    background: #f5f5f7;
    border: 1px solid #d2d2d7;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── Footer progress ── */
.curr-pane-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.5rem 3rem 2rem;
    position: relative;
    z-index: 1;
}

.curr-pane-prog {
    flex: 1;
    height: 2px;
    background: #f0f0f2;
    border-radius: 99px;
    overflow: hidden;
}

.curr-pane-prog-fill {
    height: 100%;
    background: #0071e3;
    border-radius: 99px;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.curr-pane-prog-label {
    font-size: 0.63rem;
    font-weight: 600;
    color: #aeaeb2;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Switching fade */
.curr-pane.switching .curr-pane-bg,
.curr-pane.switching .curr-pane-wk,
.curr-pane.switching .curr-pane-title,
.curr-pane.switching .curr-pane-desc,
.curr-pane.switching .curr-tool-strip,
.curr-pane.switching .curr-pane-tags { opacity: 0; }

/* Responsive */
@media (max-width: 960px) {
    .curr-explorer {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 760px) {
    .curr-explorer {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .curr-sidebar {
        border-right: none;
        border-bottom: 1px solid #e5e5ea;
        max-height: 220px;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 1rem 0;
    }
    .curr-ph-divider { display: none; }
    .curr-pane-inner { padding: 1.75rem 1.5rem 1rem; }
    .curr-pane-foot { padding: 1rem 1.5rem 1.5rem; }
    .curr-pane-bg { font-size: 100px; }
}

@media (max-width: 480px) {
    .curr-sidebar { grid-template-columns: 1fr; }
    .curr-pane-inner { padding: 1.5rem 1.25rem 0.75rem; }
    .curr-pane-foot { padding: 0.75rem 1.25rem 1.25rem; }
}

/* ===== Founder Strip ===== */
.founder-strip {
    padding: 6rem 0;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left column */
.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.founder-img-wrap {
    position: relative;
    width: 200px;
    height: 200px;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 48px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-img-wrap:hover .founder-photo {
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 24px 64px rgba(0,0,0,0.7);
}

.founder-badge {
    position: absolute;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.11);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 0.28rem 0.65rem;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

.founder-badge:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-2px);
}

.founder-badge--1 { top: 8px;   right: -48px; }
.founder-badge--2 { bottom: 44px; right: -56px; }
.founder-badge--3 { bottom: 4px;  left: -24px;  }

.founder-id {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
}

.founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.founder-role {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
}

/* Right column */
.founder-right {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.founder-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

.founder-quote-wrap {
    position: relative;
    padding-top: 1rem;
}

.founder-quotemark {
    position: absolute;
    top: -2.5rem;
    left: -0.75rem;
    font-size: 10rem;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.founder-quote {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.55;
    letter-spacing: -0.02em;
    padding: 0;
    margin: 0;
    border: none;
}

.founder-creds {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.founder-cred {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    cursor: default;
    transition: transform 0.2s;
}

.founder-cred:hover { transform: translateY(-3px); }

.founder-cred-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.founder-cred-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.4;
    max-width: 110px;
}

@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .founder-left { width: 100%; }
    .founder-img-wrap { margin: 0 auto; }
    .founder-badge--1 { right: -8px; }
    .founder-badge--2 { right: -16px; }
    .founder-badge--3 { left: -8px; }
    .founder-creds { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
    .founder-cred { align-items: center; }
    .founder-cred-label { text-align: center; }
}

/* ===== Hiring Partners ===== */
.partners {
    padding: var(--sp-section) 0;
    background: var(--light);
    text-align: center;
}
.partners-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin: 0.75rem 0 2rem;
}
.partners-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.partner-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, color 0.2s;
}
.partner-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.partners-note {
    font-size: 0.8rem;
    color: var(--secondary);
    font-style: italic;
}

/* ===== Video Placeholder ===== */
.video-section {
    padding: var(--sp-section) 0;
    background: #1d1d1f;
}
.video-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, #2a2a2d 0%, #1d1d1f 100%);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.video-play-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}
.video-placeholder:hover .video-play-circle {
    transform: scale(1.1);
    background: rgba(0,113,227,0.3);
    border-color: var(--blue);
}
.video-play-circle svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}
.video-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.video-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ===== CRO: Ghost CTA (secondary) ===== */
.cta-ghost {
    display: inline-block;
    background: none;
    border: 1.5px solid var(--border);
    color: var(--secondary);
    padding: 0.75rem 2rem;
    border-radius: 980px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: inherit;
    margin-top: 0.5rem;
}
.cta-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ===== CRO: Countdown Timer ===== */
.countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

/* ===== CRO: Application Modal ===== */
.apply-modal, .quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.apply-modal.open, .quiz-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.apply-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.apply-modal-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    z-index: 1;
}
.apply-modal.open .apply-modal-card,
.quiz-modal.open .apply-modal-card {
    transform: translateY(0);
}
.apply-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--secondary);
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    font-family: inherit;
}
.apply-close:hover { background: var(--light); }
.apply-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}
.apply-modal-sub {
    font-size: 0.85rem;
    color: var(--secondary);
    margin: 0 0 1.5rem;
}
.apply-row { margin-bottom: 0.75rem; }
.apply-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.apply-input, .apply-select, .apply-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}
.apply-input:focus, .apply-select:focus, .apply-textarea:focus {
    border-color: var(--blue);
}
.apply-input.error, .apply-select.error {
    border-color: #e53935;
}
.apply-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.apply-textarea { resize: vertical; min-height: 60px; }
.apply-submit {
    width: 100%;
    padding: 1rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
    margin-top: 0.5rem;
}
.apply-submit:hover { background: var(--blue-hover); transform: scale(1.01); }
.apply-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--secondary);
    margin: 0.75rem 0 0;
}
.apply-success {
    text-align: center;
    padding: 2rem 0;
}
.apply-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.apply-success-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}
.apply-success-body {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.apply-soon-wrap {
    text-align: center;
    padding: 1rem 0 0.5rem;
}
.apply-soon-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(0,113,227,0.08);
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.apply-soon-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 0.6rem;
}
.apply-soon-body {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.apply-soon-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.apply-soon-confirmed {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    padding: 0.75rem 0;
}
@media (max-width: 480px) {
    .apply-modal-card {
        width: 100%;
        max-height: 100vh;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
        align-self: flex-end;
        padding: 2rem 1.5rem;
    }
    .apply-row--half { grid-template-columns: 1fr; }
}

/* ===== CRO: Exit-Intent Popup ===== */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.exit-popup.open {
    opacity: 1;
    pointer-events: auto;
}
.exit-popup-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.exit-popup.open .exit-popup-card { transform: translateY(0); }
.exit-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}
.exit-popup-body {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}
.exit-popup-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.exit-popup-form .apply-input { flex: 1; }
.exit-popup-form .apply-submit { width: auto; padding: 0.85rem 1.5rem; margin-top: 0; white-space: nowrap; }
.exit-dismiss {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: var(--secondary);
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    opacity: 0.7;
}
.exit-dismiss:hover { opacity: 1; }
@media (max-width: 480px) {
    .exit-popup-form { flex-direction: column; }
    .exit-popup-form .apply-submit { width: 100%; }
}

/* ===== CRO: Social Proof Toast ===== */
.proof-toast {
    position: fixed;
    bottom: 5.5rem; left: 1.5rem;
    z-index: 9999;
    background: var(--white);
    border-radius: var(--r-sm);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 340px;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    border: 1px solid var(--mid);
}
.proof-toast.visible {
    transform: translateX(0);
}
.proof-toast-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #2e7d32;
    flex-shrink: 0;
}
.proof-toast-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.4;
}
@media (max-width: 768px) {
    .proof-toast { display: none; }
}

/* ===== CRO: Eligibility Quiz ===== */
.quiz-card { max-width: 460px; text-align: center; }
.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.quiz-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--mid);
    transition: background 0.3s;
}
.quiz-dot.active { background: var(--blue); }
.quiz-dot.done { background: #2e7d32; }
.quiz-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.quiz-option {
    padding: 0.9rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: left;
}
.quiz-option:hover {
    border-color: var(--blue);
    background: var(--blue-tint);
}
.quiz-result { padding: 1rem 0; }
.quiz-result-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}
.quiz-result-icon.fit { background: #e8f5e9; color: #2e7d32; }
.quiz-result-icon.maybe { background: #fff3e0; color: #e65100; }
.quiz-result-icon.nofit { background: #fce4ec; color: #c62828; }
.quiz-result-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}
.quiz-result-body {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

/* ===== CRO: Testimonial Enhancement ===== */
.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.testimonial-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.testimonial-meta strong {
    font-size: 0.9rem;
    color: var(--text);
}
.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--secondary);
    line-height: 1.3;
}
.testimonial-company {
    font-size: 0.75rem !important;
    color: var(--blue) !important;
    font-weight: 500;
}
.testimonial-verified {
    font-size: 0.7rem;
    color: #2e7d32;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   PROGRAM FEE SECTION — v2 Interactive
   ============================================ */

.fee-section {
    padding: 8rem 2rem 7rem;
    background: #fff;
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
}

/* Subtle radial accent — faint blue glow at top-center */
.fee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0,113,227,0.045) 0%, transparent 70%),
        radial-gradient(ellipse 50% 30% at 80% 100%, rgba(52,199,89,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.fee-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero price block */
.fee-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.fee-hero .section-eyebrow {
    display: block;
    margin-bottom: 1.5rem;
}

.fee-hero-num {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 1.25rem;
}

/* Cycling context phrases */
.fee-ctx-wrap {
    position: relative;
    height: 1.8em;
    overflow: hidden;
}

.fee-ctx {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(1.8em);
    white-space: nowrap;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: rgba(0,0,0,0.38);
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), opacity 0.55s ease;
    opacity: 0;
}

.fee-ctx--active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.fee-ctx--exit {
    transform: translateX(-50%) translateY(-1.8em);
    opacity: 0;
}

/* Connector */
.fee-connector {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fee-conn-line {
    flex: 1;
    height: 1px;
    background: #d2d2d7;
}

.fee-conn-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6e6e73;
    white-space: nowrap;
}

/* Return cards */
.fee-returns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.fee-rc {
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.32s ease;
    opacity: 0;
    transform: translateY(28px);
}

.fee-rc.fee-rc--visible {
    opacity: 1;
    transform: translateY(0);
}

.fee-rc:hover {
    transform: translateY(-5px) scale(1.02);
}

.fee-rc--green {
    background: rgba(52,199,89,0.07);
    border: 1px solid rgba(52,199,89,0.2);
}
.fee-rc--green:hover {
    box-shadow: 0 12px 40px rgba(52,199,89,0.12);
    border-color: rgba(52,199,89,0.38);
}

.fee-rc--blue {
    background: rgba(0,113,227,0.06);
    border: 1px solid rgba(0,113,227,0.16);
}
.fee-rc--blue:hover {
    box-shadow: 0 12px 40px rgba(0,113,227,0.12);
    border-color: rgba(0,113,227,0.32);
}

.fee-rc--white {
    background: #f5f5f7;
    border: 1px solid #d2d2d7;
}
.fee-rc--white:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #aeaeb2;
}

.fee-rc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.fee-rc-icon {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.fee-rc--green .fee-rc-icon { color: rgba(52,199,89,0.9); }
.fee-rc--blue  .fee-rc-icon { color: var(--blue); }
.fee-rc--white .fee-rc-icon { color: #1d1d1f; }

.fee-rc-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 20px;
}

.fee-rc--green .fee-rc-badge {
    background: rgba(52,199,89,0.12);
    color: rgba(52,199,89,0.8);
    border: 1px solid rgba(52,199,89,0.2);
}
.fee-rc--blue .fee-rc-badge {
    background: rgba(0,113,227,0.12);
    color: rgba(91,168,255,0.85);
    border: 1px solid rgba(0,113,227,0.22);
}
.fee-rc--white .fee-rc-badge {
    background: rgba(0,0,0,0.05);
    color: #6e6e73;
    border: 1px solid #d2d2d7;
}

.fee-rc-num {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    color: #1d1d1f;
}

.fee-rc-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6e6e73;
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.fee-rc-detail {
    font-size: 0.78rem;
    line-height: 1.65;
    color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, color 0.4s ease;
    opacity: 0;
}

.fee-rc:hover .fee-rc-detail {
    max-height: 6em;
    opacity: 1;
    color: #3a3a3c;
}

/* Always-visible variant */
.fee-rc-detail--visible {
    max-height: 8em;
    opacity: 1;
    color: #6e6e73;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 0.1rem;
}
.fee-rc--green .fee-rc-detail--visible { border-top-color: rgba(52,199,89,0.15); }
.fee-rc--blue  .fee-rc-detail--visible { border-top-color: rgba(0,113,227,0.12); }
.fee-rc:hover .fee-rc-detail--visible  { color: #3a3a3c; }

/* VS comparison bars */
.fee-vs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.75rem 2.5rem 1.5rem;
    background: #f5f5f7;
    border: 1px solid #e8e8ed;
    border-radius: 20px;
}

.fee-vs-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3a3a3c;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.fee-vs-footnote {
    font-size: 0.68rem;
    color: #aeaeb2;
    margin-top: 0.25rem;
}

.fee-vs-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.fee-vs-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6e6e73;
    width: 90px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fee-vs-track {
    flex: 1;
    height: 36px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fee-vs-fill {
    height: 100%;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}

.fee-vs-fill--cost {
    background: rgba(0,0,0,0.15);
}

.fee-vs-fill--gain {
    background: linear-gradient(90deg, rgba(52,199,89,0.35), rgba(52,199,89,0.55));
}

.fee-vs-fill-label {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d1d1f;
    white-space: nowrap;
}

.fee-vs-fill-label--green {
    color: rgba(52,199,89,0.95);
}

/* Net return callout */
.fee-net-callout {
    margin-bottom: 2.5rem;
    text-align: center;
}

.fee-net-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, rgba(52,199,89,0.06) 0%, rgba(52,199,89,0.03) 100%);
    border: 1px solid rgba(52,199,89,0.18);
    border-radius: 20px;
    padding: 1.5rem 2.5rem 1.4rem;
}

.fee-net-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(52,199,89,0.8);
}

.fee-net-num {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: rgba(30,160,60,0.92);
    line-height: 1;
}

.fee-net-sub {
    font-size: 0.72rem;
    color: #aeaeb2;
    line-height: 1.5;
}

/* Bottom CTA row */
.fee-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #e8e8ed;
}

/* Guarantee strip */
.fee-guarantee-strip {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 480px;
    flex: 1;
}

.fee-guarantee-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.fee-guarantee-strip span {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #6e6e73;
}

.fee-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1d1d1f;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.9rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s ease, background 0.18s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.fee-apply-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.fee-apply-btn:hover {
    background: #0071e3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,113,227,0.25);
}

.fee-apply-btn:hover svg {
    transform: translateX(3px);
}

/* VS fill widths set via JS inline style on scroll entry */

@media (max-width: 720px) {
    .fee-returns { grid-template-columns: 1fr; gap: 1rem; }
    .fee-vs { padding: 1.5rem; }
    .fee-vs-lbl { width: 70px; font-size: 0.68rem; }
    .fee-bottom { flex-direction: column; align-items: flex-start; }
    .fee-ctx { white-space: normal; text-align: center; width: 90%; }
    .fee-net-inner { padding: 1.25rem 1.5rem; }
    .fee-guarantee-strip { max-width: 100%; }
}

/* ===== Comparison Table v2 (3-col: label | else | cc) ===== */
.cmp2-table {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    border: 1px solid #e5e5ea;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

/* Header row */
.cmp2-h-label {
    background: #f5f5f7;
    border-bottom: 1px solid #e5e5ea;
    padding: 1.25rem;
}

.cmp2-h-else {
    background: #f5f5f7;
    border-bottom: 1px solid #e5e5ea;
    border-left: 1px solid #e5e5ea;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cmp2-h-else .cmp2-h-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #6e6e73;
}

.cmp2-h-else .cmp2-h-sub {
    font-size: 0.68rem;
    color: #aeaeb2;
}

.cmp2-h-cc {
    background: #0071e3;
    border-left: 1px solid rgba(0,113,227,0.2);
    border-bottom: 1px solid rgba(0,113,227,0.25);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cmp2-h-cc .cmp2-h-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.cmp2-h-cc .cmp2-h-sub {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
}

.cmp2-cc-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 6px;
}

/* Data rows */
.cmp2-row {
    display: contents;
}

.cmp2-label {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #aeaeb2;
    border-top: 1px solid #f0f0f2;
    background: #fafafa;
    transition: background 0.15s;
}

.cmp2-else {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1.1rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #8e8e93;
    border-top: 1px solid #f0f0f2;
    border-left: 1px solid #f0f0f2;
    background: #fff;
    transition: background 0.15s;
}

.cmp2-cc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1.1rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #1d1d1f;
    border-top: 1px solid rgba(0,113,227,0.1);
    border-left: 2px solid rgba(0,113,227,0.18);
    background: rgba(0,113,227,0.03);
    transition: background 0.15s;
}

/* Row hover via :has() */
.cmp2-table:has(.cmp2-else:hover) .cmp2-else:hover ~ .cmp2-cc,
.cmp2-else:hover { background: #f5f5f7; }
.cmp2-cc:hover { background: rgba(0,113,227,0.08); border-left-color: rgba(0,113,227,0.4); }

/* Icons */
.cmp2-no {
    width: 14px;
    height: 14px;
    color: #ff3b30;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 0.35em;
}

.cmp2-yes {
    width: 14px;
    height: 14px;
    color: #34c759;
    flex-shrink: 0;
    margin-top: 0.35em;
}

/* Gold badge (not in existing cbadge) */
.cbadge-gold {
    background: rgba(255,179,0,0.12);
    color: #a07000;
}

@media (max-width: 720px) {
    .cmp2-table {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .cmp2-h-label { display: none; }
    .cmp2-h-else { border-left: none; }
    .cmp2-label {
        padding: 0.5rem 1rem;
        border-top: 2px solid #e5e5ea;
        background: #f5f5f7;
    }
    .cmp2-else {
        border-left: none;
        background: #fafafa;
        color: #aeaeb2;
    }
    .cmp2-cc {
        border-left: 3px solid #0071e3;
        border-top: none;
    }
}

/* ===== Comparison Cards v3 (visual card grid) ===== */
.cmpv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #e5e5ea;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

/* Column headers */
.cmpv-else-head {
    background: #1d1d1f;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cmpv-cc-head {
    background: #0071e3;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cmpv-head-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.cmpv-else-head .cmpv-head-label {
    color: rgba(255,255,255,0.5);
}

.cmpv-head-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
}

.cmpv-cc-head .cmpv-head-sub {
    color: rgba(255,255,255,0.6);
}

.cmpv-cc-pill {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 8px;
}

/* Cards */
.cmpv-card {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.15s;
}

.cmpv-card-else {
    background: #f5f5f7;
}

.cmpv-card-cc {
    background: #fff;
}

.cmpv-card-else:hover { background: #ebebed; }
.cmpv-card-cc:hover   { background: #f0f6ff; }

/* Category label */
.cmpv-card-cat {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c7c7cc;
    margin-bottom: 2px;
}

.cmpv-card-cc .cmpv-card-cat {
    color: rgba(0,113,227,0.5);
}

/* Icon circle */
.cmpv-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.cmpv-icon-wrap svg {
    width: 14px;
    height: 14px;
}

.cmpv-icon-no {
    background: rgba(255,59,48,0.1);
    color: #ff3b30;
}

.cmpv-icon-yes {
    background: rgba(52,199,89,0.12);
    color: #34c759;
}

/* Hero stat — the big scannable value */
.cmpv-hero {
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #c7c7cc;
}

.cmpv-card-cc .cmpv-hero {
    color: #1d1d1f;
}

/* Description text */
.cmpv-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: #aeaeb2;
    margin-bottom: 2px;
}

.cmpv-card-cc .cmpv-desc {
    color: #6e6e73;
}

/* Gold badge */
.cbadge-gold {
    background: rgba(180,130,0,0.1);
    color: #a07000;
}

@media (max-width: 680px) {
    .cmpv-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .cmpv-else-head { display: none; }
    .cmpv-card-else { display: none; }
    .cmpv-card-cc { border-radius: 0; }
}

/* ===== Comparison Table (Capital Circle vs Everything Else) ===== */
.cmp-table {
    background: #fff;
    border: 1px solid #e5e5ea;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.cmp-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cmp-head-a {
    padding: 1.1rem 1.75rem;
    background: #1d1d1f;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cmp-head-b {
    padding: 1.1rem 1.75rem;
    background: #0071e3;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmp-head-pill {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #f0f0f2;
    transition: background 0.15s;
}

.cmp-a {
    padding: 1.1rem 1.75rem;
    background: #fff;
    border-right: 1px solid #f0f0f2;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background 0.15s;
}

.cmp-b {
    padding: 1.1rem 1.75rem;
    background: rgba(0,113,227,0.025);
    border-left: 2px solid rgba(0,113,227,0.1);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background 0.15s;
}

.cmp-row:hover .cmp-a {
    background: #f8f8f8;
}

.cmp-row:hover .cmp-b {
    background: rgba(0,113,227,0.07);
    border-left-color: rgba(0,113,227,0.3);
}

.cmp-a > div,
.cmp-b > div {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #6e6e73;
}

.cmp-b > div {
    color: #1d1d1f;
}

.cmp-dim {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #aeaeb2;
    margin-bottom: 3px;
}

.cmp-b .cmp-dim {
    color: rgba(0,113,227,0.5);
}

.cmp-icon-no {
    color: #ff3b30;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

.cmp-icon-yes {
    color: #34c759;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.cbadge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 4px;
}

.cbadge-blue {
    background: rgba(0,113,227,0.1);
    color: #0071e3;
}

.cbadge-green {
    background: rgba(52,199,89,0.12);
    color: #1a9e3f;
}

.cbadge-orange {
    background: rgba(255,149,0,0.12);
    color: #c07000;
}

@media (max-width: 720px) {
    .cmp-head,
    .cmp-row {
        grid-template-columns: 1fr;
    }
    .cmp-head-a {
        display: none;
    }
    .cmp-a {
        border-right: none;
        border-bottom: 1px solid #f0f0f2;
        background: #fafafa;
    }
    .cmp-b {
        border-left: none;
        border-left: 3px solid #0071e3;
    }
}

/* ===== CRO: Button resets for converted links ===== */
button.nav-cta,
button.urg-cta,
button.sticky-cta-btn,
button.seat-cta,
button.cta-button,
button.cta-button-white {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}


