:root {
    color-scheme: dark;
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-hover: #1e1e1e;
    --accent: #ff5e3a;
    --accent-glow: rgba(255, 94, 58, 0.25);
    --text-primary: #f0ece4;
    --text-muted: #6b6560;
    --text-dim: #3d3a37;
    --border: #222;
    --nav-bg: rgba(10, 10, 10, 0.82);
    --media-overlay: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    --reel-overlay: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
    --button-text: #0a0a0a;
    --play-icon: #0a0a0a;
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg: #f7f1e8;
    --surface: #fffaf2;
    --surface-hover: #f0e6d8;
    --accent: #d94f31;
    --accent-glow: rgba(217, 79, 49, 0.22);
    --text-primary: #18110d;
    --text-muted: #6f625a;
    --text-dim: #9b8d82;
    --border: #ded0c2;
    --nav-bg: rgba(247, 241, 232, 0.86);
    --media-overlay: linear-gradient(to top, rgba(24,17,13,0.72) 0%, transparent 60%);
    --reel-overlay: linear-gradient(to top, rgba(24,17,13,0.68) 0%, transparent 50%);
    --button-text: #fffaf2;
    --play-icon: #fffaf2;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'DM Mono', monospace;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.35s ease, color 0.35s ease;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.platform-card,
.video-card,
.reel-card,
.about-img,
.theme-toggle,
.theme-toggle-track,
.cta-btn {
    transition-property: background-color, border-color, color, transform, box-shadow, letter-spacing;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(to bottom, var(--nav-bg), transparent);
    backdrop-filter: blur(8px);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span { color: var(--accent); }

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}

.theme-toggle {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 0.35rem 0.7rem 0.35rem 0.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    border-color: var(--accent);
    outline: none;
}

.theme-toggle-track {
    width: 38px;
    height: 20px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--border);
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 2px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.theme-toggle-track::before,
.theme-toggle-track::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    line-height: 1;
    opacity: 0.6;
}

.theme-toggle-track::before {
    content: '☾';
    left: 6px;
}

.theme-toggle-track::after {
    content: '☀';
    right: 5px;
}

.theme-toggle-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
    z-index: 1;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

:root[data-theme="light"] .theme-toggle-thumb {
    transform: translateX(18px);
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    margin-top: 2rem;
    max-width: 480px;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.7s;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.9s;
}

.stat-item {
    border-left: 1px solid var(--border);
    padding-left: 1.2rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.15rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1.2s;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--text-dim);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ── SECTIONS ── */
section {
    padding: 6rem 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
}

.section-header h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.section-tag {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ── SOCIAL PLATFORMS ── */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.platform-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.platform-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.platform-card:hover::before { transform: scaleX(1); }

.platform-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.platform-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

.platform-handle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.platform-followers {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 1.5rem;
}

.platform-followers strong {
    color: var(--text-primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    margin-bottom: 0.15rem;
}

/* ── VIDEO GRID ── */
.videos-section {
    background: var(--bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover { border-color: var(--accent); }

.video-card.large { grid-column: span 7; }
.video-card.medium { grid-column: span 5; }
.video-card.small { grid-column: span 4; }

.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.6s ease;
    overflow: hidden;
}

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

.video-card:hover .video-thumb-inner { transform: scale(1.05); }

.video-overlay {
    position: absolute;
    inset: 0;
    background: var(--media-overlay);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.video-card:hover .video-overlay { opacity: 1; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--play-icon);
    margin-left: 3px;
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-info {
    padding: 1.2rem 1.5rem;
}

.video-platform-tag {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.6rem;
}

.video-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.video-meta {
    font-size: 0.7rem;
    color: var(--text-dim);
}

.video-meta span { color: var(--text-muted); }

/* ── FEATURED REEL ── */
.reel-section {
    padding: 6rem 3rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reel-grid {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--text-dim) transparent;
}

.reel-grid::-webkit-scrollbar { height: 4px; }
.reel-grid::-webkit-scrollbar-track { background: transparent; }
.reel-grid::-webkit-scrollbar-thumb { background: var(--text-dim); border-radius: 2px; }

.reel-card {
    flex: 0 0 200px;
    aspect-ratio: 9/16;
    background: #000;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.reel-card:hover {
    transform: translateY(-8px);
}

.reel-card iframe {
    width: calc(100% + 80px);
    height: calc(100% + 160px);
    margin-top: -60px;
    margin-left: -40px;
    border: 0;
}

/* ── ABOUT STRIP ── */
.about-strip {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text h3 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.about-img {
    aspect-ratio: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: border-color 0.3s ease;
}

.about-img:hover { border-color: var(--accent); }

.about-img:nth-child(2) { margin-top: 2rem; }

/* ── CTA FOOTER ── */
.cta-footer {
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-footer::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-footer h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-footer h2 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--accent);
}

.cta-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--button-text);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: letter-spacing 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cta-btn:hover {
    letter-spacing: 0.3em;
    box-shadow: 0 0 40px var(--accent-glow);
}

/* ── FOOTER ── */
footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.15em;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

footer a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .video-card.large,
    .video-card.medium,
    .video-card.small { grid-column: span 12; }
    .about-strip { grid-template-columns: 1fr; gap: 2rem; }
    .about-img:nth-child(2) { margin-top: 0; }
    .hero-stats { gap: 2rem; }
    .reel-card { flex: 0 0 160px; }
    .reel-card iframe { width: calc(100% + 100px); margin-left: -50px; }
    nav ul { gap: 1.5rem; }
    .theme-toggle-text { display: none; }
    .theme-toggle { padding-right: 0.35rem; }
    .scroll-indicator { left: 1.5rem; }
    .reel-section { padding: 4rem 1.5rem; }
    .cta-footer { padding: 5rem 1.5rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
    nav ul { display: none; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .platforms-grid { grid-template-columns: 1fr; }
    .scroll-indicator { position: static; margin-top: 3rem; }
}
