/* =========================================================
   ASJ IT Solutions — v3 Redesign
   Loaded AFTER style.css. Wins by source order.
   Aesthetic: editorial-tech, Linear/Vercel/Mercury/Plain inspired.
   Typography: Geist (sans) + Instrument Serif (italic accent) + JetBrains Mono.
   Colors: inherits --gold and dark/light tokens from style.css.
   ========================================================= */

:root {
    --font-display-v3: 'Instrument Serif', 'Times New Roman', serif;
    --font-sans-v3: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono-v3: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

    --v3-radius-lg: 20px;
    --v3-radius-md: 14px;
    --v3-radius-sm: 8px;

    --v3-pad-section: clamp(64px, 10vw, 140px);
    --v3-gap-grid: clamp(16px, 2vw, 24px);

    --v3-bg-primary: #0a0a0c;
    --v3-bg-secondary: #0f0f12;
    --v3-bg-card: #131318;
    --v3-bg-card-hover: #1a1a20;
    --v3-border: #1f1f26;
    --v3-border-hover: #2a2a32;
    --v3-text-primary: #f5f5f7;
    --v3-text-secondary: #a8a8b3;
    --v3-text-muted: #6e6e7a;
    --v3-text-faint: #45454f;
    --v3-gold: var(--gold);
    --v3-gold-soft: rgba(212, 175, 55, 0.08);
    --v3-gold-glow-strong: rgba(212, 175, 55, 0.18);
}

[data-theme="light"] {
    --v3-bg-primary: #ffffff;
    --v3-bg-secondary: #fafaf9;
    --v3-bg-card: #ffffff;
    --v3-bg-card-hover: #f7f7f5;
    --v3-border: #e8e8e3;
    --v3-border-hover: #d4d4ce;
    --v3-text-primary: #0a0a0c;
    --v3-text-secondary: #45454f;
    --v3-text-muted: #6e6e7a;
    --v3-text-faint: #9d9da5;
    --v3-gold-soft: rgba(184, 152, 44, 0.08);
    --v3-gold-glow-strong: rgba(184, 152, 44, 0.16);
}

/* Body baseline */
body.v3 {
    font-family: var(--font-sans-v3);
    background: var(--v3-bg-primary);
    color: var(--v3-text-secondary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
}

body.v3 .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Selection */
body.v3 ::selection {
    background: var(--v3-gold);
    color: #09090b;
}

/* Mono microlabel — the system signature */
.v3-mono-label {
    display: inline-block;
    font-family: var(--font-mono-v3);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v3-text-muted);
    text-transform: uppercase;
}

/* Italic emphasis word (Instrument Serif) */
em, .v3-italic {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--v3-gold);
}

/* Section heads */
.v3-section-head {
    max-width: 880px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.v3-section-head .v3-mono-label { color: var(--v3-gold); }

.v3-section-title {
    font-family: var(--font-sans-v3);
    font-size: clamp(1.75rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--v3-text-primary);
    margin: 0;
}
.v3-section-title em {
    font-size: 1.05em;
    color: var(--v3-gold);
}

.v3-section-sub {
    font-size: 1.0625rem;
    color: var(--v3-text-secondary);
    line-height: 1.55;
    max-width: 720px;
    margin: 0;
}
.v3-section-sub a {
    color: var(--v3-gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
}
.v3-section-sub a:hover { text-decoration-color: var(--v3-gold); }

/* Icons */
body.v3 .icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
body.v3 .icon-lg { width: 28px; height: 28px; }
body.v3 .icon-sm { width: 16px; height: 16px; }
body.v3 .icon-xs { width: 12px; height: 12px; }

/* =========================================================
   Buttons
   ========================================================= */
.v3-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: var(--font-sans-v3);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
    white-space: nowrap;
    line-height: 1;
}
.v3-btn:active { transform: translateY(1px); }
.v3-btn .icon { transition: transform 0.18s ease; }
.v3-btn:hover .icon { transform: translateX(2px); }

.v3-btn-primary {
    background: var(--v3-gold);
    color: #09090b;
    border-color: var(--v3-gold);
}
.v3-btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.v3-btn-secondary {
    background: var(--v3-bg-card);
    color: var(--v3-text-primary);
    border-color: var(--v3-border);
}
.v3-btn-secondary:hover {
    background: var(--v3-bg-card-hover);
    border-color: var(--v3-gold);
}

.v3-btn-ghost {
    background: transparent;
    color: var(--v3-text-secondary);
    border-color: var(--v3-border);
}
.v3-btn-ghost:hover {
    color: var(--v3-text-primary);
    border-color: var(--v3-text-muted);
}

.v3-btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
}
.v3-btn-sm {
    padding: 8px 14px;
    font-size: 0.8125rem;
}

/* =========================================================
   Top announcement strip
   ========================================================= */
.v3-announce {
    position: relative;
    z-index: 60;
    background: var(--v3-bg-secondary);
    border-bottom: 1px solid var(--v3-border);
    color: var(--v3-text-secondary);
    font-size: 0.8125rem;
}
.v3-announce .container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.v3-announce-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--v3-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    animation: v3-pulse 2s infinite ease-in-out;
}
@keyframes v3-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.18); }
}
.v3-announce-label {
    font-family: var(--font-mono-v3);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--v3-gold);
}
.v3-announce-text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v3-announce-cta {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--v3-text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--v3-border-hover);
    padding-bottom: 1px;
}
.v3-announce-cta:hover { color: var(--v3-gold); border-color: var(--v3-gold); }

/* =========================================================
   Navigation
   ========================================================= */
body.v3 .nav.v3-nav {
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}
body.v3 .nav.v3-nav.scrolled {
    background: rgba(10, 10, 12, 0.92);
    border-bottom-color: var(--v3-border);
}
[data-theme="light"] body.v3 .nav.v3-nav { background: rgba(255, 255, 255, 0.78); }
[data-theme="light"] body.v3 .nav.v3-nav.scrolled { background: rgba(255, 255, 255, 0.95); }

body.v3 .logo-title {
    font-family: var(--font-sans-v3);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    color: var(--v3-text-primary);
}
body.v3 .v3-tagline {
    font-family: var(--font-mono-v3);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--v3-text-muted);
}
body.v3 .v3-nav-menu .nav-link {
    font-family: var(--font-sans-v3);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--v3-text-secondary);
    transition: color 0.15s ease;
}
body.v3 .v3-nav-menu .nav-link:hover { color: var(--v3-text-primary); }

body.v3 .nav-cta.v3-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--v3-gold);
    color: #09090b;
    font-family: var(--font-sans-v3);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}
body.v3 .nav-cta.v3-nav-cta:hover { background: var(--gold-light); }
body.v3 .nav-cta.v3-nav-cta .icon { transition: transform 0.18s ease; }
body.v3 .nav-cta.v3-nav-cta:hover .icon { transform: translateX(2px); }

/* =========================================================
   HERO
   ========================================================= */
.v3-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--v3-bg-primary);
    overflow: hidden;
}
.v3-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 30% 20%, var(--v3-gold-glow-strong), transparent 60%),
        radial-gradient(ellipse 600px 400px at 80% 50%, var(--v3-gold-soft), transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.v3-hero .container { position: relative; z-index: 1; }
.v3-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
}
.v3-hero-meta-top { margin-bottom: -16px; }
.v3-hero-meta-top .v3-mono-label { color: var(--v3-gold); }

.v3-hero-title {
    font-family: var(--font-sans-v3);
    font-size: clamp(2.5rem, 7.5vw, 6.5rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--v3-text-primary);
    margin: 0;
    max-width: 14ch;
}
.v3-hero-title em {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-weight: 400;
    color: var(--v3-gold);
    letter-spacing: -0.02em;
    font-size: 1.05em;
}

.v3-hero-sub {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    line-height: 1.5;
    color: var(--v3-text-secondary);
    max-width: 60ch;
    margin: 0;
}

.v3-hero-rotator {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.v3-rotator-track {
    position: relative;
    height: 1.5em;
    overflow: hidden;
    font-family: var(--font-display-v3);
    font-style: italic;
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    line-height: 1.4;
    color: var(--v3-text-primary);
}
.v3-rotator-text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.v3-rotator-text.active {
    opacity: 1;
    transform: translateY(0);
}

.v3-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.v3-hero-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding: 24px 0 0;
    border-top: 1px solid var(--v3-border);
}
.v3-hero-strip-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v3-hero-strip-item span:not(.v3-mono-label) {
    font-size: 0.9375rem;
    color: var(--v3-text-primary);
    line-height: 1.4;
}

/* Tools marquee — logos (continuous, no hover state) */
.v3-tools {
    margin-top: 80px;
    padding: 32px 0 0;
    border-top: 1px solid var(--v3-border);
}
.v3-tools-marquee {
    margin-top: 28px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    padding: 8px 0;
}
.v3-tools-track {
    display: inline-flex;
    gap: 48px;
    align-items: center;
    animation: v3-marquee 60s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.v3-tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    opacity: 0.7;
}
.v3-tool img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(0.4);
}
/* AWS (Devicon plain-wordmark) and OpenAI (raw black SVG) need stronger
   normalization to match the gray treatment of the simpleicons-tinted logos.
   AWS wordmark is wider than icon-only marks, so let it breathe horizontally. */
.v3-tool img[src*="amazonwebservices"] {
    width: 48px;
    height: 28px;
    filter: grayscale(1) brightness(1.5) opacity(0.85);
}
.v3-tool img[src*="simple-icons/simple-icons/icons/openai"] {
    filter: grayscale(1) brightness(1.6) invert(0.55);
}
.v3-tool span {
    font-family: var(--font-sans-v3);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v3-text-secondary);
    letter-spacing: -0.01em;
    line-height: 1;
}
@keyframes v3-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
[data-theme="light"] .v3-tool img {
    filter: grayscale(0.4) brightness(0.7);
}
[data-theme="light"] .v3-tool img[src*="amazonwebservices"] {
    filter: grayscale(1) brightness(0.55) opacity(0.9);
}
[data-theme="light"] .v3-tool img[src*="simple-icons/simple-icons/icons/openai"] {
    filter: grayscale(1) brightness(0.55);
}

/* =========================================================
   THE HOOK — Self-qualifier
   ========================================================= */
.v3-hook {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
}
.v3-hook .v3-section-head { margin-bottom: 56px; }

.v3-hook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--v3-gap-grid);
}
.v3-hook-card {
    position: relative;
    text-align: left;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-md);
    padding: 32px;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    overflow: hidden;
}
.v3-hook-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 200px at 0% 0%, var(--v3-gold-soft), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.v3-hook-card:hover { border-color: var(--v3-gold); transform: translateY(-2px); }
.v3-hook-card:hover::before { opacity: 1; }
.v3-hook-card[aria-pressed="true"] {
    border-color: var(--v3-gold);
    background: var(--v3-bg-card-hover);
}
.v3-hook-card[aria-pressed="true"]::before { opacity: 1; }

.v3-hook-card-num {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v3-gold);
    margin-bottom: 16px;
}
.v3-hook-card h3 {
    font-family: var(--font-sans-v3);
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--v3-text-primary);
    margin: 0 0 12px;
}
.v3-hook-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    margin: 0 0 20px;
}
.v3-hook-tag {
    display: inline-block;
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--v3-gold);
    border: 1px solid var(--v3-border);
    padding: 4px 10px;
    border-radius: 999px;
    transition: border-color 0.2s ease;
}
.v3-hook-card:hover .v3-hook-tag,
.v3-hook-card[aria-pressed="true"] .v3-hook-tag {
    border-color: var(--v3-gold);
    background: var(--v3-gold-soft);
}

.v3-hook-reveal {
    margin-top: 32px;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-gold);
    border-radius: var(--v3-radius-md);
    padding: 32px;
    animation: v3-fade-up 0.4s ease;
}
.v3-hook-reveal-inner { display: flex; flex-direction: column; gap: 12px; }
.v3-hook-reveal h4 {
    font-family: var(--font-sans-v3);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--v3-text-primary);
    margin: 0;
}
.v3-hook-reveal p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    margin: 0 0 8px;
}
.v3-hook-reveal .v3-btn { align-self: flex-start; }

@keyframes v3-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.v3-hook-foot {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--v3-text-muted);
}
.v3-hook-foot a {
    color: var(--v3-gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
}

/* =========================================================
   SERVICES — Bento
   ========================================================= */
.v3-services {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-primary);
}
.v3-services .v3-section-head { margin-bottom: 56px; }

.v3-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: var(--v3-gap-grid);
}
.v3-bento-card {
    position: relative;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    overflow: hidden;
}
.v3-bento-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--v3-gold), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.v3-bento-card:hover { transform: translateY(-3px); border-color: var(--v3-gold); }
.v3-bento-card:hover::before { opacity: 1; }

.v3-bento-card-num {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--v3-text-muted);
    margin-bottom: 24px;
}
.v3-bento-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--v3-gold-soft);
    color: var(--v3-gold);
    margin-bottom: 16px;
}
.v3-bento-card h3 {
    font-family: var(--font-sans-v3);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--v3-text-primary);
    margin: 0 0 12px;
}
.v3-bento-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    margin: 0 0 20px;
    flex: 1;
}
.v3-bento-tag {
    display: inline-block;
    font-family: var(--font-mono-v3);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: var(--v3-gold-soft);
    color: var(--v3-gold);
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}
.v3-bento-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--v3-text-secondary);
}
.v3-bento-card-list li { display: flex; align-items: center; gap: 8px; }
.v3-bento-card-list .icon { width: 6px; height: 6px; color: var(--v3-gold); fill: currentColor; }
.v3-bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--v3-text-primary);
    font-family: var(--font-sans-v3);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
    border-bottom: 1px solid var(--v3-border-hover);
    padding-bottom: 4px;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.v3-bento-cta:hover { color: var(--v3-gold); border-color: var(--v3-gold); }
.v3-bento-cta .icon { transition: transform 0.18s ease; }
.v3-bento-cta:hover .icon { transform: translate(2px, -2px); }

/* Featured (MTP) — spans full row */
.v3-bento-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--v3-bg-card) 0%, var(--v3-bg-card-hover) 100%);
    padding: 48px;
}
.v3-bento-featured h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}
.v3-bento-featured > p {
    font-size: 1.0625rem;
    max-width: 60ch;
}
.v3-bento-featured::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--v3-gold-glow-strong), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.v3-bento-featured > * { position: relative; z-index: 1; }

/* Modal v3 */
.v3-modal.modal {
    font-family: var(--font-sans-v3);
}
.v3-modal .modal-title {
    font-family: var(--font-sans-v3);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* =========================================================
   PARTNER WITH US
   ========================================================= */
.v3-partner {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
    border-bottom: 1px solid var(--v3-border);
    position: relative;
    overflow: hidden;
}
.v3-partner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 1000px 400px at 50% -50%, var(--v3-gold-glow-strong), transparent 60%);
    pointer-events: none;
}
.v3-partner > .container { position: relative; }
.v3-partner .v3-section-head { margin-bottom: 56px; }

.v3-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--v3-gap-grid);
}
.v3-partner-card {
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.v3-partner-card:hover { border-color: var(--v3-gold); transform: translateY(-2px); }
.v3-partner-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.v3-partner-card h3 {
    font-family: var(--font-sans-v3);
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--v3-text-primary);
    margin: 0 0 12px;
}
.v3-partner-card > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    margin: 0 0 24px;
}
.v3-partner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v3-partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--v3-text-secondary);
}
.v3-partner-list li .icon { color: var(--v3-gold); width: 18px; height: 18px; margin-top: 2px; }
.v3-partner-list strong { color: var(--v3-text-primary); }
.v3-partner-foot {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px dashed var(--v3-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v3-partner-fit {
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
    line-height: 1.5;
}
.v3-partner-foot .v3-btn { align-self: flex-start; }

/* =========================================================
   APPROACH — Sticky scroll
   ========================================================= */
.v3-approach {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-primary);
}
.v3-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.v3-approach-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
}
.v3-approach-sticky .v3-mono-label { color: var(--v3-gold); }
.v3-approach-sticky .v3-section-title { font-size: clamp(1.75rem, 3.2vw, 2.75rem); }
.v3-approach-sticky .v3-btn { align-self: flex-start; margin-top: 8px; }

.v3-approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step;
}
.v3-approach-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--v3-border);
    transition: padding 0.3s ease;
}
.v3-approach-step:first-child { padding-top: 0; }
.v3-approach-step:last-child { border-bottom: none; }
.v3-approach-step:hover { padding-left: 8px; }
.v3-approach-num {
    font-family: var(--font-mono-v3);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v3-gold);
    letter-spacing: 0.06em;
    padding-top: 4px;
}
.v3-approach-step h3 {
    font-family: var(--font-sans-v3);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--v3-text-primary);
    margin: 0 0 8px;
}
.v3-step-tag {
    display: inline-block;
    margin-left: 8px;
    font-family: var(--font-mono-v3);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--v3-text-muted);
    background: var(--v3-bg-secondary);
    border: 1px solid var(--v3-border);
    padding: 3px 8px;
    border-radius: 999px;
    vertical-align: middle;
    text-transform: uppercase;
}
.v3-approach-step p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    margin: 0;
    max-width: 60ch;
}

/* =========================================================
   RISK REVERSAL BAND
   ========================================================= */
.v3-guarantee {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
    border-bottom: 1px solid var(--v3-border);
}
.v3-guarantee-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.v3-guarantee-inner .v3-mono-label { color: var(--v3-gold); }
.v3-guarantee-inner .v3-section-title { text-align: center; }
.v3-guarantee-inner > p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    max-width: 60ch;
}
.v3-guarantee-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}
.v3-guarantee-item {
    text-align: left;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v3-guarantee-item .v3-mono-label { color: var(--v3-gold); }
.v3-guarantee-item p {
    font-size: 0.9375rem;
    color: var(--v3-text-primary);
    line-height: 1.5;
    margin: 0;
}

/* =========================================================
   FOUNDER — Editorial
   ========================================================= */
.v3-founder {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-primary);
}
.v3-founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}
.v3-founder-side {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.v3-founder-side .v3-mono-label { color: var(--v3-gold); }
.v3-founder-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v3-founder-stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--v3-border);
}
.v3-founder-stats li:last-child { border-bottom: none; padding-bottom: 0; }
.v3-founder-stats strong {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--v3-text-primary);
    letter-spacing: -0.015em;
}
.v3-founder-stats span {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    color: var(--v3-text-muted);
    line-height: 1.4;
}
.v3-founder-content { display: flex; flex-direction: column; gap: 24px; }
.v3-founder-content .v3-section-title { font-size: clamp(1.875rem, 3.6vw, 3rem); }
.v3-pull {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.375rem, 2.4vw, 1.875rem);
    line-height: 1.4;
    color: var(--v3-text-primary);
    letter-spacing: -0.01em;
    border-left: 2px solid var(--v3-gold);
    padding-left: 24px;
    margin: 0;
    max-width: 60ch;
}
.v3-founder-content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--v3-text-secondary);
    max-width: 60ch;
}
.v3-founder-note {
    background: var(--v3-bg-card);
    border-left: 2px solid var(--v3-gold);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 60ch;
}
.v3-founder-note p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--v3-text-secondary); }
.v3-founder-note a { color: var(--v3-gold); font-weight: 500; text-decoration: none; }
.v3-founder-note a:hover { text-decoration: underline; }

/* =========================================================
   TESTIMONIAL — Editorial pull-quote
   ========================================================= */
.v3-quote {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
    border-bottom: 1px solid var(--v3-border);
}
.v3-quote-inner {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.v3-quote-inner .v3-mono-label { color: var(--v3-gold); }
.v3-quote-text {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    line-height: 1.35;
    color: var(--v3-text-primary);
    letter-spacing: -0.01em;
    margin: 0;
    quotes: none;
}
.v3-quote-attrib {
    display: flex;
    align-items: center;
    gap: 16px;
}
.v3-quote-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
}
.v3-quote-attrib strong {
    display: block;
    font-family: var(--font-sans-v3);
    font-size: 1rem;
    font-weight: 600;
    color: var(--v3-text-primary);
}
.v3-quote-attrib span {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    color: var(--v3-text-muted);
    letter-spacing: 0.02em;
}
.v3-quote-foot {
    font-size: 0.875rem;
    color: var(--v3-text-muted);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid var(--v3-border);
    padding-top: 20px;
}

/* =========================================================
   FAQ
   ========================================================= */
.v3-faq {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-primary);
}
.v3-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}
.v3-faq-side {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v3-faq-side .v3-mono-label { color: var(--v3-gold); }
.v3-faq-side .v3-section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.v3-faq-side > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
}
.v3-faq-side .v3-btn { align-self: flex-start; }

.v3-faq-list { display: flex; flex-direction: column; gap: 0; }
.v3-faq-item {
    border-top: 1px solid var(--v3-border);
    transition: border-color 0.2s ease;
}
.v3-faq-item:last-child { border-bottom: 1px solid var(--v3-border); }
.v3-faq-item[open] { border-color: var(--v3-gold); }
.v3-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-sans-v3);
    font-weight: 500;
    color: var(--v3-text-primary);
    font-size: 1.0625rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}
.v3-faq-item summary::-webkit-details-marker,
.v3-faq-item summary::marker { display: none; }
.v3-faq-item summary:hover { color: var(--v3-gold); }
.v3-faq-plus {
    width: 18px;
    height: 18px;
    color: var(--v3-text-muted);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.v3-faq-item[open] .v3-faq-plus { transform: rotate(45deg); color: var(--v3-gold); }
.v3-faq-body {
    padding: 0 0 24px;
    color: var(--v3-text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    max-width: 65ch;
}
.v3-faq-body p { margin: 0; }
.v3-faq-body a {
    color: var(--v3-gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    text-underline-offset: 3px;
}

/* =========================================================
   BIG CTA BAND
   ========================================================= */
.v3-cta-band {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.v3-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 1200px 600px at 50% 50%, var(--v3-gold-glow-strong), transparent 60%);
    pointer-events: none;
}
.v3-cta-band > .container { position: relative; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.v3-cta-band .v3-mono-label { color: var(--v3-gold); }
.v3-cta-title {
    font-family: var(--font-sans-v3);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--v3-text-primary);
    max-width: 22ch;
    margin: 0;
}
.v3-cta-title em {
    font-family: var(--font-display-v3);
    font-style: italic;
    font-weight: 400;
    color: var(--v3-gold);
    font-size: 1.05em;
}
.v3-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.v3-cta-foot {
    font-family: var(--font-mono-v3);
    font-size: 0.75rem;
    color: var(--v3-text-muted);
    letter-spacing: 0.02em;
    margin: 0;
}

/* =========================================================
   CONTACT
   ========================================================= */
.v3-contact {
    padding: var(--v3-pad-section) 0;
    background: var(--v3-bg-primary);
    border-top: 1px solid var(--v3-border);
}
.v3-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.v3-contact-info { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 120px; }
.v3-contact-info .v3-mono-label { color: var(--v3-gold); }
.v3-contact-info .v3-section-title { font-size: clamp(1.5rem, 2.6vw, 2.25rem); }
.v3-contact-info > p { font-size: 0.9375rem; line-height: 1.6; color: var(--v3-text-secondary); margin: 0; }
.v3-contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.v3-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-md);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.v3-contact-method:hover { border-color: var(--v3-gold); transform: translateX(2px); }
.v3-contact-method .icon { color: var(--v3-gold); width: 20px; height: 20px; flex-shrink: 0; }
.v3-contact-method div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.v3-contact-method strong { font-size: 0.9375rem; font-weight: 500; color: var(--v3-text-primary); overflow: hidden; text-overflow: ellipsis; }

/* Form */
.v3-contact-form {
    background: var(--v3-bg-card);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-lg);
    padding: 40px;
}
.v3-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.v3-form-group { display: flex; flex-direction: column; gap: 8px; }
.v3-form-full { grid-column: 1 / -1; }
.v3-form-group label { display: block; }
.v3-form-group input,
.v3-form-group select,
.v3-form-group textarea {
    width: 100%;
    background: var(--v3-bg-primary);
    border: 1px solid var(--v3-border);
    border-radius: var(--v3-radius-sm);
    padding: 12px 14px;
    color: var(--v3-text-primary);
    font-family: var(--font-sans-v3);
    font-size: 0.9375rem;
    line-height: 1.4;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.v3-form-group input:focus,
.v3-form-group select:focus,
.v3-form-group textarea:focus {
    outline: none;
    border-color: var(--v3-gold);
    background: var(--v3-bg-card-hover);
}
.v3-form-group input::placeholder,
.v3-form-group textarea::placeholder { color: var(--v3-text-faint); }
.v3-form-group textarea { min-height: 120px; resize: vertical; }
.v3-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%236e6e7a' stroke-width='1.5' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.v3-form-consent {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.v3-form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--v3-gold);
    margin: 0;
}
.v3-form-consent label {
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
    margin: 0;
}
.v3-form-consent label a { color: var(--v3-gold); text-decoration: underline; }
.v3-form-submit { margin-top: 24px; width: 100%; justify-content: center; padding: 14px 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
.v3-footer {
    padding: 64px 0 32px;
    background: var(--v3-bg-secondary);
    border-top: 1px solid var(--v3-border);
}
.v3-footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--v3-border);
}
.v3-footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--v3-text-secondary);
    max-width: 32ch;
}
.v3-footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v3-footer-cols div ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.v3-footer-cols div ul li a {
    font-size: 0.875rem;
    color: var(--v3-text-secondary);
    text-decoration: none;
    transition: color 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.v3-footer-cols div ul li a:hover { color: var(--v3-text-primary); }
.v3-footer-cols .v3-mono-label { color: var(--v3-gold); }
.v3-footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--v3-text-muted);
}
.v3-footer-bottom .v3-mono-label { color: var(--v3-text-faint); }

/* =========================================================
   STICKY DISCOVERY BAR
   ========================================================= */
.v3-sticky-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.v3-sticky-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.v3-sticky-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 15, 18, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--v3-border-hover);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.v3-sticky-bar-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--v3-gold);
    box-shadow: 0 0 12px var(--v3-gold);
    flex-shrink: 0;
    animation: v3-pulse 2s infinite ease-in-out;
}
.v3-sticky-bar-text {
    flex: 1;
    font-size: 0.8125rem;
    color: var(--v3-text-secondary);
    line-height: 1.4;
    min-width: 0;
}
.v3-sticky-bar-text strong { color: var(--v3-text-primary); }
.v3-sticky-bar-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--v3-border);
    color: var(--v3-text-muted);
    cursor: pointer;
    font-size: 1.125rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.v3-sticky-bar-close:hover { color: var(--v3-text-primary); border-color: var(--v3-text-muted); }

[data-theme="light"] .v3-sticky-bar-inner {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .v3-hero-strip { grid-template-columns: repeat(2, 1fr); }
    .v3-bento { grid-template-columns: repeat(2, 1fr); }
    .v3-bento-featured { grid-column: auto; padding: 32px; }
    .v3-bento-featured h3 { font-size: 1.625rem; }
    .v3-bento-featured > p { font-size: 0.9375rem; }
    .v3-approach-grid { grid-template-columns: 1fr; gap: 48px; }
    .v3-approach-sticky { position: static; }
    .v3-founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .v3-founder-side { position: static; flex-direction: row; align-items: center; flex-wrap: wrap; }
    .v3-founder-stats { flex-direction: row; flex-wrap: wrap; flex: 1; min-width: 280px; }
    .v3-founder-stats li { flex: 1; min-width: 140px; border-bottom: none; padding-bottom: 0; }
    .v3-faq-grid { grid-template-columns: 1fr; gap: 32px; }
    .v3-faq-side { position: static; }
    .v3-contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .v3-contact-info { position: static; }
    .v3-footer-top { grid-template-columns: 1fr; }
    .v3-footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .v3-hero { padding: 80px 0 64px; }
    .v3-hero-grid { gap: 24px; }
    .v3-hero-strip { grid-template-columns: 1fr; gap: 16px; padding-top: 16px; }
    .v3-hero-actions { flex-direction: column; align-items: stretch; }
    .v3-hero-actions .v3-btn { justify-content: center; }
    .v3-bento { grid-template-columns: 1fr; }
    .v3-bento-featured { grid-column: 1 / -1; padding: 32px; }
    .v3-hook-grid { grid-template-columns: 1fr; }
    .v3-partner-grid { grid-template-columns: 1fr; }
    .v3-partner-card { padding: 28px; }
    .v3-guarantee-row { grid-template-columns: 1fr; }
    .v3-cta-actions { flex-direction: column; align-items: stretch; }
    .v3-cta-actions .v3-btn { justify-content: center; }
    .v3-form-grid { grid-template-columns: 1fr; }
    .v3-contact-form { padding: 24px; }
    .v3-footer-cols { grid-template-columns: 1fr 1fr; }
    .v3-announce .container { flex-wrap: wrap; }
    .v3-announce-text { white-space: normal; }
    .v3-sticky-bar { left: 8px; right: 8px; bottom: 8px; }
    .v3-sticky-bar-inner { padding: 8px 8px 8px 16px; gap: 12px; }
    .v3-sticky-bar-text { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .v3-hero { padding: 64px 0 48px; }
    .v3-hero-title { font-size: 2.25rem; }
    .v3-section-title { font-size: 1.625rem; }
    .v3-hook-card, .v3-bento-card, .v3-partner-card { padding: 24px; }
    .v3-bento-featured { padding: 28px; }
    .v3-cta-title { font-size: 2rem; }
    .v3-footer-cols { grid-template-columns: 1fr; }
    .v3-tools-track { font-size: 1.5rem; }
}

/* =========================================================
   LIGHT MODE OVERRIDES
   ========================================================= */
[data-theme="light"] body.v3 { background: var(--v3-bg-primary); color: var(--v3-text-secondary); }
[data-theme="light"] body.v3 .nav.v3-nav { border-bottom-color: transparent; }
[data-theme="light"] .v3-hero-glow {
    background:
        radial-gradient(ellipse 800px 500px at 30% 20%, rgba(184, 152, 44, 0.12), transparent 60%),
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(184, 152, 44, 0.06), transparent 50%);
}
[data-theme="light"] body.v3 em,
[data-theme="light"] .v3-hero-title em,
[data-theme="light"] .v3-section-title em,
[data-theme="light"] .v3-cta-title em { color: var(--gold-dark); }
[data-theme="light"] .v3-mono-label,
[data-theme="light"] .v3-section-head .v3-mono-label,
[data-theme="light"] .v3-approach-sticky .v3-mono-label,
[data-theme="light"] .v3-faq-side .v3-mono-label,
[data-theme="light"] .v3-contact-info .v3-mono-label,
[data-theme="light"] .v3-quote-inner .v3-mono-label,
[data-theme="light"] .v3-founder-side .v3-mono-label,
[data-theme="light"] .v3-guarantee-inner .v3-mono-label,
[data-theme="light"] .v3-cta-band .v3-mono-label,
[data-theme="light"] .v3-footer-cols .v3-mono-label,
[data-theme="light"] .v3-hook-card-num,
[data-theme="light"] .v3-approach-num,
[data-theme="light"] .v3-announce-label { color: var(--gold-dark); }
[data-theme="light"] .v3-hook-tag,
[data-theme="light"] .v3-bento-tag { color: var(--gold-dark); }
[data-theme="light"] .v3-bento-card-icon { color: var(--gold-dark); }
[data-theme="light"] .v3-partner-list li .icon,
[data-theme="light"] .v3-bento-card-list .icon,
[data-theme="light"] .v3-contact-method .icon { color: var(--gold-dark); }
[data-theme="light"] .v3-pull,
[data-theme="light"] .v3-founder-note { border-left-color: var(--gold-dark); }
[data-theme="light"] .v3-founder-note a,
[data-theme="light"] .v3-faq-body a,
[data-theme="light"] .v3-section-sub a,
[data-theme="light"] .v3-hook-foot a { color: var(--gold-dark); }
[data-theme="light"] .v3-btn-primary { background: var(--gold-dark); border-color: var(--gold-dark); color: #ffffff; }
[data-theme="light"] .v3-btn-primary:hover { background: var(--gold); border-color: var(--gold); }
[data-theme="light"] body.v3 .nav-cta.v3-nav-cta { background: var(--gold-dark); color: #ffffff; }
[data-theme="light"] body.v3 .nav-cta.v3-nav-cta:hover { background: var(--gold); }
[data-theme="light"] .v3-tools-track span:nth-child(2n) { color: var(--gold-dark); }
[data-theme="light"] .v3-faq-item[open] { border-color: var(--gold-dark); }
[data-theme="light"] .v3-faq-item[open] .v3-faq-plus { color: var(--gold-dark); }
[data-theme="light"] .v3-faq-item summary:hover { color: var(--gold-dark); }
[data-theme="light"] .v3-bento-card:hover,
[data-theme="light"] .v3-partner-card:hover,
[data-theme="light"] .v3-hook-card:hover,
[data-theme="light"] .v3-contact-method:hover { border-color: var(--gold-dark); }
[data-theme="light"] .v3-bento-card:hover::before { background: linear-gradient(135deg, var(--gold-dark), transparent 60%); }
[data-theme="light"] .v3-sticky-bar-dot { background: var(--gold-dark); box-shadow: 0 0 12px var(--gold-dark); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .v3-tools-track { animation: none; }
    .v3-announce-dot, .v3-sticky-bar-dot { animation: none; }
    .v3-bento-card:hover, .v3-partner-card:hover, .v3-hook-card:hover, .v3-contact-method:hover { transform: none; }
    .v3-rotator-text { transition: opacity 0.01s; }
    .v3-btn:hover .icon, .v3-bento-cta:hover .icon { transform: none; }
}

/* Hide old style.css patterns we replaced */
body.v3 .hero-bg, body.v3 .tools-section, body.v3 .tools-marquee:not(.v3-tools-marquee), body.v3 .services-grid-wrapper, body.v3 .why-us, body.v3 .testimonials, body.v3 .about, body.v3 .partner-band, body.v3 .founder, body.v3 .faq, body.v3 .cross-brand, body.v3 .contact, body.v3 .footer { display: none; }

/* Make sure the existing rotating-text from style.css doesn't show */
body.v3 .hero-rotating-wrapper, body.v3 .hero-static, body.v3 .hero-rotating { display: none; }
