@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0f1a2e;
    --navy-mid: #1a2744;
    --slate: #2d3a52;
    --blue: #2563eb;
    --blue-soft: #3b82f6;
    --blue-glow: rgba(37, 99, 235, 0.12);
    --amber: #e8a020;
    --amber-soft: #fbbf24;
    --amber-glow: rgba(232, 160, 32, 0.1);
    --green: #059669;
    --green-soft: #10b981;
    --red-yt: #ff0033;
    --cream: #faf8f5;
    --warm-white: #fefdfb;
    --sand: #f0ece4;
    --sand-mid: #e6e0d4;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #7a7a7a;
    --text-light: #a3a3a3;
    --card-bg: #ffffff;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.04);
    --shadow: 0 2px 8px rgba(15, 26, 46, 0.06), 0 1px 2px rgba(15, 26, 46, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 26, 46, 0.08), 0 2px 4px rgba(15, 26, 46, 0.04);
    --shadow-lg: 0 8px 32px rgba(15, 26, 46, 0.1), 0 2px 8px rgba(15, 26, 46, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(15, 26, 46, 0.12), 0 4px 12px rgba(15, 26, 46, 0.06);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════
   NAV — floating, glassmorphic
   ═══════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0;
}

.nav-bar {
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-soft) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'DM Serif Display', serif;
    box-shadow: 0 2px 8px rgba(232, 160, 32, 0.3);
}

.nav-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* ═══════════════════════════════════════
   HERO — editorial, dramatic
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    padding: 80px 0 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(232, 160, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 160, 32, 0.3) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(232, 160, 32, 0.12);
    border: 1px solid rgba(232, 160, 32, 0.2);
    border-radius: 100px;
    color: var(--amber-soft);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--amber-soft);
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 540px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 140px;
}

.hero-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════ */
.request-section {
    padding: 56px 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    position: relative;
}

.section-header {
    margin-bottom: 28px;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.request-form {
    max-width: 680px;
    background: var(--card-bg);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 140px;
}

.form-group-main {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
}

.form-group input::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px var(--blue-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--slate);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-sm {
    padding: 7px 16px;
    font-size: 0.78rem;
    border-radius: 8px;
}

.btn-buy {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-buy:hover {
    background: var(--amber-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.25);
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid;
}

.alert-ok {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* ═══════════════════════════════════════
   EPISODES — editorial grid
   ═══════════════════════════════════════ */
.episodes-section {
    padding: 64px 0 72px;
}

.episodes-section .section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 36px;
}

.episodes-section .section-header h2 {
    font-size: 1.8rem;
}

.episode-count {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 400;
    padding: 3px 10px;
    background: var(--sand);
    border-radius: 100px;
}

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

@media (min-width: 860px) {
    .episodes-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 1300px) {
    .episodes-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.episode-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.episode-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.episode-card-body {
    padding: 28px;
}

.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episode-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.price-range {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: 400;
}

.price-range::before {
    content: '';
    width: 14px;
    height: 1.5px;
    background: var(--sand-mid);
    display: inline-block;
}

.episode-date {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-top: 20px;
    text-align: right;
    font-weight: 400;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-done {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-done::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #10b981;
    border-radius: 50%;
}

.badge-pending {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Video container */
.video-container {
    border-radius: var(--radius);
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.video-container video {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.yt-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--red-yt);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.yt-link::before {
    content: '▶';
    font-size: 0.55rem;
}

.yt-link:hover {
    background: rgba(255, 0, 51, 0.06);
}

/* ─── Products toggle ─── */
.products-details {
    margin-top: 16px;
}

.products-summary {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.products-summary::-webkit-details-marker { display: none; }

.products-summary::before {
    content: '▸';
    font-size: 0.7rem;
    transition: transform 0.2s;
}

details[open] .products-summary::before {
    transform: rotate(90deg);
}

.products-summary:hover { color: var(--text-dark); }

/* ─── Product cards ─── */
.products-list {
    display: grid;
    gap: 1px;
    margin-top: 8px;
    background: var(--sand);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--sand);
}

.product-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    background: var(--warm-white);
    transition: var(--transition);
}

.product-item:hover {
    background: #fff;
}

.product-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    border: 1px solid var(--sand);
}

.product-info {
    min-width: 0;
}

.product-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--blue);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    font-size: 0.82rem;
}

.product-price {
    font-weight: 700;
    color: var(--green);
}

.product-rating {
    color: var(--text-muted);
    font-weight: 400;
}

.product-rating::before {
    content: '★ ';
    color: var(--amber);
}

.product-actions {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PENDING SECTION
   ═══════════════════════════════════════ */
.pending-section {
    padding: 56px 0;
    background: var(--warm-white);
    border-top: 1px solid var(--sand);
}

.pending-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 680px;
}

.pending-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--sand);
    border-radius: var(--radius);
    flex-wrap: wrap;
    transition: var(--transition);
}

.pending-item:hover {
    border-color: var(--sand-mid);
    box-shadow: var(--shadow-sm);
}

.pending-query {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    font-size: 0.92rem;
}

.pending-price {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 400;
}

.pending-by {
    color: var(--text-light);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 400;
}

/* ═══════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════ */
.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 56px 24px;
    font-size: 0.95rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--sand-mid);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 160, 32, 0.2) 50%, transparent 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 480px;
    line-height: 1.6;
    text-align: right;
}

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

.hero-content { animation: fadeUp 0.6s ease-out; }
.hero-stats { animation: fadeUp 0.6s ease-out 0.15s both; }
.request-form { animation: fadeUp 0.5s ease-out 0.1s both; }

.episode-card {
    animation: fadeUp 0.5s ease-out both;
}

.episode-card:nth-child(1) { animation-delay: 0.05s; }
.episode-card:nth-child(2) { animation-delay: 0.1s; }
.episode-card:nth-child(3) { animation-delay: 0.15s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TV / Large screens (≥1400px)
   ═══════════════════════════════════════ */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
    body { font-size: 1.05rem; }
    .hero { padding: 100px 0 88px; }
    .hero h1 { font-size: 3.6rem; }
    .hero-desc { font-size: 1.2rem; max-width: 620px; }
    .hero-stats { gap: 0; margin-top: 52px; }
    .hero-stat-num { font-size: 3.4rem; }
    .hero-stat-label { font-size: 0.92rem; }
    .hero-badge { font-size: 0.82rem; padding: 8px 18px; }
    .nav-inner { height: 68px; }
    .logo { font-size: 1.5rem; }
    .logo-icon { width: 38px; height: 38px; font-size: 1rem; }
    .nav-tagline { font-size: 0.88rem; }
    .nav-cta { padding: 10px 22px; font-size: 0.88rem; }
    section { padding: 64px 0; }
    .section-header h2 { font-size: 1.9rem; }
    .episodes-section .section-header h2 { font-size: 2.1rem; }
    .episodes-grid { gap: 40px; }
    .episode-card-body { padding: 36px; }
    .episode-card h3 { font-size: 1.55rem; }
    .video-container video { max-height: 560px; }
    .product-item { padding: 18px 22px; gap: 20px; }
    .product-img { width: 88px; height: 88px; }
    .product-title { font-size: 0.95rem; }
    .product-meta { font-size: 0.88rem; }
    .btn { padding: 14px 32px; font-size: 0.95rem; }
    .btn-sm { padding: 9px 20px; font-size: 0.84rem; }
    .form-group input { padding: 14px 18px; font-size: 1rem; }
    .request-form { padding: 36px; max-width: 760px; }
    .pending-list { max-width: 760px; }
    .pending-item { padding: 18px 24px; }
    .pending-query { font-size: 1rem; }
    footer { padding: 52px 0 44px; }
    .footer-brand { font-size: 1.25rem; }
}

/* Extra-large TV screens (≥1920px) — 10-foot UI */
@media (min-width: 1920px) {
    .container { max-width: 1560px; }
    body { font-size: 1.15rem; }
    .hero { padding: 120px 0 100px; }
    .hero h1 { font-size: 4.2rem; }
    .hero-desc { font-size: 1.35rem; max-width: 700px; }
    .hero-stat-num { font-size: 3.8rem; }
    .nav-inner { height: 76px; }
    .logo { font-size: 1.7rem; }
    .logo-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
    .episodes-section .section-header h2 { font-size: 2.4rem; }
    .episode-card h3 { font-size: 1.75rem; }
    .episode-card-body { padding: 44px; }
    .video-container video { max-height: 680px; }
    .product-img { width: 100px; height: 100px; border-radius: 10px; }
    .product-title { font-size: 1.05rem; }
    .btn { padding: 16px 36px; font-size: 1.02rem; border-radius: 12px; }
    .btn-sm { padding: 10px 24px; font-size: 0.9rem; }
    .badge { font-size: 0.78rem; padding: 6px 16px; }
    .form-group input { padding: 16px 20px; font-size: 1.08rem; border-radius: 12px; }
    .request-form { padding: 44px; border-radius: 24px; }
    .section-header h2 { font-size: 2.1rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (≤768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .hero-stat-num { font-size: 2.2rem; }
    .nav-tagline { display: none; }
    .nav-cta { display: none; }
    .form-row { flex-direction: column; }
    .form-group { min-width: 100%; }
    .request-form { padding: 20px; }
    .episode-card-body { padding: 20px; }
    .episode-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .product-item {
        grid-template-columns: 56px 1fr;
        gap: 12px;
    }
    .product-actions { grid-column: 1 / -1; }
    .product-img { width: 56px; height: 56px; }
    .footer-inner { flex-direction: column; }
    .disclaimer { text-align: left; }
    .episodes-section .section-header { flex-direction: column; gap: 4px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (≤480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .hero { padding: 40px 0 36px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-desc { font-size: 0.95rem; }
    .container { padding: 0 16px; }
    .episode-card h3 { font-size: 1.15rem; }
    .pending-item { padding: 12px 14px; }
    .hero-stats { gap: 0; }
    .hero-stat-num { font-size: 1.8rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .product-item { padding: 12px; }
    .btn { padding: 12px 22px; width: 100%; }
    .btn-sm { width: auto; }
}
