/* =============================================================
   EAT Media — eatmedia.lk
   Designed & built by novità (novita.digital)
   ============================================================= */

/* -------- Tokens -------- */
:root {
    --bg: #0A0A0A;
    --surface: #141414;
    --surface-2: #1A1A1A;
    --text: #FFFFFF;
    --text-soft: #A0A0A0;
    --text-mute: #6B6B6B;
    --red-1: #CC0000;
    --red-2: #8B0000;
    --red-glow: rgba(204, 0, 0, 0.35);
    --border: rgba(204, 0, 0, 0.3);
    --border-soft: rgba(255, 255, 255, 0.08);
    --gradient-red: linear-gradient(135deg, #CC0000 0%, #8B0000 100%);
    --gradient-red-soft: linear-gradient(135deg, rgba(204,0,0,0.15) 0%, rgba(139,0,0,0.05) 100%);
    --shadow-red: 0 20px 60px -20px rgba(204, 0, 0, 0.5);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1240px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

/* -------- Type system -------- */
.font-display {
    font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}
.font-body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red-1);
}

/* -------- Layout helpers -------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}
section { position: relative; padding: 120px 0; }

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-red);
    color: #fff;
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 70px -20px rgba(204, 0, 0, 0.7);
}
.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: #fff;
    border: 1px solid var(--border-soft);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--border);
}
.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    padding: 14px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
}
.nav__logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.3s var(--ease), height 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
.nav.scrolled .nav__logo-img { height: 36px; }
.nav__links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav__links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
    padding: 10px 20px;
    font-size: 12px;
}
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 102; position: relative; }
.nav__burger span { width: 22px; height: 2px; background: #fff; transition: all 0.3s var(--ease); transform-origin: center; }

/* Burger → X transformation when menu open */
body.nav-open .nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav__burger span:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer menu — hidden on desktop, slides in on mobile when open */
.nav__drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 101;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    overflow-y: auto;
    border-left: 1px solid var(--border-soft);
}
.nav__drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}
.nav__drawer-links a {
    display: block;
    padding: 18px 0;
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    color: #fff;
    border-bottom: 1px solid var(--border-soft);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__drawer-links a:hover,
.nav__drawer-links a:active {
    color: var(--red-1);
    padding-left: 8px;
}
.nav__drawer-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
}
.nav__drawer-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.nav__drawer-meta-value {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 24px;
}
.nav__drawer-meta-value a {
    color: var(--red-1);
}

/* Backdrop overlay behind the drawer */
.nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

/* Open state */
body.nav-open { overflow: hidden; }
body.nav-open .nav__drawer { transform: translateX(0); }
body.nav-open .nav__backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Atmospheric backdrop */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero__bg::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(204, 0, 0, 0.18), transparent 60%);
    filter: blur(80px);
}
.hero__bg::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.15), transparent 60%);
    filter: blur(100px);
}
.hero__grain {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 4px);
    mix-blend-mode: overlay;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__eyebrow { margin-bottom: 28px; }

.hero__title {
    font-size: clamp(52px, 7.5vw, 116px);
    line-height: 0.92;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
}
.hero__title-line { display: block; opacity: 0; transform: translateY(20px); animation: rise 0.9s var(--ease) forwards; }
.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.25s; }

.hero__lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.5s forwards;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.65s forwards;
}

/* Right column — visual */
.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    opacity: 0;
    animation: rise 1.2s var(--ease) 0.4s forwards;
}
.hero__frame {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, #2a0a0a 0%, #0a0a0a 60%);
    border: 1px solid var(--border);
    box-shadow:
        0 40px 80px -30px rgba(0,0,0,0.8),
        0 0 0 1px rgba(204,0,0,0.1) inset;
}
.hero__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(204, 0, 0, 0.4), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 0, 0, 0.3), transparent 50%);
}
.hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, transparent 49.5%, rgba(0,0,0,0.4) 50%, transparent 50.5%);
    background-size: 100% 4px;
    opacity: 0.3;
    mix-blend-mode: overlay;
    z-index: 1;
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero__frame-meta {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.hero__rec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 6px;
    text-transform: uppercase;
}
.hero__rec-dot {
    width: 8px;
    height: 8px;
    background: var(--red-1);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}
.hero__timecode {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}
.hero__frame-bottom {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}
.hero__frame-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.hero__frame-title {
    font-family: 'Anton', sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Floating spec card */
.hero__spec {
    position: absolute;
    top: 50%;
    right: -32px;
    transform: translateY(-50%);
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
    display: flex;
    gap: 18px;
    align-items: center;
    z-index: 3;
}
.hero__spec-num {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    line-height: 1;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__spec-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    text-transform: uppercase;
    line-height: 1.4;
    max-width: 110px;
}

/* Mobile-only inline spec card (mirrors desktop floating card design) */
.hero__spec-mobile {
    display: none; /* shown only on phone via media query */
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.8);
    width: fit-content;
}
.hero__spec-mobile-num {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    line-height: 1;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__spec-mobile-divider {
    display: none; /* no divider on the desktop card design */
}
.hero__spec-mobile-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    text-transform: uppercase;
    line-height: 1.4;
    max-width: 110px;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--text-soft);
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-soft), transparent);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red-1);
    animation: scrollLine 2s var(--ease) infinite;
}

/* =============================================================
   TICKER
   ============================================================= */
.ticker {
    position: relative;
    padding: 28px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: linear-gradient(90deg, rgba(204,0,0,0.04), transparent 30%, transparent 70%, rgba(204,0,0,0.04));
    overflow: hidden;
}
.ticker__track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: ticker 40s linear infinite;
}
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text);
    white-space: nowrap;
}
.ticker__item:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--text-soft); }
.ticker__star {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--gradient-red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* =============================================================
   SERVICES
   ============================================================= */
.services {
    position: relative;
    padding: 140px 0;
    background: var(--bg);
}
.services__bg {
    position: absolute;
    top: 20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.1), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.services__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.services__title {
    font-size: clamp(44px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.01em;
}
.services__intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 480px;
}

.services__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 36px 32px;
    overflow: hidden;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-1), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.service-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card--feature {
    background:
        radial-gradient(circle at 100% 0%, rgba(204,0,0,0.18), transparent 50%),
        var(--surface);
    border: 1px solid var(--border);
    grid-row: span 2;
}

.service-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.16em;
    margin-bottom: 32px;
}
.service-card__title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.005em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.service-card--feature .service-card__title {
    font-size: 44px;
    margin-bottom: 20px;
}
.service-card__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    margin-bottom: 28px;
}
.service-card--feature .service-card__desc {
    font-size: 16px;
}

.service-card__list {
    list-style: none;
    margin-top: auto;
}
.service-card__list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    border-top: 1px solid var(--border-soft);
}
.service-card__list li:last-child { border-bottom: 1px solid var(--border-soft); }
.service-card__list li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--gradient-red);
    border-radius: 50%;
    margin-top: 7px;
}

/* Included strip */
.services__included {
    margin-top: 80px;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.services__included::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-red);
}
.services__included-head .eyebrow { margin-bottom: 14px; }
.services__included-title {
    font-size: 32px;
    line-height: 1.05;
    max-width: 280px;
}
.services__included-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}
.services__included-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--text-soft);
}
.services__included-list li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: var(--red-1);
}

/* =============================================================
   WORK / PORTFOLIO
   ============================================================= */
.work {
    position: relative;
    padding: 140px 0;
    background: var(--bg);
    overflow: hidden;
}
.work__bg {
    position: absolute;
    top: 30%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.08), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.work__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}
.work__title-block .eyebrow { margin-bottom: 24px; }
.work__title {
    font-size: clamp(44px, 6vw, 84px);
    line-height: 0.95;
}
.work__intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 380px;
    padding-bottom: 8px;
}

.work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.project {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}
.project:hover {
    transform: translateY(-6px);
    border-color: var(--border);
}

/* Clickable card variant */
a.project--clickable {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
a.project--clickable:hover { border-color: var(--red-1); }
a.project--clickable:hover .project__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
a.project--clickable:hover .project__thumb { transform: scale(1.06); }
a.project--clickable:hover .project__platform { color: var(--red-1); }
a.project--clickable:hover .project__platform-arrow { transform: translate(2px, -2px); }

.project:hover .project__visual::after { opacity: 1; }
.project:hover .project__visual-shape { transform: scale(1.05) rotate(2deg); }

/* Play button overlay (only on clickable cards) */
.project__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(204, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 4;
    opacity: 0;
    transition: all 0.4s var(--ease);
    box-shadow: 0 20px 50px -10px rgba(204, 0, 0, 0.6);
    pointer-events: none;
}
.project__play svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

/* Platform footer (Instagram / TikTok badge) */
.project__platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color 0.3s var(--ease);
}
.project__platform svg {
    width: 14px;
    height: 14px;
}
.project__platform-arrow {
    width: 12px;
    height: 12px;
    margin-left: auto;
    transition: transform 0.3s var(--ease);
}

.project__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0707 0%, #0a0a0a 70%);
    border-bottom: 1px solid var(--border-soft);
}
.project__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.7s var(--ease);
}
.project:hover .project__thumb { transform: scale(1.04); }
.project__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(204,0,0,0.25), transparent 60%);
    opacity: 0.7;
    transition: opacity 0.5s var(--ease);
}
.project__visual-shape {
    position: absolute;
    inset: 20% 25%;
    background: var(--gradient-red);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    transition: transform 0.7s var(--ease);
}
.project__visual-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%);
    background-size: 40px 40px;
    z-index: 1;
}
.project__brand-mark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.project__brand-mark span {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    text-align: center;
    padding: 0 20px;
}

.project__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 11px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
}
.project__badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--gradient-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-glow);
    animation: blink 1.6s infinite;
}

.project__finds-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    padding: 6px 11px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.project__body {
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.project__category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red-1);
}
.project__name {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}
.project__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    flex: 1;
}
.project__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
    margin-top: 6px;
}
.project__tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-soft);
    padding: 5px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
}

/* Stats strip below grid */
.work__stats {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    position: relative;
    z-index: 2;
}
.work__stat {
    padding: 32px 24px;
    border-right: 1px solid var(--border-soft);
}
.work__stat:last-child { border-right: 0; }
.work__stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 1;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.work__stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* =============================================================
   PROCESS / HOW IT WORKS
   ============================================================= */
.process {
    position: relative;
    padding: 140px 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, #0d0606 50%, var(--bg) 100%);
    overflow: hidden;
}
.process__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.06), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.process__head {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}
.process__head .eyebrow { margin-bottom: 24px; }
.process__head .eyebrow::before { display: none; }
.process__title {
    font-size: clamp(44px, 6vw, 84px);
    line-height: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

.process__steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.step {
    position: relative;
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    background:
        radial-gradient(circle at top right, rgba(204,0,0,0.1), transparent 60%),
        var(--surface);
}

.step__num-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.step__num {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 0.85;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.step__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(204,0,0,0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-1);
}
.step__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.step__title {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.step__desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-soft);
    flex: 1;
}

/* Timeline connectors between steps (desktop only) */
.process__steps::before {
    content: "";
    position: absolute;
    top: 73px;
    left: calc(20% - 12px);
    right: calc(20% - 12px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
    z-index: 0;
    pointer-events: none;
}

/* Why us strip below process */
.process__why {
    margin-top: 96px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.process__why-head .eyebrow { margin-bottom: 20px; }
.process__why-title {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.005em;
}
.process__why-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.process__why-list li {
    padding: 24px 28px;
    border-top: 1px solid var(--border-soft);
    border-left: 1px solid var(--border-soft);
    transition: background 0.3s var(--ease);
}
.process__why-list li:hover { background: rgba(204,0,0,0.04); }
.process__why-list li:nth-child(1),
.process__why-list li:nth-child(2) { border-top: 0; }
.process__why-list li:nth-child(odd) { border-left: 0; }
.process__why-list-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--red-1);
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}
.process__why-list-title {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.process__why-list-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
}

/* =============================================================
   PRICING
   ============================================================= */
.pricing {
    position: relative;
    padding: 140px 0;
    background: var(--bg);
    overflow: hidden;
}
.pricing__bg {
    position: absolute;
    top: 0; right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.1), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.pricing__head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.pricing__head .eyebrow { margin-bottom: 24px; }
.pricing__head .eyebrow::before { display: none; }
.pricing__title {
    font-size: clamp(44px, 6vw, 84px);
    line-height: 0.95;
    max-width: 900px;
    margin: 0 auto 20px;
}
.pricing__sub {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0 auto;
}

/* Founding offer banner */
.pricing__offer {
    position: relative;
    z-index: 2;
    margin: 40px auto 48px;
    max-width: 1000px;
    padding: 22px 32px;
    background:
        radial-gradient(circle at 0% 50%, rgba(204,0,0,0.25), transparent 50%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}
.pricing__offer-badge {
    flex-shrink: 0;
    padding: 8px 14px;
    background: var(--gradient-red);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 10px 30px -10px var(--red-glow);
    white-space: nowrap;
}
.pricing__offer-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.4;
}
.pricing__offer-hero {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing__offer-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1.5;
    letter-spacing: 0.01em;
}
.pricing__offer-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Tabs */
.pricing__tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}
.pricing__tabs {
    display: inline-flex;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 6px;
    gap: 0;
    position: relative;
}
/* Sliding indicator pill — moves smoothly between active tabs */
.pricing__tabs-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: var(--gradient-red);
    border-radius: 999px;
    box-shadow: 0 10px 30px -10px var(--red-glow);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
    z-index: 0;
    will-change: transform, width;
}
.pricing__tab {
    position: relative;
    z-index: 1;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    border-radius: 999px;
    transition: color 0.3s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    background: transparent;
}
.pricing__tab.is-active {
    color: #fff;
}
.pricing__tab:not(.is-active):hover {
    color: var(--text);
}

/* Panels — directional slide-in transitions */
.pricing__panel {
    display: none;
    position: relative;
    z-index: 2;
}
.pricing__panel.is-active {
    display: block;
}
.pricing__panel.is-entering-from-right {
    animation: panelSlideFromRight 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing__panel.is-entering-from-left {
    animation: panelSlideFromLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes panelSlideFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes panelSlideFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Stagger pricing cards within active panel */
.pricing__panel.is-active .plan {
    animation: cardRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.pricing__panel.is-active .plan:nth-child(1) { animation-delay: 0.05s; }
.pricing__panel.is-active .plan:nth-child(2) { animation-delay: 0.13s; }
.pricing__panel.is-active .plan:nth-child(3) { animation-delay: 0.21s; }
@keyframes cardRise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Sub-toggle for Reels uses the same sliding indicator pattern */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.pricing__panel-intro {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 36px;
    font-weight: 500;
}

/* Sub-toggle inside a tab panel */
.pricing__subtoggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.pricing__subtoggle-inner {
    display: inline-flex;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.pricing__subtoggle-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-red);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
    z-index: 0;
    will-change: transform, width;
}
.pricing__subbtn {
    position: relative;
    z-index: 1;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color 0.3s var(--ease);
    cursor: pointer;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--border-soft);
}
.pricing__subbtn:last-child { border-right: 0; }
.pricing__subbtn.is-active {
    color: #fff;
}
.pricing__subbtn:not(.is-active):hover {
    color: var(--text);
}

/* Sub-panels with directional slide */
.pricing__subpanel { display: none; }
.pricing__subpanel.is-active {
    display: block;
}
.pricing__subpanel.is-entering-from-right {
    animation: panelSlideFromRight 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing__subpanel.is-entering-from-left {
    animation: panelSlideFromLeft 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tier grid: 1, 2, 3, or 4 columns based on count */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}
.pricing__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}
.pricing__grid--photo {
    grid-template-columns: 1fr;
    max-width: 720px;
}

/* Plan card */
.plan {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.plan:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}
.plan--featured {
    background:
        radial-gradient(circle at 100% 0%, rgba(204,0,0,0.18), transparent 50%),
        var(--surface);
    border: 1px solid var(--border);
}
.plan--featured::before {
    content: "Recommended";
    position: absolute;
    top: -12px;
    right: 32px;
    padding: 6px 14px;
    background: var(--gradient-red);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 10px 30px -10px var(--red-glow);
}

.plan__head {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-soft);
}
.plan__name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.plan__name {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
}
.plan__qty {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--red-1);
    letter-spacing: 0.14em;
}
.plan__tag {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 22px;
    line-height: 1.5;
    min-height: 40px;
}
.plan__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.plan__currency {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--text-soft);
    line-height: 1;
}
.plan__price {
    font-family: 'Anton', sans-serif;
    font-size: 54px;
    line-height: 0.9;
    letter-spacing: -0.005em;
}
.plan--featured .plan__price {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plan__period {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
}
.plan__per-unit {
    font-size: 11px;
    color: var(--text-mute);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.06em;
}

.plan__list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}
.plan__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.5;
}
.plan__list li svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    stroke: var(--red-1);
    margin-top: 3px;
}
.plan__list li.is-muted {
    color: var(--text-mute);
}
.plan__list li.is-muted svg {
    stroke: var(--text-mute);
}

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

/* Photography card variant */
.plan--photo {
    padding: 48px 56px;
    background:
        radial-gradient(circle at 100% 0%, rgba(204,0,0,0.15), transparent 50%),
        var(--surface);
    border: 1px solid var(--border);
}
.plan--photo .plan__head {
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 32px;
    margin-bottom: 32px;
}
.plan--photo .plan__name { font-size: 32px; }
.plan--photo .plan__price {
    font-size: 64px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.photo-rate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    margin-bottom: 32px;
}
.photo-rate-grid__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.photo-rate-grid__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.photo-rate-grid__value {
    font-size: 16px;
    color: var(--text);
}

/* Pricing footnote */
.pricing__note {
    margin-top: 48px;
    padding: 22px 32px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}
.pricing__note-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: rgba(204,0,0,0.1);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-1);
}
.pricing__note-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.pricing__note-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-soft);
}
.pricing__note-text strong {
    color: var(--text);
    font-weight: 600;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
    position: relative;
    padding: 140px 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, #0d0606 50%, var(--bg) 100%);
    overflow: hidden;
}
.faq__bg {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.08), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.faq__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.faq__head .eyebrow { margin-bottom: 24px; }
.faq__title {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
}
.faq__intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 32px;
    max-width: 380px;
}
.faq__contact-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    max-width: 380px;
}
.faq__contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.faq__contact-card-value {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.faq__contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--red-1);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.faq__contact-card a:hover { color: #fff; }
.faq__contact-card a svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease);
}
.faq__contact-card a:hover svg { transform: translateX(3px); }

/* Accordion */
.faq__list {
    list-style: none;
    border-top: 1px solid var(--border-soft);
}
.faq__item {
    border-bottom: 1px solid var(--border-soft);
    transition: background 0.3s var(--ease);
}
.faq__item.is-open {
    background: rgba(204,0,0,0.03);
}
.faq__q {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: padding 0.3s var(--ease);
}
.faq__item.is-open .faq__q { padding: 24px 24px 16px; }
.faq__item:not(.is-open) .faq__q:hover { padding-left: 12px; }
.faq__q-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.14em;
}
.faq__q-text {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text);
}
.faq__item.is-open .faq__q-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq__q-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.faq__q-icon::before, .faq__q-icon::after {
    content: "";
    position: absolute;
    background: var(--text);
    transition: transform 0.4s var(--ease), background 0.3s;
}
.faq__q-icon::before {
    top: 50%; left: 25%; right: 25%;
    height: 1.5px;
    transform: translateY(-50%);
}
.faq__q-icon::after {
    left: 50%; top: 25%; bottom: 25%;
    width: 1.5px;
    transform: translateX(-50%);
}
.faq__item.is-open .faq__q-icon {
    background: var(--gradient-red);
    border-color: transparent;
}
.faq__item.is-open .faq__q-icon::before { background: #fff; }
.faq__item.is-open .faq__q-icon::after { transform: translateX(-50%) rotate(90deg); background: #fff; }

.faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s var(--ease);
}
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a-inner {
    padding: 0 76px 28px 56px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-soft);
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
    position: relative;
    padding: 140px 0;
    background: var(--bg);
    overflow: hidden;
}
.contact__bg {
    position: absolute;
    top: -10%; right: -15%;
    width: 60%; height: 80%;
    background: radial-gradient(circle at center, rgba(204,0,0,0.15), transparent 60%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.contact__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__head .eyebrow { margin-bottom: 24px; }
.contact__title {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.005em;
    margin-bottom: 24px;
}
.contact__lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 40px;
    max-width: 440px;
}

.contact__channels {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact__channel {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--border-soft);
    transition: padding 0.3s var(--ease);
}
.contact__channel:last-child { border-bottom: 1px solid var(--border-soft); }
.contact__channel:hover { padding-left: 8px; }
.contact__channel-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(204,0,0,0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-1);
}
.contact__channel-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact__channel-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
}
.contact__channel-value {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--text);
}
.contact__channel a:hover .contact__channel-value { color: var(--red-1); }
.contact__channel-arrow {
    width: 16px; height: 16px;
    color: var(--text-mute);
    transition: transform 0.3s var(--ease), color 0.3s;
}
.contact__channel:hover .contact__channel-arrow {
    transform: translateX(4px);
    color: var(--red-1);
}

/* Form */
.contact__form-wrap {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}
.contact__form-wrap::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-red);
}
.contact__form-title {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact__form-sub {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 28px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.form__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.form__input, .form__select, .form__textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s, background 0.3s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-color: var(--red-1);
    background: rgba(255,255,255,0.05);
}
.form__textarea {
    min-height: 130px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
}
.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 42px;
}
.form__select option {
    background: var(--surface);
    color: var(--text);
}
.form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}
.form__msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}
.form__msg.is-success {
    display: block;
    background: rgba(40, 200, 100, 0.1);
    border: 1px solid rgba(40, 200, 100, 0.3);
    color: #4ade80;
}
.form__msg.is-error {
    display: block;
    background: rgba(204, 0, 0, 0.1);
    border: 1px solid var(--border);
    color: #ff6b6b;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    position: relative;
    background: #050505;
    border-top: 1px solid var(--border-soft);
    padding: 80px 0 40px;
    overflow: hidden;
}
.footer__bg-text {
    position: absolute;
    bottom: -30px;
    left: 0; right: 0;
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: clamp(120px, 24vw, 340px);
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: rgba(204,0,0,0.04);
    -webkit-text-stroke: 1px rgba(204,0,0,0.08);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
}
.footer__top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 4px;
}
.footer__logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: opacity 0.3s var(--ease);
}
.footer__logo:hover .footer__logo-img { opacity: 0.85; }
.footer__tagline {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 320px;
}
.footer__parent {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 8px;
}
.footer__col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 20px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__list a {
    font-size: 14px;
    color: var(--text);
    transition: color 0.3s;
}
.footer__list a:hover { color: var(--red-1); }

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.footer__social {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s var(--ease);
}
.footer__social:hover {
    background: var(--gradient-red);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px var(--red-glow);
}
.footer__social svg {
    width: 16px;
    height: 16px;
    fill: #fff !important;
}
.footer__social svg path,
.footer__social svg circle,
.footer__social svg rect {
    fill: #fff !important;
}
.footer__social:hover svg,
.footer__social:hover svg path,
.footer__social:hover svg circle,
.footer__social:hover svg rect {
    fill: #fff !important;
}

.footer__bottom {
    position: relative;
    z-index: 2;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__copyright {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
}
.footer__credit {
    font-size: 12px;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.footer__credit a {
    color: var(--text);
    transition: color 0.3s;
    font-weight: 500;
}
.footer__credit a:hover { color: var(--red-1); }
.footer__heart {
    width: 13px;
    height: 13px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
    animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    30% { transform: translate(3%, -10%); }
    50% { transform: translate(-10%, 5%); }
    70% { transform: translate(5%, 5%); }
    90% { transform: translate(-5%, 10%); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-width: 480px; margin: 0 auto; }
    .hero__scroll { display: none; }
    .hero__spec { right: -24px; padding: 14px 18px; }
    .hero__spec-num { font-size: 32px; }
    section { padding: 90px 0; }
    .services__head { grid-template-columns: 1fr; gap: 32px; align-items: start; margin-bottom: 60px; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .service-card--feature { grid-row: span 1; grid-column: span 2; }
    .services__included { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
    .services__included-list { grid-template-columns: 1fr 1fr; }
    .work__head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .work__intro { max-width: 100%; }
    .work__grid { grid-template-columns: repeat(2, 1fr); }
    .work__stats { grid-template-columns: repeat(2, 1fr); }
    .work__stat:nth-child(2) { border-right: 0; }
    .work__stat:nth-child(1), .work__stat:nth-child(2) { border-bottom: 1px solid var(--border-soft); }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .process__why { grid-template-columns: 1fr; gap: 32px; }
    .pricing__grid { grid-template-columns: 1fr; max-width: 520px; }
    .pricing__grid--two { grid-template-columns: 1fr; max-width: 520px; }
    .faq__inner { grid-template-columns: 1fr; gap: 40px; }
    .faq__contact-card { max-width: 100%; }
    .contact__inner { grid-template-columns: 1fr; gap: 56px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav__drawer { display: block; }
    .nav__backdrop { display: block; }
    .hero { padding: 140px 0 80px; min-height: auto; }
    .hero__title { font-size: clamp(48px, 14vw, 80px); }
    .hero__lede { font-size: 16px; }
    .hero__frame-title { font-size: 26px; }
    /* Phone: hide the floating spec card (it overlapped CTAs / had no
       proper frame context) and show the inline pill below the buttons
       instead. The 9:16 message is critical brand info, so we surface
       it directly in the hero where mobile users will see it. */
    .hero__spec { display: none; }
    .hero__spec-mobile { display: inline-flex; }
    .ticker__item { font-size: 26px; gap: 40px; }
    .ticker__track { gap: 40px; }
    .hero__scroll { display: none; }
    section { padding: 70px 0; }
    .services__grid { grid-template-columns: 1fr; }
    .service-card--feature { grid-column: span 1; }
    .services__included-list { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px; }
    .service-card__title { font-size: 26px; }
    .service-card--feature .service-card__title { font-size: 34px; }
    .work__grid { grid-template-columns: 1fr; }
    .work__stats { grid-template-columns: 1fr; }
    .work__stat { border-right: 0 !important; border-bottom: 1px solid var(--border-soft); }
    .work__stat:last-child { border-bottom: 0; }
    .work__stat-num { font-size: 44px; }
    .project__brand-mark span { font-size: 48px; }
    .process__steps { grid-template-columns: 1fr; }
    .process__why-list { grid-template-columns: 1fr; }
    .process__why-list li { border-left: 0 !important; border-top: 1px solid var(--border-soft) !important; }
    .process__why-list li:first-child { border-top: 0 !important; }
    .pricing__grid { grid-template-columns: 1fr; }
    .pricing__grid--two { grid-template-columns: 1fr; }
    .pricing__tabs { width: 100%; max-width: 100%; }
    .pricing__tab { padding: 10px 14px; font-size: 11px; flex: 1; text-align: center; }
    .pricing__offer { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
    .plan { padding: 32px 26px; }
    .plan__price { font-size: 46px; }
    .plan--photo { padding: 32px 26px; }
    .plan--photo .plan__price { font-size: 50px; }
    .photo-rate-grid { grid-template-columns: 1fr; }
    .pricing__note { flex-direction: column; align-items: flex-start; padding: 22px; }
    .faq__title { font-size: 36px; }
    .faq__q-text { font-size: 17px; }
    .faq__q { gap: 12px; }
    .faq__a-inner { padding: 0 16px 24px 36px; font-size: 14px; }
    .faq__item.is-open .faq__q { padding: 20px 16px 12px; }
    .contact__form-wrap { padding: 28px 24px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}
