/* ============================================================
   STARCLIP — POP-EDITORIAL REDESIGN
   Paper, ink, hot magenta, acid lime. No glassmorphism.
   ============================================================ */

:root {
    --paper:       #F5E9D7;
    --paper-cream: #FFF6E8;
    --paper-warm:  #EFE0C7;
    --ink:         #1A0A2E;
    --ink-soft:    #4A3866;
    --hot:         #FF2E6D;
    --hot-deep:    #E51F58;
    --lime:        #D8FF00;
    --lime-deep:   #BFE600;
    --plum:        #3B1B70;
    --peach:       #FFD0AC;
    --sand:        #E8D9BE;
    --rule:        rgba(26, 10, 46, 0.14);
    --rule-strong: rgba(26, 10, 46, 0.55);
    --shadow-card: 0 18px 40px -16px rgba(26, 10, 46, 0.32);
    --radius-card: 22px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Onest', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Paper grain — subtle noise overlay across whole site */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.42;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.1  0 0 0 0 0.04  0 0 0 0 0.18  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Above noise */
nav, main, header, section, footer, .modal-overlay, .toast { position: relative; z-index: 2; }

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.04;
    margin: 0;
    color: var(--ink);
}

.serif {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.015em;
}
.hand {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    line-height: 1;
}
.mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    letter-spacing: 0;
}

/* === Container === */
.sc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* === Top Nav === */
.sc-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 16px 0;
    background: rgba(245, 233, 215, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1.5px solid var(--rule);
}
.sc-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.sc-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}
.sc-logo .mark {
    width: 38px;
    height: 38px;
    background: var(--hot);
    color: var(--paper-cream);
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 19px;
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}
.sc-logo .word {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.04em;
}
.sc-logo .word em {
    font-style: normal;
    color: var(--hot);
}

.sc-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sc-nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.sc-nav-links a:hover { color: var(--hot); }
.sc-nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--hot);
    transition: width 0.25s ease;
}
.sc-nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--ink);
    border-radius: 999px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

/* === Buttons === */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--ink);
    color: var(--paper-cream);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s cubic-bezier(.4,0,.2,1),
                box-shadow .18s ease,
                background .18s ease,
                color .18s ease;
    white-space: nowrap;
}
.btn-pill:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--hot);
    color: var(--paper-cream);
}
.btn-pill.lime { background: var(--lime); color: var(--ink); }
.btn-pill.lime:hover { background: var(--ink); color: var(--lime); box-shadow: 5px 5px 0 var(--hot); }
.btn-pill.hot { background: var(--hot); color: var(--paper-cream); }
.btn-pill.hot:hover { background: var(--ink); }
.btn-pill.ghost { background: transparent; color: var(--ink); }
.btn-pill.ghost:hover { background: var(--ink); color: var(--paper-cream); }

.btn-pill svg {
    transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.btn-pill:hover svg { transform: translateX(4px) rotate(-12deg); }

.btn-big {
    padding: 22px 38px;
    font-size: 16px;
    border-width: 2.5px;
    letter-spacing: 0.06em;
}
.btn-big:hover {
    transform: translate(-4px, -4px);
    box-shadow: 7px 7px 0 var(--ink);
}

/* === Hero === */
.sc-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}
.sc-hero::after {
    content: "";
    position: absolute;
    top: 30%;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(216,255,0,.4), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: end;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--paper-cream);
    margin-bottom: 28px;
}
.hero-eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--hot);
    border-radius: 999px;
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 7.4vw, 116px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin: 0 0 28px;
    color: var(--ink);
}
.hero-title .em {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--hot);
    letter-spacing: -0.025em;
    display: inline-block;
    line-height: 1;
}
.hero-title .strike {
    position: relative;
    display: inline-block;
}
.hero-title .strike::after {
    content: "";
    position: absolute;
    left: -4%; right: -4%;
    top: 52%;
    height: 8px;
    background: var(--lime);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-sub {
    font-size: 19px;
    max-width: 480px;
    color: var(--ink-soft);
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-meta {
    margin-top: 36px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-meta div {
    font-size: 14px;
    line-height: 1.4;
}
.hero-meta strong {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.hero-meta span { color: var(--ink-soft); }

/* Price stamp — circular */
.price-stamp {
    position: absolute;
    top: 90px;
    right: 38%;
    width: 168px;
    height: 168px;
    background: var(--lime);
    color: var(--ink);
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    border: 2.5px solid var(--ink);
    transform: rotate(-13deg);
    z-index: 6;
    box-shadow: 6px 6px 0 var(--ink);
    animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: rotate(-13deg) translateY(0); }
    50%      { transform: rotate(-11deg) translateY(-6px); }
}
.price-stamp b {
    font-size: 36px;
    line-height: 0.9;
    display: block;
    letter-spacing: -0.04em;
}
.price-stamp small {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Hero card — demo video preview */
.hero-card {
    position: relative;
}
.hero-card .frame {
    position: relative;
    background: var(--ink);
    padding: 14px 14px 30px;
    border-radius: 6px;
    transform: rotate(2.2deg);
    box-shadow: 0 30px 60px -20px rgba(26,10,46,.4),
                0 0 0 0 transparent;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                box-shadow .35s ease;
}
.hero-card .frame:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.01);
    box-shadow: 0 40px 80px -20px rgba(26,10,46,.5);
}
.hero-card .frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 3px;
}
.hero-card .label {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--paper-cream);
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 4px;
}
.hero-card .label .dot {
    width: 8px; height: 8px;
    background: var(--lime);
    border-radius: 999px;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse 1.6s infinite;
}
.hero-card .play-btn {
    position: absolute;
    inset: 14px 14px 30px;
    display: grid;
    place-items: center;
    pointer-events: none;
}
.hero-card .play-btn .circle {
    width: 88px;
    height: 88px;
    background: var(--hot);
    color: var(--paper-cream);
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 3px solid var(--paper-cream);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.hero-card:hover .play-btn .circle { transform: scale(1.12); }

/* Hero corner sparkles */
.sparkle {
    position: absolute;
    color: var(--hot);
    font-size: 24px;
    animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* === Marquee === */
.marquee-strip {
    background: var(--lime);
    border-top: 2.5px solid var(--ink);
    border-bottom: 2.5px solid var(--ink);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
}
.marquee-track {
    display: flex;
    gap: 48px;
    animation: scroll-x 42s linear infinite;
    white-space: nowrap;
    align-items: center;
    width: max-content;
}
.marquee-track span {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 48px;
}
.marquee-track .dot {
    width: 14px; height: 14px;
    border-radius: 999px;
    background: var(--hot);
    display: inline-block;
}
.marquee-track .star-mark {
    color: var(--hot);
    font-size: 30px;
    line-height: 1;
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* === Section === */
.sc-section {
    padding: 110px 0;
    position: relative;
}
.sc-section.tight { padding: 70px 0; }
.sc-section.dark {
    background: var(--ink);
    color: var(--paper-cream);
}
.sc-section.dark h1, .sc-section.dark h2,
.sc-section.dark h3, .sc-section.dark h4 { color: var(--paper-cream); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hot);
    margin-bottom: 22px;
}
.section-eyebrow::before {
    content: "✦";
    font-size: 18px;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5.8vw, 84px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    max-width: 980px;
}
.section-title .em {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--hot);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* === Feature cards === */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feat-card {
    background: var(--paper-cream);
    border: 2px solid var(--ink);
    border-radius: 26px;
    padding: 36px 30px;
    position: relative;
    transition: transform .25s cubic-bezier(.4,0,.2,1),
                box-shadow .25s ease;
    overflow: hidden;
}
.feat-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 8px 8px 0 var(--ink);
}
.feat-card.peach { background: var(--peach); }
.feat-card.lime  { background: var(--lime); }
.feat-card.hot   { background: var(--hot); color: var(--paper-cream); }
.feat-card.hot h3 { color: var(--paper-cream); }
.feat-card.ink   { background: var(--ink); color: var(--paper-cream); }
.feat-card.ink h3 { color: var(--paper-cream); }

.feat-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.feat-card.hot .feat-num,
.feat-card.ink .feat-num { color: var(--paper-cream); }
.feat-num::before {
    content: "";
    width: 32px; height: 2px;
    background: currentColor;
    display: inline-block;
}

.feat-icon {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
}
.feat-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.feat-text { font-size: 16px; line-height: 1.55; }

/* === Examples grid (videos) === */
.ex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.ex-card {
    cursor: pointer;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    color: inherit;
    display: block;
}
.ex-card:nth-child(1) { transform: rotate(-1.6deg); }
.ex-card:nth-child(2) { transform: rotate(1.2deg); }
.ex-card:nth-child(3) { transform: rotate(-0.8deg); }
.ex-card:nth-child(4) { transform: rotate(1.6deg); }
.ex-card:hover { transform: rotate(0) translateY(-10px); }

.ex-frame {
    position: relative;
    background: var(--ink);
    padding: 12px 12px 16px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.ex-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
    transition: transform .5s ease;
}
.ex-card:hover .ex-frame img { transform: scale(1.04); }
.ex-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    color: var(--paper-cream);
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 4px;
}
.ex-meta .pl {
    width: 32px; height: 32px;
    background: var(--lime);
    border-radius: 999px;
    display: grid; place-items: center;
    color: var(--ink);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.ex-card:hover .ex-meta .pl { transform: scale(1.15) rotate(8deg); }
.ex-cap {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 22px;
    margin-top: 10px;
    color: var(--ink);
    line-height: 1;
}

/* === How it works === */
.how-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2.5px solid var(--ink);
    border-bottom: 2.5px solid var(--ink);
}
.how-step {
    padding: 44px 28px 50px;
    border-right: 1.5px solid var(--rule);
    position: relative;
}
.how-step:last-child { border-right: none; }

.how-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: var(--hot);
    letter-spacing: 0.12em;
    margin-bottom: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.how-num::after {
    content: "";
    width: 60px; height: 2px;
    background: var(--hot);
}
.how-glyph {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 0.85;
    color: var(--ink);
    letter-spacing: -0.06em;
    margin-bottom: 22px;
    display: block;
}
.how-step h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.how-step p {
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
}

/* === Final CTA === */
.cta-block {
    background: var(--hot);
    color: var(--paper-cream);
    border-radius: 36px;
    padding: 90px 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--ink);
    box-shadow: 14px 14px 0 var(--ink);
}
.cta-block::before {
    content: "★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★";
    position: absolute;
    top: 18px; left: 0; right: 0;
    text-align: center;
    letter-spacing: 14px;
    color: var(--lime);
    font-size: 16px;
}
.cta-block h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6.4vw, 88px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    margin: 16px 0 30px;
    color: var(--paper-cream);
}
.cta-block h2 .em {
    font-family: 'Yeseva One', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--lime);
}
.cta-block p {
    font-size: 18px;
    max-width: 540px;
    margin: 0 auto 32px;
    color: rgba(255,246,232,.9);
}
.cta-block .btn-pill {
    background: var(--lime);
    color: var(--ink);
    border-color: var(--ink);
}
.cta-block .btn-pill:hover {
    background: var(--paper-cream);
    box-shadow: 6px 6px 0 var(--ink);
}

/* === Footer === */
.sc-footer {
    background: var(--ink);
    color: var(--paper-cream);
    padding: 90px 0 30px;
    position: relative;
}
.sc-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 56px;
    margin-bottom: 70px;
}
.sc-footer h5 {
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
    font-weight: 700;
}
.sc-footer p { color: rgba(255,246,232,.75); font-size: 14px; line-height: 1.6; margin: 0 0 8px; }
.sc-footer a { color: var(--paper-cream); transition: color .15s; display: inline-block; }
.sc-footer a:hover { color: var(--lime); }

.sc-footer .word {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: -0.04em;
    color: var(--paper-cream);
}
.sc-footer .word em {
    font-style: normal;
    color: var(--hot);
}
.sc-footer .tagline {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 24px;
    color: var(--lime);
    margin-top: 4px;
}

.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pay-grid a, .pay-grid div {
    background: var(--paper-cream);
    padding: 8px 14px;
    border-radius: 8px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--paper-cream);
    transition: transform .15s ease;
}
.pay-grid a:hover { transform: translateY(-3px); }
.pay-grid img {
    height: 22px;
    width: auto;
    display: block;
}

.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list li { margin-bottom: 10px; }

.footer-rule {
    border-top: 1.5px solid rgba(255,246,232,.15);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: rgba(255,246,232,.55);
}
.footer-rule .stamp {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lime);
    border: 1.5px solid var(--lime);
    padding: 6px 14px;
    border-radius: 999px;
}

/* === Catalog === */
.catalog-head {
    padding: 80px 0 40px;
    position: relative;
}
.catalog-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.catalog-stats div {
    border-left: 2px solid var(--ink);
    padding-left: 18px;
}
.catalog-stats strong {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 36px;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
}
.catalog-stats span {
    font-size: 13px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    display: block;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 40px 0 110px;
}

.star-card {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.star-card:hover { transform: translateY(-10px); }

.star-pic {
    position: relative;
    background: var(--ink);
    padding: 10px 10px 14px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.star-card:hover .star-pic {
    box-shadow: 0 28px 50px -16px rgba(26, 10, 46, 0.45);
}
.star-pic img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    opacity: 0;
    transition: opacity .35s ease, transform .5s ease;
}
.star-pic img.loaded { opacity: 1; }
.star-card:hover .star-pic img { transform: scale(1.05); }
.star-pic::before {
    content: "";
    position: absolute;
    inset: 10px 10px 14px;
    background: var(--paper-warm);
    z-index: 0;
    border-radius: 2px;
}
.star-pic img { position: relative; z-index: 1; }

.star-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--lime);
    color: var(--ink);
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    z-index: 2;
    transform: rotate(-4deg);
    transition: transform .25s ease;
}
.star-card:hover .star-tag {
    transform: rotate(0) scale(1.08);
    background: var(--hot);
    color: var(--paper-cream);
}

.star-go {
    position: absolute;
    bottom: 26px;
    right: 22px;
    width: 48px;
    height: 48px;
    background: var(--hot);
    color: var(--paper-cream);
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--paper-cream);
    z-index: 2;
    transform: scale(0) rotate(-90deg);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 6px 16px rgba(0,0,0,.3);
}
.star-card:hover .star-go { transform: scale(1) rotate(0); }

.star-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-top: 18px;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    line-height: 1.1;
}
.star-sub {
    font-family: 'Caveat', cursive;
    font-size: 19px;
    font-weight: 700;
    color: var(--hot);
    margin-top: 4px;
    line-height: 1;
}

/* === Star detail page === */
.star-stage {
    padding: 70px 0 110px;
    position: relative;
}
.star-stage::before {
    content: "";
    position: absolute;
    top: 0; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,46,109,.18), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}
.star-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 36px;
    padding: 8px 16px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 999px;
    transition: all .2s ease;
}
.star-back:hover {
    background: var(--ink);
    color: var(--paper-cream);
    border-color: var(--ink);
}

.star-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.star-photo-frame {
    position: relative;
    background: var(--ink);
    padding: 16px 16px 70px;
    border-radius: 4px;
    transform: rotate(-2.5deg);
    box-shadow: 0 30px 60px -20px rgba(26,10,46,.4);
    transition: transform .4s ease;
}
.star-photo-frame:hover { transform: rotate(-1deg) translateY(-4px); }
.star-photo-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}
.star-photo-frame .nameplate {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
    color: var(--paper-cream);
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 32px;
    padding: 10px 0 0;
    line-height: 1;
}

.star-photo-meta {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.chip {
    background: var(--paper-cream);
    border: 1.5px solid var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
}
.chip.lime { background: var(--lime); }
.chip.hot { background: var(--hot); color: var(--paper-cream); }

/* Order form */
.order-form {
    position: relative;
    background: var(--paper-cream);
    border: 2.5px solid var(--ink);
    border-radius: 28px;
    padding: 44px 40px;
    box-shadow: 10px 10px 0 var(--ink);
}
.order-form::before {
    content: "АНКЕТА · 590₽";
    position: absolute;
    top: -18px;
    left: 32px;
    background: var(--hot);
    color: var(--paper-cream);
    padding: 7px 18px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.14em;
    border: 2px solid var(--ink);
    border-radius: 999px;
    transform: rotate(-2deg);
}

.order-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.order-form .formsub {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 22px;
    color: var(--hot);
    margin-bottom: 30px;
    line-height: 1;
}

.field { margin-bottom: 20px; position: relative; }
.field-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
    align-items: center;
}
.field-label .req {
    color: var(--hot);
    font-size: 14px;
    margin-left: 4px;
}
.field-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 14px;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s, background .15s;
    -webkit-appearance: none;
    appearance: none;
}
.field-control:focus {
    outline: none;
    border-color: var(--hot);
    background: var(--paper-cream);
    box-shadow: 0 0 0 3px rgba(255, 46, 109, 0.2);
}
.field-control::placeholder { color: rgba(26, 10, 46, .35); }
select.field-control {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' fill='none' stroke='%231A0A2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}
textarea.field-control { resize: vertical; min-height: 140px; line-height: 1.5; }

.char-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 600;
    letter-spacing: 0;
}
.char-counter.warning { color: #C57700; }
.char-counter.danger  { color: var(--hot); }

.btn-form {
    width: 100%;
    padding: 22px 30px;
    background: var(--ink);
    color: var(--paper-cream);
    border: 2.5px solid var(--ink);
    border-radius: 999px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s, color .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    margin-top: 10px;
}
.btn-form:hover:not(:disabled) {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--hot);
}
.btn-form:disabled { opacity: .55; cursor: not-allowed; }
.btn-form.lime { background: var(--lime); color: var(--ink); }
.btn-form.lime:hover:not(:disabled) { background: var(--ink); color: var(--lime); box-shadow: 5px 5px 0 var(--hot); }

.spinner-mini {
    width: 18px; height: 18px;
    border: 2.5px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
    animation: spin .7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-error {
    background: #fff;
    border: 2px solid var(--hot);
    color: var(--hot);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

#greetingTextBlock { display: none; animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* === Modal (custom, no Bootstrap) === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,10,46,.85);
    backdrop-filter: blur(6px);
    display: none;
    place-items: center;
    z-index: 200;
    padding: 24px;
    animation: fadeIn .25s ease;
}
.modal-overlay.open { display: grid; }
.modal-box {
    position: relative;
    width: 100%;
    max-width: 920px;
    background: var(--ink);
    border: 2.5px solid var(--paper-cream);
    border-radius: 16px;
    padding: 18px;
    color: var(--paper-cream);
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    animation: pop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop {
    from { transform: scale(.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 6px;
}
.modal-head h5 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--paper-cream);
    margin: 0;
}
.modal-close {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--hot);
    border: 2px solid var(--paper-cream);
    color: var(--paper-cream);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    padding: 0;
    transition: transform .15s ease;
}
.modal-close:hover { transform: rotate(90deg) scale(1.05); }
.modal-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}
.modal-video iframe,
.modal-video video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === Legal text pages (oferta/pdn) === */
.legal-stage {
    padding: 60px 0 100px;
    max-width: 860px;
    margin: 0 auto;
}
.legal-stage h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1;
}
.legal-stage h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    margin: 36px 0 14px;
    letter-spacing: -0.02em;
}
.legal-stage h3 { font-size: 18px; margin: 24px 0 10px; }
.legal-stage p, .legal-stage li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    margin: 0 0 12px;
}
.legal-stage a { color: var(--hot); text-decoration: underline; text-underline-offset: 3px; }

/* === Mobile === */
@media (max-width: 1024px) {
    .sc-container { padding: 0 24px; }
    .hero-grid, .star-layout { grid-template-columns: 1fr; gap: 50px; }
    .price-stamp { right: 24px; top: 90px; width: 130px; height: 130px; }
    .price-stamp b { font-size: 28px; }
    .feat-grid { grid-template-columns: 1fr; }
    .ex-grid { grid-template-columns: repeat(2, 1fr); }
    .how-list { grid-template-columns: repeat(2, 1fr); }
    .how-list .how-step:nth-child(2) { border-right: none; }
    .how-list .how-step:nth-child(1),
    .how-list .how-step:nth-child(2) { border-bottom: 1.5px solid var(--rule); }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .sc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .order-form { padding: 36px 28px; }
    .star-photo-frame { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 720px) {
    .ex-grid { grid-template-columns: 1fr; }
    .how-list { grid-template-columns: 1fr; }
    .how-list .how-step { border-right: none; border-bottom: 1.5px solid var(--rule); }
    .how-list .how-step:last-child { border-bottom: none; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .star-name { font-size: 13px; }
    .star-sub { font-size: 16px; }
    .star-tag { font-size: 9px; padding: 4px 8px; }
    .sc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .price-stamp { display: none; }
    .sc-section { padding: 70px 0; }
    .cta-block { padding: 56px 24px; box-shadow: 8px 8px 0 var(--ink); border-radius: 24px; }
    .sc-container { padding: 0 18px; }
    .sc-nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .marquee-track span { font-size: 22px; gap: 36px; }
    .marquee-track { gap: 36px; }
    .order-form { padding: 32px 22px; border-radius: 22px; }
    .order-form::before { left: 18px; font-size: 11px; }
    .footer-rule { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 44px; }
    .section-title { font-size: 36px; }
    .feat-card { padding: 28px 22px; }
    .star-photo-frame .nameplate { font-size: 24px; }
    .order-form h3 { font-size: 24px; }
}

/* === Mobile menu drawer === */
.mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 90vw);
    background: var(--ink);
    color: var(--paper-cream);
    padding: 80px 32px 32px;
    z-index: 90;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    color: var(--paper-cream);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,246,232,.1);
}
.mobile-menu a:hover { color: var(--lime); }
.mobile-menu .btn-pill { margin-top: 24px; align-self: flex-start; }
.mobile-menu-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 999px;
    background: var(--hot);
    color: var(--paper-cream);
    border: 2px solid var(--paper-cream);
    cursor: pointer;
    font-size: 20px;
    display: grid; place-items: center;
    padding: 0;
}

/* === Reveal on scroll === */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
    opacity: 1;
    transform: none;
}

/* Selection */
::selection { background: var(--hot); color: var(--paper-cream); }
