/* ============================================================
   THINKAVARIUM — Full Design System
   Child theme of Astra | Matches static prototype exactly
   ============================================================ */

/* ── Custom Font Faces ──────────────────────────────────────── */
@font-face {
    font-family: 'Octin Stencil';
    src: url('../fonts/OctinStencilFree.woff2') format('woff2'),
         url('../fonts/OctinStencilFree.woff') format('woff'),
         url('../fonts/OctinStencilFree.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Eurostile Extended';
    src: url('../fonts/EurostileExtended.woff2') format('woff2'),
         url('../fonts/EurostileExtended.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Eurostile Extended';
    src: url('../fonts/EurostileExtendedBold.woff2') format('woff2'),
         url('../fonts/EurostileExtendedBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    --bg:           #09090b;
    --bg-2:         #111114;
    --bg-3:         #1a1a1e;
    --bg-card:      #141417;
    --bg-card-h:    #1c1c21;

    --gold:         #d4a853;
    --gold-bright:  #f0c96b;
    --gold-dim:     #a07d3a;
    --teal:         #2dd4bf;
    --teal-bright:  #5eead4;
    --teal-dim:     #1a8a7a;
    --blue:         #38bdf8;
    --red:          #e84545;

    --text:         #e8e8ec;
    --text-2:       #94949e;
    --text-3:       #5c5c6a;

    --border:       rgba(255,255,255,0.05);
    --border-2:     rgba(255,255,255,0.10);
    --border-gold:  rgba(212,168,83,0.3);
    --border-teal:  rgba(45,212,191,0.25);

    --grad-hero:    linear-gradient(135deg,#09090b 0%,#0d1a1f 40%,#0a1215 70%,#09090b 100%);
    --grad-card:    linear-gradient(145deg,#141417 0%,#0f0f12 100%);
    --grad-gold:    linear-gradient(135deg,#d4a853,#f0c96b);
    --grad-teal:    linear-gradient(135deg,#1a8a7a,#2dd4bf);

    --nav-h:        72px;
    --container:    1400px;
    --pad:          24px;
    --radius:       10px;
    --ease:         0.3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── NUCLEAR DARK MODE — overrides every Astra background ──── */
html,
body,
#page,
.site,
.ast-container,
.ast-flex-1,
.ast-separate-container,
.ast-separate-container .ast-article-post,
.ast-separate-container .entry-content,
.site-content,
#content,
#primary,
#secondary,
.widget-area,
.ast-right-sidebar,
.ast-left-sidebar,
.ast-separate-container .ast-article-inner,
.ast-plain-container,
.ast-no-sidebar #primary,
main,
main.site-main,
.site-main {
    background: var(--bg) !important;
    background-color: var(--bg) !important;
}

/* Remove Astra's inline background on body added via customizer */
body { background-color: #09090b !important; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) var(--bg-2);
    background: var(--bg) !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg) !important;
    color: var(--text) !important;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--nav-h);
}

::-webkit-scrollbar            { width: 8px; }
::-webkit-scrollbar-track      { background: var(--bg-2); }
::-webkit-scrollbar-thumb      { background: var(--gold-dim); border-radius: 4px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Container ──────────────────────────────────────────────── */
.think-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ── Buttons ────────────────────────────────────────────────── */
.think-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
    border: none;
    white-space: nowrap;
    text-decoration: none;
}
.think-btn-gold {
    background: var(--grad-gold);
    color: #09090b;
}
.think-btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(212,168,83,0.2);
    color: #09090b;
}
.think-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid transparent;
}
.think-btn-ghost:hover {
    background: rgba(255,255,255,0.10);
    color: var(--text);
}
.think-btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-2);
}
.think-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.think-btn-lg  { padding: 14px 36px; font-size: 16px; border-radius: 8px; }
.think-btn-sm  { padding: 7px 16px; font-size: 13px; }
.think-btn-full { width: 100%; justify-content: center; }

/* ── Text helpers ───────────────────────────────────────────── */
.think-gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section basics ─────────────────────────────────────────── */
.think-section        { padding: 80px 0; }
.think-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.think-section-header.think-center { justify-content: center; flex-direction: column; text-align: center; gap: 8px; }
.think-section-title {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
}
.think-section-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}
.think-section-link:hover { color: var(--gold-bright); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.think-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--ease);
}
.think-nav.think-nav-scrolled {
    background: rgba(10,10,15,0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.think-nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.think-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}
.think-logo-img { height: 40px; width: auto; }
.think-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.think-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.think-logo-text {
    font-family: 'Octin Stencil','Eurostile Extended','Inter',sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(180deg,#d0d0d0 0%,#a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Desktop nav links */
.think-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.think-nav-links .think-menu,
.think-nav-links ul.think-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.think-menu a,
.think-menu-item,
.think-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
    display: block;
}
.think-menu a:hover,
.think-menu .current-menu-item > a,
.think-menu-item:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.think-nav-cta {
    background: var(--grad-gold) !important;
    color: #09090b !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}
.think-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(212,168,83,0.2);
}

/* Nav actions (right side) */
.think-nav-actions { display: flex; align-items: center; gap: 8px; }
.think-nav-icon-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    background: transparent;
    color: var(--text-2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}
.think-nav-icon-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Search bar */
.think-search-bar {
    background: rgba(10,10,15,0.97);
    border-top: 1px solid var(--border);
    padding: 12px var(--pad);
}
.think-search-bar[hidden] { display: none; }
.think-search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
}
.think-search-input {
    flex: 1;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}
.think-search-input:focus { outline: none; border-color: var(--gold); }
.think-search-submit {
    background: var(--grad-gold);
    color: #09090b;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    cursor: pointer;
    display: flex; align-items: center;
}

/* Mobile toggle */
.think-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.think-mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-2);
    border-radius: 1px;
    transition: all 0.3s;
    display: block;
}
.think-mobile-toggle.think-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.think-mobile-toggle.think-open span:nth-child(2) { opacity: 0; }
.think-mobile-toggle.think-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.think-mobile-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(9,9,11,0.98);
    z-index: 999;
    display: none;
    padding: 32px var(--pad);
}
.think-mobile-menu[aria-hidden="false"] { display: block; }
.think-mobile-nav { list-style: none; }
.think-mobile-nav a,
.think-mobile-nav .think-menu-item {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-2);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s;
}
.think-mobile-nav a:hover { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.think-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
}
.think-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
}
.think-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(45,212,191,0.08), transparent),
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(56,189,248,0.06), transparent);
}
.think-hero-particles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.think-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: think-particle-float 8s infinite;
}
@keyframes think-particle-float {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}
.think-hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
    width: 100%;
}
.think-hero-content { max-width: 620px; flex-shrink: 0; }

/* Badge */
.think-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212,168,83,0.10);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.think-hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: think-pulse 2s infinite;
}
@keyframes think-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Hero title */
.think-hero-title {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}
.think-hero-desc {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.think-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.think-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.think-hero-stat-number {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}
.think-hero-stat-label {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 2px;
}

/* Hero preview card (right side) */
.think-hero-preview { flex: 0 0 520px; }
.think-hero-card {
    display: block;
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 60px rgba(0,0,0,0.6);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    text-decoration: none;
}
.think-hero-card:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.think-hero-card-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg,#0c1517,#142428,#0c1517);
    position: relative;
    overflow: hidden;
}
.think-hero-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.think-hero-thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#0c1517,#142428,#0c1517);
}
.think-hero-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 72px; height: 72px;
    background: rgba(212,168,83,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #09090b;
    box-shadow: 0 0 40px rgba(212,168,83,0.3);
    transition: all 0.3s;
}
.think-hero-card:hover .think-hero-play {
    transform: translate(-50%,-50%) scale(1.08);
    box-shadow: 0 0 60px rgba(212,168,83,0.5);
}
.think-hero-card-info { padding: 20px 24px; }
.think-hero-card-channel {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal-bright);
    margin-bottom: 8px;
}
.think-hero-card-title {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.think-hero-card-meta {
    font-size: 13px;
    color: var(--text-3);
    display: flex;
    gap: 16px;
}

/* ============================================================
   LATEST RELEASES — Horizontal scroll
   ============================================================ */
.think-section-releases { background: var(--bg); padding: 60px 0; }
.think-scroll-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.think-scroll-row::-webkit-scrollbar { height: 4px; }
.think-scroll-row::-webkit-scrollbar-track { background: transparent; }
.think-scroll-row::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* Video cards (shared by homepage + archive) */
.think-video-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform var(--ease);
    text-decoration: none;
    color: inherit;
}
.think-video-card:hover { transform: translateY(-4px); color: inherit; }
.think-video-card-link { text-decoration: none; color: inherit; display: block; }

.think-video-thumb {
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
    background: var(--bg-3);
}
.think-video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.think-video-card:hover .think-video-thumb img { transform: scale(1.04); }
.think-thumb-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg,#0c1517,#142428,#0c1517);
}
.think-thumb-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity var(--ease);
}
.think-video-card:hover .think-thumb-overlay { opacity: 1; }
.think-play-btn-sm {
    width: 48px; height: 48px;
    background: rgba(212,168,83,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #09090b;
}
.think-thumb-duration {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.8);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px; font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
}
.think-thumb-lock {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.75);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px; font-weight: 600;
    color: var(--gold);
    display: flex; align-items: center; gap: 4px;
}
.think-thumb-exclusive {
    position: absolute; top: 10px; left: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px; font-weight: 600;
}
.think-video-card-title {
    font-size: 15px; font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.think-video-card-meta {
    font-size: 13px;
    color: var(--text-3);
    display: flex; gap: 10px;
}
.think-video-card-channel { font-weight: 500; }

/* ============================================================
   VALUE PROPOSITION
   ============================================================ */
.think-value-section {
    padding: 80px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.think-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.think-value-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--ease);
}
.think-value-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 0 30px rgba(212,168,83,0.08);
    transform: translateY(-2px);
}
.think-value-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.think-icon-gold  { background: rgba(212,168,83,0.15); }
.think-icon-teal  { background: rgba(45,212,191,0.12); }
.think-icon-blue  { background: rgba(56,189,248,0.12); }
.think-icon-teal2 { background: rgba(45,212,191,0.10); }

.think-value-card h3 {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 17px; margin-bottom: 10px;
}
.think-value-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* YouTube migration banner */
.think-migration-banner {
    background: linear-gradient(135deg,rgba(232,69,69,0.08),rgba(212,168,83,0.08));
    border: 1px solid rgba(232,69,69,0.2);
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.think-migration-content h3 {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 20px; margin-bottom: 6px;
}
.think-migration-content p { font-size: 14px; color: var(--text-2); }
.think-coupon-code {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212,168,83,0.10);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
}

/* ============================================================
   CHANNELS GRID
   ============================================================ */
.think-channels-section { padding: 80px 0; background: var(--bg); }
.think-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.think-channel-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all var(--ease);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.think-channel-card:hover {
    border-color: var(--ch-color, var(--teal));
    box-shadow: 0 0 30px rgba(45,212,191,0.08);
    transform: translateY(-2px);
    color: inherit;
}
.think-channel-card-top {
    display: flex; align-items: center; gap: 16px;
}
.think-channel-logo {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.think-channel-logo-placeholder {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 2px solid;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 18px;
    font-weight: 700;
}
.think-channel-name {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 16px; font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.think-channel-count { font-size: 13px; color: var(--text-3); }
.think-channel-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.think-channel-cta { font-size: 13px; font-weight: 600; margin-top: auto; }

/* ============================================================
   PRICING
   ============================================================ */
.think-pricing-section {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}
.think-pricing-subtitle { color: var(--text-2); font-size: 16px; margin-top: 8px; }
.think-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 48px auto 0;
}
.think-pricing-card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all var(--ease);
}
.think-pricing-card:hover { transform: translateY(-3px); }
.think-pricing-featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212,168,83,0.12);
}
.think-pricing-popular {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #09090b;
    font-size: 11px; font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.think-pricing-name {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 20px; font-weight: 600;
    margin-bottom: 8px;
}
.think-pricing-price {
    font-size: 48px; font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.think-pricing-price span {
    font-size: 16px; font-weight: 400; color: var(--text-3);
}
.think-pricing-desc { font-size: 14px; color: var(--text-3); margin-bottom: 24px; }
.think-pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}
.think-pricing-features li {
    padding: 8px 0;
    font-size: 14px; color: var(--text-2);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--border);
}
.think-pricing-features li:last-child { border-bottom: none; }
.think-pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   YOUTUBE UTM BANNER (footer injection)
   ============================================================ */
.think-yt-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg,rgba(9,9,11,0.97),rgba(17,17,20,0.97));
    border-top: 1px solid rgba(232,69,69,0.3);
    z-index: 990;
    padding: 12px var(--pad);
}
.think-yt-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.think-yt-icon { font-size: 20px; color: var(--red); flex-shrink: 0; }
.think-yt-content { flex: 1; font-size: 14px; }
.think-yt-content strong { color: var(--text); }
.think-yt-code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
    background: rgba(212,168,83,0.1);
    padding: 1px 8px;
    border-radius: 4px;
}
.think-yt-close {
    background: none; border: none; color: var(--text-3);
    font-size: 18px; cursor: pointer; padding: 4px 8px;
    transition: color 0.15s;
    flex-shrink: 0;
}
.think-yt-close:hover { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.think-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}
.think-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.think-footer-brand .think-logo { margin-bottom: 16px; }
.think-footer-brand p {
    font-size: 14px; color: var(--text-3);
    line-height: 1.7; max-width: 280px;
}
.think-footer-social {
    display: flex; gap: 12px; margin-top: 16px;
}
.think-social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3);
    transition: all 0.15s;
}
.think-social-link:hover { border-color: var(--gold); color: var(--gold); }

.think-footer-col h4 {
    font-family: 'Eurostile Extended','Inter',sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-2);
    margin-bottom: 16px;
}
.think-footer-col a, .think-footer-col nav a {
    display: block;
    font-size: 14px; color: var(--text-3);
    padding: 4px 0;
    transition: color 0.15s;
}
.think-footer-col a:hover { color: var(--gold); }

.think-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px; color: var(--text-3);
    flex-wrap: wrap; gap: 8px;
}
.think-footer-tagline { color: var(--text-3); font-style: italic; }

/* ============================================================
   PAGE WRAPPER (content area)
   ============================================================ */
.think-page-wrapper { min-height: calc(100vh - var(--nav-h)); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .think-hero-preview { display: none; }
    .think-hero-layout  { justify-content: center; }
    .think-hero-content { max-width: 100%; }
    .think-footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .think-nav-links   { display: none; }
    .think-mobile-toggle { display: flex; }

    .think-hero-title  { font-size: 34px; }
    .think-hero-desc   { font-size: 16px; }
    .think-hero-stats  { gap: 24px; }

    .think-value-grid  { grid-template-columns: 1fr; }
    .think-pricing-grid { grid-template-columns: 1fr; }
    .think-channels-grid { grid-template-columns: 1fr; }

    .think-migration-banner { flex-direction: column; align-items: flex-start; padding: 24px; }

    .think-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .think-footer-bottom { flex-direction: column; text-align: center; }

    .think-section { padding: 48px 0; }
    body { padding-top: var(--nav-h); }
}

@media (max-width: 480px) {
    .think-hero-actions { flex-direction: column; }
    .think-btn-lg { width: 100%; justify-content: center; }
    :root { --pad: 16px; }
}

/* ============================================================
   ASTRA COMPATIBILITY — suppress Astra default elements
   ============================================================ */

/* Hide Astra's header entirely — we use think-nav */
.ast-header-break-point .main-header-bar,
.ast-header-break-point .main-header-bar-wrap,
.main-header-bar,
.main-header-bar-wrap,
#masthead,
.site-header,
.astra-hfb-header,
header.site-header {
    display: none !important;
}

/* Hide Astra's footer entirely — we use think-footer */
.site-footer,
.footer-widget-area,
.ast-footer-widget-area,
footer.ast-footer-copyright,
.footer-bar-wrap,
#colophon {
    display: none !important;
}

/* Remove Astra container constraints so our layouts run edge-to-edge */
.ast-container { max-width: 100% !important; padding: 0 !important; }
.ast-separate-container .ast-article-post { padding: 0 !important; background: transparent !important; }
.ast-plain-container, .ast-no-sidebar .ast-article-post { padding: 0 !important; }

/* Hide default WP blog post header & breadcrumbs */
.entry-header,
.ast-breadcrumbs-wrapper,
.ast-above-post-title,
.ast-blog-single-element { display: none !important; }

/* Force all text to light colours so nothing is invisible on dark bg */
p, li, span, div, h1, h2, h3, h4, h5, h6, a:not(.think-btn) {
    color: inherit;
}

/* Prevent Astra adding white sidebar backgrounds */
.ast-right-sidebar #secondary,
.ast-left-sidebar #secondary {
    background: transparent !important;
    border: none !important;
}
