/* ============================================
   STOCKS SENA — Vintage Indian Ad Aesthetic
   ============================================ */

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

/* ---------- Variables ---------- */
:root {
    /* Colors */
    --cream: #FAF0E4;
    --cream-dark: #F0E4D0;
    --black: #1A1A1A;
    --black-soft: #2E2E2E;
    --red: #C84B31;
    --red-dark: #A83A24;
    --mustard: #D4A853;
    --mustard-dark: #B8903E;
    --blue: #2D5F8A;
    --blue-dark: #1E4566;
    --grey: #8A8478;
    --grey-light: #C4BAA8;
    --white: #FFFDF9;
    --discord: #5865F2;

    /* Typography */
    --font-display: 'DM Serif Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --font-accent: 'Archivo Black', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;

    /* Misc */
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-card: 4px 4px 0px var(--black);
    --shadow-card-hover: 6px 6px 0px var(--black);
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Grain Overlay ---------- */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---------- Container ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--cream-dark);
    padding: 0.35rem 1rem;
    border: 2px solid var(--black);
    border-radius: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.text--red { color: var(--red); }
.text--blue { color: var(--blue); }
.text--mustard { color: var(--mustard); }

/* ---------- Language Toggle ---------- */
.lang-toggle {
    display: flex;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 2px 2px 0px var(--black);
    flex-shrink: 0;
}

.lang-toggle__btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--black);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.lang-toggle__btn--active {
    background: var(--black);
    color: var(--cream);
}

.lang-toggle__btn:not(.lang-toggle__btn--active):hover {
    background: var(--cream-dark);
}

/* Hindi mode — use Devanagari font for body */
body.lang-hi {
    font-family: var(--font-hindi), var(--font-body);
}

body.lang-hi h1, body.lang-hi h2, body.lang-hi h3, body.lang-hi h4 {
    font-family: var(--font-hindi), var(--font-display);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border: 3px solid var(--black);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.btn--primary:hover {
    background: var(--red-dark);
    box-shadow: var(--shadow-card-hover);
    transform: translate(-2px, -2px);
}

.btn--outline {
    background: transparent;
    color: var(--black);
    box-shadow: var(--shadow-card);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--cream);
    box-shadow: var(--shadow-card-hover);
    transform: translate(-2px, -2px);
}

.btn--mustard {
    background: var(--mustard);
    color: var(--black);
    box-shadow: var(--shadow-card);
}

.btn--mustard:hover {
    background: var(--mustard-dark);
    box-shadow: var(--shadow-card-hover);
    transform: translate(-2px, -2px);
}

.btn--discord {
    background: var(--discord);
    color: white;
    box-shadow: 4px 4px 0px #4752C4;
    border-color: #4752C4;
}

.btn--discord:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #4752C4;
}

.btn--full { width: 100%; justify-content: center; }
.btn--large { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 3px solid var(--black);
    transition: box-shadow var(--transition);
}

.nav--scrolled {
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.1);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav__logo-img {
    height: 80px;
    width: auto;
    mix-blend-mode: multiply;
    margin: -14px 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--transition);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--mustard);
    padding: 0.5rem 1.15rem !important;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    box-shadow: 3px 3px 0px var(--black);
    transition: all var(--transition) !important;
}

.nav__cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--black);
}

.nav__cta::after {
    display: none !important;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
    position: relative;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 75, 49, 0.06) 0%, transparent 50%),
        var(--cream);
    overflow: hidden;
}

.hero__inner {
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(45, 95, 138, 0.08);
    border: 2px dashed var(--blue);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero__title {
    font-size: clamp(2.5rem, 6.5vw, 4.25rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero__title--accent {
    color: var(--red);
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--black-soft);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero__sub em {
    color: var(--red);
    font-style: italic;
    font-weight: 600;
}

.hero__form {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto var(--space-sm);
}

.hero__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 3px solid var(--black);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color var(--transition);
}

.hero__input::placeholder {
    color: var(--grey-light);
}

.hero__input:focus {
    border-color: var(--red);
}

.hero__note {
    font-size: 0.8rem;
    color: var(--grey);
}

/* Torn edge */
.hero__torn-edge {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--cream);
    clip-path: polygon(
        0% 60%, 2% 40%, 5% 65%, 8% 35%, 12% 55%, 15% 30%,
        18% 60%, 22% 25%, 25% 55%, 28% 40%, 32% 65%, 35% 30%,
        38% 50%, 42% 35%, 45% 60%, 48% 25%, 52% 55%, 55% 40%,
        58% 65%, 62% 30%, 65% 50%, 68% 35%, 72% 60%, 75% 25%,
        78% 55%, 82% 40%, 85% 65%, 88% 30%, 92% 55%, 95% 40%,
        98% 60%, 100% 35%, 100% 100%, 0% 100%
    );
}

/* ============================================
   EK JHALAK — Newspaper Clippings
   ============================================ */
.jhalak {
    padding: var(--space-2xl) 0;
    background: var(--cream-dark);
    position: relative;
}

.jhalak__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.clip-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-md) var(--space-sm);
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    overflow: hidden;
}

/* Halftone dot pattern accent */
.clip-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.06;
    background-image: radial-gradient(var(--black) 1.5px, transparent 1.5px);
    background-size: 6px 6px;
    pointer-events: none;
}

.clip-card:hover {
    transform: rotate(-1deg) translate(-3px, -3px);
    box-shadow: var(--shadow-card-hover);
}

.clip-card--alt {
    transform: rotate(0.5deg);
}

.clip-card--alt:hover {
    transform: rotate(-0.5deg) translate(-3px, -3px);
}

.clip-card__tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--blue);
    background: rgba(45, 95, 138, 0.08);
    border: 1.5px solid var(--blue);
    padding: 0.2rem 0.65rem;
    margin-bottom: var(--space-sm);
}

.clip-card__title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.clip-card__text {
    font-size: 0.92rem;
    color: var(--black-soft);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.clip-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1.5px dashed var(--grey-light);
}

.clip-card__date {
    font-size: 0.75rem;
    color: var(--grey);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.clip-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

.clip-card__link:hover {
    color: var(--red-dark);
}

.clip-card__stamp {
    position: absolute;
    top: 12px;
    right: -25px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.25rem 2rem;
    transform: rotate(35deg);
}

/* ============================================
   SEEKHO — Learning Paths
   ============================================ */
.seekho {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.seekho__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.path-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.path-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-card-hover);
}

.path-card--featured {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(200, 75, 49, 0.03) 0%, var(--white) 100%);
}

.path-card__icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
}

.path-card__badge {
    position: absolute;
    top: -1px;
    right: 16px;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem;
    border: 2px solid var(--black);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
}

.path-card__badge--free {
    background: var(--cream-dark);
    color: var(--black);
}

.path-card__badge--popular {
    background: var(--red);
    color: var(--white);
    border-color: var(--red-dark);
}

.path-card__badge--premium {
    background: var(--mustard);
    color: var(--black);
}

.path-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.path-card__hindi {
    font-family: var(--font-hindi);
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: var(--space-sm);
}

.path-card__topics {
    list-style: none;
    margin-bottom: var(--space-md);
    flex: 1;
}

.path-card__topics li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed var(--grey-light);
    color: var(--black-soft);
}

.path-card__topics li:last-child {
    border-bottom: none;
}

.path-card__topics li::before {
    content: '→ ';
    color: var(--red);
    font-weight: 700;
}

.path-card__link {
    margin-top: auto;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: var(--space-2xl) 0;
    background: var(--black);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Diagonal halftone accent */
.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 200%;
    opacity: 0.03;
    background-image: radial-gradient(var(--cream) 1px, transparent 1px);
    background-size: 8px 8px;
    transform: rotate(15deg);
    pointer-events: none;
}

.newsletter .section-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--mustard);
    border-color: var(--mustard);
}

.newsletter .section-title {
    color: var(--cream);
}

.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.newsletter__text {
    font-size: 1.1rem;
    color: var(--grey-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.newsletter__features {
    list-style: none;
}

.newsletter__features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--cream-dark);
}

.newsletter__card {
    background: var(--cream);
    color: var(--black);
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: 6px 6px 0px var(--red);
}

.newsletter__card-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.newsletter__card-price {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--red);
}

.newsletter__card-price span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
}

.newsletter__card-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.newsletter__card-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--grey-light);
}

.newsletter__card-list li::before {
    content: '✓ ';
    color: var(--red);
    font-weight: 700;
}

.newsletter__card-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 3px solid var(--black);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 0.75rem;
    outline: none;
}

.newsletter__card-input:focus {
    border-color: var(--red);
}

/* ============================================
   DEKHO — YouTube
   ============================================ */
.dekho {
    padding: var(--space-2xl) 0;
    background: var(--cream-dark);
}

.dekho__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.video-card {
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-card-hover);
}

.video-card__thumb {
    width: 100%;
    aspect-ratio: auto;
    background-color: var(--cream-dark);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 220px;
}

.video-card__play {
    width: 60px;
    height: 60px;
    background: var(--red);
    border: 3px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    z-index: 2;
    transition: transform var(--transition);
}

.video-card:hover .video-card__play {
    transform: scale(1.15);
}

.video-card__duration {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: var(--black);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    z-index: 2;
}

.video-card__info {
    padding: var(--space-sm) var(--space-md);
}

.video-card__title {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.video-card__meta {
    font-size: 0.8rem;
    color: var(--grey);
}

.dekho__cta {
    text-align: center;
}

/* ============================================
   COMMUNITY
   ============================================ */
.community {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.community__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: start;
}

.community__text {
    font-size: 1.1rem;
    color: var(--black-soft);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.community__channels {
    display: grid;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.community__channel {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    box-shadow: 3px 3px 0px var(--black);
}

.community__channel-name {
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--discord);
    min-width: 170px;
}

.community__channel-desc {
    font-size: 0.85rem;
    color: var(--grey);
}

.community__socials {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}

.community__socials-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

.community__social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    box-shadow: 2px 2px 0px var(--black);
}

.social-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--black);
    background: var(--cream);
}

.social-card__icon {
    font-size: 1.25rem;
}

/* ============================================
   PREMIUM
   ============================================ */
.premium {
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.12) 0%, transparent 60%),
        var(--cream-dark);
    text-align: center;
}

.premium__inner {
    max-width: 900px;
    margin: 0 auto;
}

.premium__badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--black);
    background: var(--mustard);
    padding: 0.5rem 1.5rem;
    border: 3px solid var(--black);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-md);
}

.premium__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.premium__sub {
    font-size: 1.1rem;
    color: var(--black-soft);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.premium__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.premium__feature {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    text-align: left;
}

.premium__feature:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-card-hover);
}

.premium__feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.premium__feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.premium__feature p {
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.6;
}

.premium__coming {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--mustard-dark);
    margin-bottom: var(--space-md);
}

.premium__waitlist {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.premium__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 3px solid var(--black);
    border-radius: var(--radius);
    background: var(--white);
    outline: none;
}

.premium__input:focus {
    border-color: var(--mustard);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--cream);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
}

.footer__torn-edge {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--cream-dark);
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 40%,
        98% 70%, 95% 35%, 92% 60%, 88% 30%, 85% 55%,
        82% 35%, 78% 65%, 75% 30%, 72% 55%, 68% 35%,
        65% 60%, 62% 30%, 58% 55%, 55% 35%, 52% 65%,
        48% 30%, 45% 55%, 42% 35%, 38% 60%, 35% 30%,
        32% 55%, 28% 35%, 25% 65%, 22% 30%, 18% 55%,
        15% 35%, 12% 60%, 8% 30%, 5% 55%, 2% 35%,
        0% 60%
    );
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-lg);
}

.footer__logo {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(0.9);
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--grey-light);
    font-style: italic;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer__col h4 {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mustard);
    margin-bottom: var(--space-sm);
}

.footer__col a {
    display: block;
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--cream);
}

.footer__bottom {
    text-align: center;
}

.footer__disclaimer {
    font-size: 0.8rem;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto var(--space-sm);
    line-height: 1.6;
    padding: var(--space-sm);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--grey);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .seekho__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .newsletter__inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .community__inner {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 3px solid var(--black);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav__links--open {
        transform: translateY(0);
    }

    .nav__links li {
        width: 100%;
    }

    .nav__links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px dashed var(--grey-light);
        font-size: 1rem;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav__burger {
        display: flex;
    }

    .nav__burger--open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__burger--open span:nth-child(2) {
        opacity: 0;
    }

    .nav__burger--open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero__form {
        flex-direction: column;
    }

    .hero__btn {
        width: 100%;
        justify-content: center;
    }

    .jhalak__grid {
        grid-template-columns: 1fr;
    }

    .clip-card--alt {
        transform: none;
    }

    .seekho__grid {
        grid-template-columns: 1fr;
    }

    .dekho__grid {
        grid-template-columns: 1fr;
    }

    .premium__grid {
        grid-template-columns: 1fr;
    }

    .premium__waitlist {
        flex-direction: column;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer__links {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .community__social-grid {
        grid-template-columns: 1fr;
    }

    .community__channel-name {
        min-width: auto;
    }

    .community__channel {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .footer__links {
        grid-template-columns: 1fr 1fr;
    }
}
