/* ============================================
   CONTENT CLAUDE WORKSHOP V2 — DARK MODE
   Inspired by claudecoworkbootcamp.com
   Font: Manrope · Palette: cream on dark + brand orange
   Overrides bootcamp.css + content-claude-workshop.css
   ============================================ */

/* ----- Palette override ----- */
:root {
    --bc-bg: #0D1116;
    --bc-bg-warm: #141a22;
    --bc-bg-alt: #0F151C;
    --bc-text: #F3ECCB;
    --bc-text-muted: #b8b2a3;
    --bc-text-secondary: #8B8680;
    --bc-accent: #FF8C42;
    --bc-accent-hover: #ff7b29;
    --bc-accent-glow: rgba(255, 140, 66, 0.22);
    --bc-accent-deep: #f35a1f;
    --bc-success: #4ade80;
    --bc-error: #ef4444;
    --bc-border: rgba(243, 236, 203, 0.12);
    --bc-border-strong: rgba(243, 236, 203, 0.2);
    --bc-dark: #0D1116;
    --bc-dark-mid: #141a22;
    --bc-cream: #F3ECCB;
    --bc-cream-muted: rgba(243, 236, 203, 0.72);
    --bc-font-display: 'Manrope', system-ui, -apple-system, sans-serif;
    --bc-font-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ----- Base typography override ----- */
body {
    background: var(--bc-bg);
    color: var(--bc-text);
    font-family: var(--bc-font-body);
}

/* Inline code (slash commands, CLI snippets) */
code {
    font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.9em;
    background: rgba(255, 140, 66, 0.14);
    color: var(--bc-accent);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 140, 66, 0.25);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6,
.v2-section-title, .v2-hero-title, .v2-final-title,
.bc-form-title, .bc-title, .bc-cta-title, .bc-about-heading {
    font-family: var(--bc-font-display);
    letter-spacing: -0.02em;
}

/* ============================================
   HEADER
   ============================================ */
.bc-header {
    padding-top: 14px;
    text-align: left;
}

.bc-logo {
    /* Icon-only logo, no filter needed — the robot colors work on any background */
    height: 56px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.v2-announce {
    background: linear-gradient(90deg, var(--bc-accent-deep) 0%, var(--bc-accent) 100%);
    color: #fff;
    padding: 11px 20px;
    font-family: var(--bc-font-body);
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.v2-announce-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.88rem;
    flex-wrap: wrap;
    letter-spacing: 0.01em;
}

.v2-announce-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
    animation: v2Pulse 2s ease-in-out infinite;
}

@keyframes v2Pulse {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.25); }
}

.v2-announce-cta {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.v2-announce-cta:hover {
    opacity: 0.85;
}

/* ============================================
   SHARED V2 PRIMITIVES
   ============================================ */
.v2-section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--bc-cream);
    margin: 14px 0 14px;
}

.v2-section-sub {
    font-size: 1.05rem;
    color: var(--bc-cream-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.v2-section-head {
    text-align: center;
    margin-bottom: 56px;
}

/* Badge override (dark mode) */
.bc-badge {
    display: inline-block;
    background: rgba(255, 140, 66, 0.15);
    color: var(--bc-accent);
    border: 1px solid rgba(255, 140, 66, 0.35);
    font-family: var(--bc-font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.2px;
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Primary button (V2) */
.v2-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--bc-accent);
    color: #0D1116;
    border: none;
    border-radius: 10px;
    font-family: var(--bc-font-body);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    min-height: 56px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 28px rgba(255, 140, 66, 0.25);
}

.v2-btn-primary:hover {
    background: var(--bc-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(255, 140, 66, 0.4);
}

.v2-btn-primary:active {
    transform: translateY(0);
}

.v2-btn-block {
    width: 100%;
}

.v2-btn-large {
    padding: 20px 42px;
    font-size: 1.02rem;
    min-height: 64px;
}

/* ============================================
   HERO
   ============================================ */
.v2-hero {
    background: var(--bc-bg);
    padding: 8px 0 64px;
    position: relative;
    overflow: hidden;
}

.v2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 55%, rgba(255, 140, 66, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 140, 66, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 50% 120%, #1a2330 0%, transparent 60%);
    pointer-events: none;
}

.v2-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.v2-hero-title {
    font-family: var(--bc-font-display);
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--bc-cream);
    margin: 18px 0 22px;
}

.v2-hero-title .bc-title-accent {
    color: var(--bc-accent);
    display: inline;
    position: relative;
}

.v2-hero-title .bc-title-accent::after {
    display: none;
}

.v2-hero-sub {
    font-size: 1.12rem;
    color: var(--bc-cream-muted);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 26px;
    font-weight: 500;
}

.v2-hero-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.v2-hero-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--bc-cream);
    font-weight: 500;
}

.v2-hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--bc-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230D1116' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.v2-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.v2-hero-cta-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.85rem;
    color: var(--bc-cream-muted);
}

.v2-stars {
    color: #FACC15;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

/* Hero video frame */
.v2-hero-media {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-left: 24px;
    position: relative;
}

.v2-hero-sneak {
    position: absolute;
    top: -64px;
    right: 8px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: #FF8C42;
    pointer-events: none;
    z-index: 4;
    transform: rotate(-5deg);
    transform-origin: top right;
}

.v2-hero-sneak-text {
    font-family: 'Caveat', 'Comic Sans MS', cursive;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.05;
    color: #FFB07A;
    text-shadow: 0 1px 12px rgba(255, 140, 66, 0.35);
    margin-top: 6px;
    text-align: right;
}

.v2-hero-sneak-arrow {
    width: 64px;
    height: 78px;
    color: #FF8C42;
    filter: drop-shadow(0 2px 8px rgba(255, 140, 66, 0.45));
}

@media (max-width: 1024px) {
    .v2-hero-sneak {
        top: -10px;
        right: 16px;
        transform: rotate(-4deg) scale(0.9);
    }
}

@media (max-width: 640px) {
    .v2-hero-sneak {
        position: static;
        transform: none;
        justify-content: center;
        margin-bottom: 12px;
    }
    .v2-hero-sneak-text {
        text-align: left;
    }
    .v2-hero-sneak-arrow {
        display: none;
    }
}

.v2-hero-video {
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    line-height: 0;
}

.v2-hero-iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: #000;
}

.v2-curriculum-video {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 8px auto 64px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.v2-curriculum-video video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

/* ============================================
   PROOF STRIP
   ============================================ */
.v2-proof {
    background: var(--bc-bg-alt);
    padding: 40px 20px;
    border-top: 1px solid var(--bc-border);
    border-bottom: 1px solid var(--bc-border);
}

.v2-proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}

.v2-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.v2-proof-num {
    font-family: var(--bc-font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--bc-accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.v2-proof-label {
    font-size: 0.78rem;
    color: var(--bc-cream-muted);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.v2-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--bc-border-strong);
}

/* ============================================
   CONTENT FORMATS
   ============================================ */
.v2-formats {
    background: var(--bc-bg);
    padding: 96px 0;
}

.v2-formats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-formats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.v2-format {
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.v2-format:hover {
    transform: translateY(-4px);
    border-color: var(--bc-accent);
    box-shadow: 0 16px 40px rgba(255, 140, 66, 0.18);
}

.v2-format-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0a0e13;
    border-bottom: 1px solid var(--bc-border);
}

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

/* Text-only post mockup (Card 1) */
.v2-format-mockup {
    background: linear-gradient(155deg, #1a2028 0%, #0a0e13 100%);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-post-card {
    width: 100%;
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 10px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-post-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.v2-post-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bc-accent);
    color: #0D1116;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-post-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bc-cream);
    line-height: 1.1;
}

.v2-post-meta {
    font-size: 0.65rem;
    color: var(--bc-cream-muted);
    margin-top: 2px;
    line-height: 1;
}

.v2-post-line {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--bc-cream);
    font-weight: 500;
}

.v2-post-strong {
    font-weight: 700;
}

.v2-post-cta {
    color: var(--bc-accent);
    font-weight: 600;
}

.v2-format-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-format-body h3 {
    font-family: var(--bc-font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bc-cream);
    letter-spacing: -0.015em;
    margin: 0;
}

.v2-format-body p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--bc-cream-muted);
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.v2-format-cmd {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 0.78rem;
    color: var(--bc-cream-muted);
    font-weight: 600;
}

.v2-format-cmd code {
    font-size: 0.78rem;
    padding: 2px 7px;
}

/* ============================================
   TALKING-HEAD EXAMPLES
   ============================================ */
.v2-examples {
    background: var(--bc-bg-alt);
    padding: 96px 0;
    border-bottom: 1px solid var(--bc-border);
}

.v2-examples-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.v2-example {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.v2-example:hover {
    transform: translateY(-4px);
    border-color: var(--bc-accent);
    box-shadow: 0 16px 40px rgba(255, 140, 66, 0.18);
}

.v2-example video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

.v2-example-caption {
    padding: 14px 16px 16px;
    text-align: left;
}

.v2-example-caption h4 {
    font-family: var(--bc-font-display);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--bc-cream);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.v2-example-caption p {
    font-size: 0.8rem;
    color: var(--bc-cream-muted);
    font-weight: 500;
}

/* ============================================
   PROBLEM / PROMISE
   ============================================ */
.v2-problem {
    background: var(--bc-bg);
    padding: 96px 0;
}

.v2-problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

.v2-problem .v2-section-title {
    margin-bottom: 56px;
}

.v2-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
    text-align: left;
}

.v2-compare-col {
    background: var(--bc-bg-warm);
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    padding: 32px 28px;
}

.v2-compare-before {
    border-color: rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.05);
}

.v2-compare-after {
    border-color: rgba(74, 222, 128, 0.3);
    background: rgba(74, 222, 128, 0.05);
}

.v2-compare-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--bc-font-body);
}

.v2-compare-before .v2-compare-tag {
    color: #ff8888;
}

.v2-compare-after .v2-compare-tag {
    color: var(--bc-success);
}

.v2-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-compare-col li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--bc-cream);
    font-weight: 500;
}

.v2-compare-before li::before {
    content: '×';
    position: absolute;
    left: 0;
    top: -3px;
    color: #ff8888;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.v2-compare-after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bc-success);
    font-size: 1.05rem;
    font-weight: 800;
}

.v2-compare-arrow {
    font-size: 2rem;
    color: var(--bc-accent);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CURRICULUM / MODULES
   ============================================ */
.v2-curriculum {
    background: var(--bc-bg-alt);
    padding: 96px 0;
}

.v2-curriculum-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-modules {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.v2-module {
    background: rgba(243, 236, 203, 0.03);
    border: 1px solid var(--bc-border);
    border-radius: 14px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.v2-module:hover {
    transform: translateY(-2px);
    border-color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.04);
}

.v2-module-num {
    font-family: var(--bc-font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--bc-accent);
    line-height: 1;
    letter-spacing: -0.03em;
    min-width: 68px;
}

.v2-module-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.v2-module-head h3 {
    font-family: var(--bc-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bc-cream);
    letter-spacing: -0.02em;
}

.v2-module-time {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.12);
    border: 1px solid rgba(255, 140, 66, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.v2-module-body p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--bc-cream-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.v2-module-takeaway {
    background: rgba(255, 140, 66, 0.08);
    border: 1px solid rgba(255, 140, 66, 0.2);
    padding: 14px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--bc-accent);
    font-size: 0.92rem;
    color: var(--bc-cream);
    margin-top: 14px;
    font-weight: 500;
}

.v2-module-takeaway strong {
    color: var(--bc-accent);
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* ============================================
   21 SKILLS (dark mode override)
   ============================================ */
.ws-skills {
    background: var(--bc-bg);
    padding: 96px 0;
}

.ws-skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.ws-skills-header {
    text-align: center;
    margin-bottom: 48px;
}

.ws-section-title {
    font-family: var(--bc-font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--bc-cream);
    margin: 14px 0 14px;
}

.ws-section-sub {
    font-size: 1.05rem;
    color: var(--bc-cream-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 500;
}

.ws-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ws-skill-card {
    background: rgba(243, 236, 203, 0.03);
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    padding: 22px 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ws-skill-card:hover {
    transform: translateY(-2px);
    border-color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.04);
}

.ws-skill-card::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--bc-accent);
    border-radius: 2px;
    margin-bottom: 14px;
}

.ws-skill-name {
    font-family: var(--bc-font-display);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--bc-cream);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.ws-skill-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--bc-cream-muted);
    margin: 0;
    font-weight: 500;
}

/* ============================================
   INSTRUCTORS
   ============================================ */
.v2-instructors {
    background: var(--bc-bg-alt);
    padding: 96px 0;
}

.v2-instructors-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-instructors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v2-instructor-card {
    background: rgba(243, 236, 203, 0.03);
    border: 1px solid var(--bc-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
}

.v2-instructor-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 140, 66, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.v2-instructor-name {
    font-family: var(--bc-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bc-cream);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.v2-instructor-role {
    font-size: 0.82rem;
    color: var(--bc-accent);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v2-instructor-credits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.v2-instructor-credits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--bc-cream);
    line-height: 1.5;
    font-weight: 500;
}

.v2-instructor-credits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--bc-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%230D1116' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}

/* ============================================
   BONUS STACK
   ============================================ */
.v2-stack {
    background: var(--bc-bg);
    padding: 96px 0;
    color: var(--bc-cream);
}

.v2-stack-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border-strong);
    border-radius: 16px;
    overflow: hidden;
}

.v2-stack-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--bc-border);
    font-size: 1rem;
}

.v2-stack-list li:last-child {
    border-bottom: none;
}

.v2-stack-name {
    color: var(--bc-cream);
    font-weight: 500;
}

.v2-stack-value {
    color: var(--bc-cream-muted);
    font-family: var(--bc-font-display);
    font-weight: 700;
    white-space: nowrap;
}

.v2-stack-total {
    background: rgba(239, 68, 68, 0.08);
    border-top: 2px solid rgba(239, 68, 68, 0.25) !important;
}

.v2-stack-total .v2-stack-name,
.v2-stack-total .v2-stack-value {
    color: var(--bc-cream);
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: line-through;
    text-decoration-color: var(--bc-error);
    text-decoration-thickness: 2px;
}

.v2-stack-today {
    background: rgba(255, 140, 66, 0.15);
}

.v2-stack-today .v2-stack-name {
    color: var(--bc-cream);
    font-weight: 800;
    font-size: 1.1rem;
}

.v2-stack-today .v2-stack-value {
    color: var(--bc-accent);
    font-size: 1.6rem;
    font-weight: 800;
}

/* ============================================
   BUY CARD (gradient dramatic section)
   ============================================ */
.v2-buy {
    background: linear-gradient(0deg, var(--bc-accent-deep) -60%, var(--bc-bg) 85%);
    padding: 96px 20px 110px;
}

.v2-buy-inner {
    max-width: 560px;
    margin: 0 auto;
}

.v2-buy-card {
    background: rgba(20, 26, 34, 0.9);
    border-radius: 20px;
    border: 2px solid var(--bc-accent);
    padding: 40px 36px;
    box-shadow:
        0 24px 72px rgba(255, 140, 66, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.v2-buy-top {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--bc-border);
}

.v2-buy-title {
    font-family: var(--bc-font-display);
    font-size: 2rem;
    font-weight: 800;
    margin: 14px 0 22px;
    color: var(--bc-cream);
    letter-spacing: -0.025em;
}

.v2-buy-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
}

.v2-buy-price-old {
    font-size: 1rem;
    color: var(--bc-cream-muted);
    text-decoration: line-through;
    text-decoration-color: var(--bc-error);
    text-decoration-thickness: 2px;
    font-weight: 600;
}

.v2-buy-price-now {
    font-family: var(--bc-font-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--bc-cream);
    letter-spacing: -0.03em;
    line-height: 1;
}

.v2-buy-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.v2-buy-includes li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 0.95rem;
    color: var(--bc-cream);
    border-bottom: 1px dashed var(--bc-border);
    font-weight: 500;
}

.v2-buy-includes li:last-child {
    border-bottom: none;
}

.v2-buy-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--bc-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230D1116' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.v2-buy-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.v2-guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(243, 236, 203, 0.05);
    border: 1px solid var(--bc-border);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--bc-cream);
    font-weight: 500;
}

.v2-guarantee-badge svg {
    width: 22px;
    height: 22px;
    color: var(--bc-success);
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.v2-testimonials {
    background: var(--bc-bg-alt);
    padding: 96px 0;
}

.v2-testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v2-testimonial {
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    padding: 28px 26px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.v2-testimonial:hover {
    transform: translateY(-2px);
    border-color: var(--bc-accent);
}

.v2-testimonial-stars {
    color: #FACC15;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.v2-testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--bc-cream);
    margin-bottom: 20px;
    font-weight: 500;
}

.v2-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bc-border);
}

.v2-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.15);
    color: var(--bc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.v2-testimonial-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--bc-cream);
}

.v2-testimonial-role {
    font-size: 0.82rem;
    color: var(--bc-cream-muted);
    margin-top: 1px;
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.v2-faq {
    background: var(--bc-bg);
    padding: 96px 0;
}

.v2-faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 80px;
}

.v2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v2-faq-item {
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.v2-faq-item[open] {
    border-color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.05);
}

.v2-faq-item summary {
    padding: 20px 26px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bc-cream);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s ease;
    font-family: var(--bc-font-display);
}

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

.v2-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--bc-accent);
    font-weight: 700;
    transition: transform 0.25s ease;
    line-height: 1;
}

.v2-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.v2-faq-body {
    padding: 0 26px 22px;
}

.v2-faq-body p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bc-cream-muted);
    font-weight: 500;
}

/* ============================================
   FINAL CTA (dramatic gradient, similar to theirs)
   ============================================ */
.v2-final {
    background: linear-gradient(to bottom, var(--bc-accent-deep) 0%, #2a0a0a 40%, var(--bc-bg) 100%);
    padding: 110px 20px 130px;
    text-align: center;
}

.v2-final-inner {
    max-width: 680px;
    margin: 0 auto;
}

.v2-final-title {
    font-family: var(--bc-font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--bc-cream);
    margin-bottom: 16px;
}

.v2-final-sub {
    font-size: 1.15rem;
    color: var(--bc-cream-muted);
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 500;
}

.v2-final .v2-btn-primary {
    background: #fff;
    color: var(--bc-bg);
}

.v2-final .v2-btn-primary:hover {
    background: var(--bc-cream);
}

.v2-final-meta {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--bc-cream-muted);
    font-weight: 500;
}

/* ============================================
   STICKY BOTTOM CTA
   ============================================ */
.v2-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(13, 17, 22, 0.96);
    border-top: 1px solid var(--bc-border-strong);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.v2-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.v2-sticky-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--bc-cream);
}

.v2-sticky-price {
    font-family: var(--bc-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bc-cream);
    letter-spacing: -0.02em;
}

.v2-sticky-sep {
    color: var(--bc-cream-muted);
}

.v2-sticky-label {
    font-size: 0.88rem;
    color: var(--bc-cream-muted);
    font-weight: 500;
}

.v2-sticky .v2-btn-primary {
    padding: 12px 22px;
    min-height: 46px;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

/* ============================================
   FOOTER (dark)
   ============================================ */
.bc-footer {
    background: var(--bc-bg);
    border-top: 1px solid var(--bc-border);
    padding: 40px 20px;
    text-align: center;
}

.bc-footer p {
    color: var(--bc-cream-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .v2-hero-inner,
    .v2-problem-inner,
    .v2-curriculum-inner,
    .v2-instructors-inner,
    .v2-stack-inner,
    .v2-testimonials-inner,
    .v2-faq-inner,
    .v2-examples-inner,
    .v2-formats-inner,
    .ws-skills-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .v2-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .v2-formats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .v2-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .v2-hero-bullets {
        display: inline-block;
        text-align: left;
    }

    .v2-hero-cta-row {
        justify-content: center;
    }

    .v2-compare {
        grid-template-columns: 1fr;
    }

    .v2-compare-arrow {
        transform: rotate(90deg);
    }

    .v2-instructors-grid {
        grid-template-columns: 1fr;
    }

    .ws-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-hero-media {
        flex-direction: column;
        align-items: stretch;
        padding-left: 0;
    }

    .v2-hero-video {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .v2-hero {
        padding: 36px 0 64px;
    }

    .v2-hero-inner,
    .v2-problem-inner,
    .v2-curriculum-inner,
    .v2-instructors-inner,
    .v2-stack-inner,
    .v2-testimonials-inner,
    .v2-faq-inner,
    .v2-examples-inner,
    .v2-formats-inner,
    .ws-skills-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .v2-problem,
    .v2-curriculum,
    .v2-instructors,
    .v2-stack,
    .v2-testimonials,
    .v2-faq,
    .v2-examples,
    .v2-formats,
    .ws-skills {
        padding: 72px 0;
    }

    .v2-examples-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .v2-formats-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
        gap: 12px;
    }

    .v2-format-visual {
        aspect-ratio: 16 / 10;
    }

    .v2-format-body {
        padding: 16px 16px 18px;
        gap: 6px;
    }

    .v2-format-body h3 {
        font-size: 1rem;
    }

    .v2-format-body p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .v2-format-cmd,
    .v2-format-cmd code {
        font-size: 0.72rem;
    }

    .v2-module {
        padding: 24px 22px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .v2-module-num {
        font-size: 2rem;
    }

    .v2-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ws-skills-grid {
        grid-template-columns: 1fr;
    }

    .v2-proof-inner {
        gap: 16px;
    }

    .v2-proof-num {
        font-size: 1.7rem;
    }

    .v2-buy-price-now {
        font-size: 2.8rem;
    }

    .v2-sticky-inner {
        padding: 10px 16px;
    }

    .v2-sticky-label {
        display: none;
    }

    .v2-final {
        padding: 72px 20px 130px;
    }
}

@media (max-width: 480px) {
    .v2-proof-divider {
        display: none;
    }

    .v2-proof-item {
        min-width: 40%;
    }

    .v2-stack-list li {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .v2-buy-card {
        padding: 28px 22px;
    }

    .bc-badge {
        font-size: 0.66rem;
        padding: 5px 14px;
        letter-spacing: 1.8px;
    }
}

/* ============================================
   THANK-YOU PAGE
   Used by content-os-thank-you-jf43hj.html
   ============================================ */

.v2-ty-hero {
    padding: 56px 0 72px;
    background: var(--bc-bg);
    position: relative;
    overflow: hidden;
}

.v2-ty-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 45% at 50% 30%, rgba(255, 140, 66, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 80%, rgba(255, 140, 66, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.v2-ty-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.v2-ty-confirmed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: var(--bc-success);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 22px;
}

.v2-ty-checkmark {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v2-ty-checkmark svg {
    width: 100%;
    height: 100%;
}

.v2-ty-title {
    font-family: var(--bc-font-display);
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--bc-cream);
    margin: 0 0 20px;
}

.v2-ty-sub {
    font-size: 1.08rem;
    color: var(--bc-cream-muted);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto 36px;
    font-weight: 500;
}

/* Thank-you video frame — similar to hero frame but simpler (no tilt/float) */
.v2-ty-video-frame {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0e13;
    border: 1px solid rgba(255, 140, 66, 0.3);
    box-shadow:
        0 48px 120px rgba(0, 0, 0, 0.7),
        0 18px 52px rgba(255, 140, 66, 0.28);
}

.v2-ty-video-frame video,
.v2-ty-video-frame iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

/* ============================================
   3 STEPS
   ============================================ */
.v2-ty-steps-section {
    background: var(--bc-bg-alt);
    padding: 88px 0;
    border-top: 1px solid var(--bc-border);
}

.v2-ty-steps-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.v2-ty-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v2-ty-step {
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    padding: 32px 26px 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.v2-ty-step:hover {
    transform: translateY(-3px);
    border-color: var(--bc-accent);
}

.v2-ty-step-num {
    font-family: var(--bc-font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bc-accent);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.v2-ty-step h3 {
    font-family: var(--bc-font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--bc-cream);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.v2-ty-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bc-cream-muted);
    font-weight: 500;
    margin: 0;
}

.v2-ty-step-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bc-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 140, 66, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.v2-ty-step-link:hover {
    color: var(--bc-cream);
    border-color: var(--bc-cream);
}

/* ============================================
   DOWNLOADS GRID
   ============================================ */
.v2-ty-downloads {
    background: var(--bc-bg);
    padding: 88px 0 72px;
}

.v2-ty-downloads-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.v2-ty-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.v2-ty-download-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px 26px;
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.v2-ty-download-card:hover {
    transform: translateY(-3px);
    border-color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.06);
    box-shadow: 0 18px 44px rgba(255, 140, 66, 0.18);
}

.v2-ty-download-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.3);
    color: var(--bc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-ty-download-icon svg {
    width: 24px;
    height: 24px;
}

.v2-ty-download-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.v2-ty-download-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--bc-accent);
    margin: 0 0 2px;
}

.v2-ty-download-body h3 {
    font-family: var(--bc-font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bc-cream);
    letter-spacing: -0.015em;
    margin: 0 0 4px;
}

.v2-ty-download-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--bc-cream-muted);
    font-weight: 500;
    margin: 0;
}

.v2-ty-download-meta {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--bc-text-secondary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.v2-ty-email-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.9rem;
    color: var(--bc-cream-muted);
    font-weight: 500;
}

/* ============================================
   SUPPORT
   ============================================ */
.v2-ty-support {
    background: var(--bc-bg-alt);
    padding: 72px 0 88px;
    border-top: 1px solid var(--bc-border);
}

.v2-ty-support-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.v2-ty-support-text {
    font-size: 1.02rem;
    color: var(--bc-cream-muted);
    line-height: 1.65;
    margin: 16px auto 32px;
    font-weight: 500;
}

.v2-ty-support-text a {
    color: var(--bc-accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.v2-ty-social {
    padding-top: 26px;
    border-top: 1px solid var(--bc-border);
}

.v2-ty-social-label {
    font-size: 0.82rem;
    color: var(--bc-cream-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.v2-ty-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.v2-ty-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(243, 236, 203, 0.04);
    border: 1px solid var(--bc-border);
    border-radius: 100px;
    color: var(--bc-cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.v2-ty-social-link:hover {
    transform: translateY(-2px);
    border-color: var(--bc-accent);
    background: rgba(255, 140, 66, 0.08);
}

.v2-ty-social-link svg {
    width: 18px;
    height: 18px;
    color: var(--bc-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .v2-ty-steps,
    .v2-ty-download-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .v2-ty-hero {
        padding: 36px 0 56px;
    }

    .v2-ty-hero-inner,
    .v2-ty-steps-inner,
    .v2-ty-downloads-inner,
    .v2-ty-support-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .v2-ty-steps-section,
    .v2-ty-downloads,
    .v2-ty-support {
        padding: 56px 0;
    }

    .v2-ty-download-card {
        padding: 22px 20px;
        gap: 14px;
    }

    .v2-ty-download-icon {
        width: 42px;
        height: 42px;
    }

    .v2-ty-download-icon svg {
        width: 22px;
        height: 22px;
    }
}
