/* =============================================================================
   Postla — Premium Dark SaaS Design System
   Target: Linear / Vercel / Framer aesthetic
   Dark theme · Instagram gradient accents · Conversion-optimised
   ============================================================================= */

/* ---------------------------------------------------------------------------
   Design tokens
   --------------------------------------------------------------------------- */

:root {
    /* Backgrounds — true dark, not grey */
    --bg-0: #080810;        /* page background */
    --bg-1: #0e0e1a;        /* subtle raised surface */
    --bg-2: #141424;        /* cards */
    --bg-3: #1c1c30;        /* elevated cards / inputs */
    --bg-4: #242438;        /* hover states */

    /* Instagram-inspired gradient palette */
    --ig-orange:  #F58529;
    --ig-pink:    #DD2A7B;
    --ig-purple:  #8134AF;
    --ig-grad: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    --ig-grad-h:  linear-gradient(135deg, #ff9a3c 0%, #e83a8a 50%, #9b47c7 100%);

    /* Accent colors */
    --accent-pink:    #EC4899;
    --accent-purple:  #8B5CF6;
    --accent-orange:  #F97316;
    --accent-green:   #10B981;
    --accent-blue:    #3B82F6;

    /* Text — high contrast on dark */
    --text-0: #FFFFFF;
    --text-1: rgba(255,255,255,0.87);
    --text-2: rgba(255,255,255,0.55);
    --text-3: rgba(255,255,255,0.35);

    /* Borders */
    --border-0: rgba(255,255,255,0.06);
    --border-1: rgba(255,255,255,0.10);
    --border-2: rgba(255,255,255,0.16);

    /* Shadows */
    --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.5), 0 16px 40px rgba(0,0,0,0.4);
    --shadow-glow-pink: 0 0 40px rgba(236,72,153,0.20), 0 0 80px rgba(236,72,153,0.08);
    --shadow-glow-purple: 0 0 40px rgba(139,92,246,0.20), 0 0 80px rgba(139,92,246,0.08);
    --shadow-glow-orange: 0 0 40px rgba(249,115,22,0.20);

    /* Spacing */
    --section-py: 120px;
    --section-py-sm: 80px;

    /* Radii */
    --radius-card: 20px;
    --radius-pill: 100px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------------- */

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

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

body {
    font-family: var(--font);
    background: var(--bg-0);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------------------------------------------------------------------------
   Typography utilities
   --------------------------------------------------------------------------- */

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(236, 72, 153, 0.10);
    border: 1px solid rgba(236, 72, 153, 0.22);
    color: var(--accent-pink);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-0);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-2);
    max-width: 600px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */

.btn-primary,
.btn-outline,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 22px;
}

.btn-primary {
    background: var(--ig-grad);
    color: #fff;
    box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
}
.btn-primary:hover {
    background: var(--ig-grad-h);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(221, 42, 123, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-glow {
    box-shadow: 0 0 0 0 rgba(221,42,123,0.4);
    animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(221,42,123,0.35); }
    50%       { box-shadow: 0 4px 14px rgba(221,42,123,0.35), 0 0 40px rgba(221,42,123,0.25); }
}

.btn-outline {
    background: transparent;
    color: var(--text-1);
    border: 1.5px solid var(--border-2);
}
.btn-outline:hover {
    background: var(--bg-3);
    border-color: var(--border-2);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-2);
    border: 1.5px solid var(--border-1);
}
.btn-ghost:hover {
    color: var(--text-1);
    border-color: var(--border-2);
    background: var(--bg-2);
}

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-large { padding: 15px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    transition-delay: var(--delay, 0ms);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------------
   NAV
   --------------------------------------------------------------------------- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(8, 8, 16, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border-0);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }

.logo-text {
    background: var(--ig-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover { color: var(--text-0); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--ig-grad);
    transition: width 0.25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 910;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Mobile menu panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 380px);
    height: 100vh;
    background: var(--bg-1);
    border-left: 1px solid var(--border-1);
    z-index: 920;
    transition: right 0.4s var(--ease);
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--text-0); }

.mobile-menu-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-link {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-1);
    transition: background 0.2s;
}
.mobile-link:hover { background: var(--bg-3); }
.mobile-cta { margin-top: 16px; }

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

/* Atmospheric background */
.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.atm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.atm-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(221,42,123,0.18) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation: orbFloat 12s ease-in-out infinite;
}
.atm-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129,52,175,0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: orbFloat 16s ease-in-out infinite reverse;
}
.atm-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,133,41,0.10) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbFloat 20s ease-in-out infinite;
    animation-delay: -5s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,30px) scale(0.97); }
}

/* Subtle grid */
.atm-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-copy { max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(236,72,153,0.08);
    border: 1px solid rgba(236,72,153,0.20);
    border-radius: var(--radius-pill);
    color: var(--accent-pink);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-pink);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 70px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-0);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-proof {
    padding-top: 32px;
    border-top: 1px solid var(--border-0);
}

.proof-clients {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    flex-shrink: 0;
}
.proof-avatars .proof-avatar:last-child { margin-right: 0; }

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-grid-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Vertical tabs above Instagram card */
.ig-vertical-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 3px;
}

.ig-vtab {
    flex: 1;
    padding: 7px 4px;
    border-radius: 10px;
    border: 1px solid var(--border-1);
    background: var(--bg-2);
    color: var(--text-3);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}
.ig-vtab .vtab-icon { font-size: 12px; }
.ig-vtab:hover {
    color: var(--text-0);
    border-color: var(--border-2);
    background: var(--bg-3);
}
.ig-vtab.active {
    background: var(--bg-3);
    color: var(--text-0);
    border-color: var(--border-2);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.ig-vtab[data-vertical="sports"].active  { border-color: rgba(96,165,250,0.5); color: #60A5FA; }
.ig-vtab[data-vertical="fintech"].active { border-color: rgba(45,212,191,0.5); color: #2DD4BF; }
.ig-vtab[data-vertical="beauty"].active  { border-color: rgba(249,168,212,0.5); color: #F9A8D4; }
.ig-vtab[data-vertical="lifestyle"].active { border-color: rgba(134,239,172,0.5); color: #86EFAC; }

/* Auto-progress bar */
.vtab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-0);
    border-radius: 2px;
    overflow: hidden;
}
.vtab-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--ig-grad);
    border-radius: 2px;
    transition: width linear;
}

/* Vertical tab transition animations */
@keyframes igProfileOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}
@keyframes igProfileIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes igCellIn {
    from { opacity: 0; transform: scale(0.82); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes igAvatarPop {
    0%   { transform: scale(1); }
    28%  { transform: scale(0.65); }
    65%  { transform: scale(1.14); }
    82%  { transform: scale(0.96); }
    100% { transform: scale(1); }
}
@keyframes igTabPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.18); }
    60%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.ig-grid { /* cells handle their own transitions */ }
.ig-grid.vt-out .ig-cell img {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.ig-cell img {
    transition: transform 0.3s var(--ease), opacity 0s;
}
.ig-cell.vt-cell-in {
    animation: igCellIn 0.42s cubic-bezier(0.34, 1.26, 0.64, 1) both;
}
.ig-profile-info {
    will-change: transform, opacity;
}
.ig-profile-info.vt-out {
    animation: igProfileOut 0.2s ease forwards;
}
.ig-profile-info.vt-in {
    animation: igProfileIn 0.38s cubic-bezier(0.34, 1.32, 0.64, 1) forwards;
}
.ig-avatar {
    will-change: transform;
}
.ig-avatar.vt-pop {
    animation: igAvatarPop 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}
.ig-vtab.vt-pulse {
    animation: igTabPulse 0.5s ease forwards;
}

/* Instagram profile card */
.ig-profile-card {
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 60px rgba(221,42,123,0.08);
}

.ig-profile-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px 12px;
}

.ig-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ig-grad);
    flex-shrink: 0;
}

.ig-profile-info { flex: 1; }
.ig-handle { font-size: 13px; font-weight: 700; color: var(--text-0); }
.ig-bio { font-size: 11px; color: var(--text-3); margin-top: 2px; }

.ig-follow-btn {
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--ig-grad);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.ig-stats {
    display: flex;
    justify-content: space-around;
    padding: 10px 18px 14px;
    border-bottom: 1px solid var(--border-0);
}
.ig-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.ig-stat strong { font-size: 14px; font-weight: 800; color: var(--text-0); }
.ig-stat span { font-size: 10px; color: var(--text-3); }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-0);
}
.ig-cell { aspect-ratio: 1; overflow: hidden; }
.ig-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--ease);
}
.ig-cell:hover img { transform: scale(1.06); }

/* Floating chips */
.chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-1);
    background: rgba(14,14,26,0.9);
    color: var(--text-1);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.chip-ai {
    top: -18px;
    right: -24px;
    animation: chipFloat 4s ease-in-out infinite;
}
.chip-speed {
    bottom: 30px;
    left: -32px;
    animation: chipFloat 5s ease-in-out infinite;
    animation-delay: 1.5s;
}
.chip-brand {
    top: 45%;
    right: -40px;
    animation: chipFloat 6s ease-in-out infinite;
    animation-delay: 0.8s;
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

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

/* ---------------------------------------------------------------------------
   MARQUEE
   --------------------------------------------------------------------------- */

.marquee-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
    border-bottom: 1px solid var(--border-0);
}

.marquee-track { overflow: hidden; }

.marquee-reel {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
    will-change: transform;
}
.marquee-reel:hover { animation-play-state: paused; }

.marquee-reel img {
    height: 240px;
    width: auto;
    border-radius: 12px;
    border: 1px solid var(--border-1);
    object-fit: cover;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    cursor: pointer;
}
.marquee-reel img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 30px rgba(221,42,123,0.12);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Edge fades */
.marquee-fade-l,
.marquee-fade-r {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    pointer-events: none;
    z-index: 2;
}
.marquee-fade-l {
    left: 0;
    background: linear-gradient(to right, var(--bg-1) 0%, transparent 100%);
}
.marquee-fade-r {
    right: 0;
    background: linear-gradient(to left, var(--bg-1) 0%, transparent 100%);
}

/* ---------------------------------------------------------------------------
   VALUE / STATS SECTION
   --------------------------------------------------------------------------- */

.value-section {
    padding: var(--section-py) 0;
}

.value-header {
    margin-bottom: 80px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-card);
    padding: 48px 40px;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 24px;
}

.stat-number {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border-1);
}

/* ---------------------------------------------------------------------------
   BENTO GRID
   --------------------------------------------------------------------------- */

.bento-section {
    padding: var(--section-py) 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
    border-bottom: 1px solid var(--border-0);
}

.bento-header {
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

/* Layout assignments */
.bento-tall  { grid-column: span 5; grid-row: span 2; }
.bento-stat  { grid-column: span 3; }
.bento-wide  { grid-column: span 7; }
.bento-medium { grid-column: span 5; }
.bento-pill  { grid-column: span 4; }

.bento-card {
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-card);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-card);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.bento-card[data-glow="purple"]::before {
    background: radial-gradient(ellipse at top left, rgba(139,92,246,0.12) 0%, transparent 65%);
}
.bento-card[data-glow="pink"]::before {
    background: radial-gradient(ellipse at top right, rgba(236,72,153,0.12) 0%, transparent 65%);
}
.bento-card[data-glow="orange"]::before {
    background: radial-gradient(ellipse at bottom right, rgba(249,115,22,0.12) 0%, transparent 65%);
}
.bento-card[data-glow="green"]::before {
    background: radial-gradient(ellipse at bottom left, rgba(16,185,129,0.10) 0%, transparent 65%);
}

.bento-card:hover {
    border-color: var(--border-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}
.bento-card:hover::before { opacity: 1; }

.bento-card-inner {
    position: relative;
    z-index: 1;
}

.bento-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-3);
    border: 1px solid var(--border-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    margin-bottom: 8px;
}

.bento-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-0);
    line-height: 1.3;
    margin-bottom: 10px;
}

.bento-desc {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
}

/* Stat cards */
.bento-stat {
    align-items: flex-start;
    justify-content: space-between;
}

.bento-stat-number {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.bento-stat-label {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 16px;
}

.bento-lightning {
    position: absolute;
    bottom: 20px;
    right: 24px;
    opacity: 0.5;
}

/* Template pills */
.bento-template-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tpill {
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--bg-3);
    border: 1px solid var(--border-1);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.2s;
}

.tpill.active {
    background: rgba(236,72,153,0.12);
    border-color: rgba(236,72,153,0.25);
    color: var(--accent-pink);
}

/* Brand switcher visual */
.brand-switcher-visual {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.brand-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--bg-3);
    border: 1px solid var(--border-1);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s;
}

.brand-btn-active {
    background: rgba(221,42,123,0.12);
    border-color: rgba(221,42,123,0.25);
    color: var(--text-0);
}

.brand-btn-add {
    color: var(--text-3);
    border-style: dashed;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Brand consistency visual */
.brand-consistency-visual {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-3);
    border-radius: 10px;
    border: 1px solid var(--border-0);
}

.bc-label {
    font-size: 12px;
    color: var(--text-3);
    width: 80px;
    flex-shrink: 0;
}

.bc-swatches {
    display: flex;
    gap: 6px;
    flex: 1;
}

.bc-swatch {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.bc-font-sample {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: 0.1em;
}

.bc-logo-area { flex: 1; }

.bc-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Caption terminal */
.bento-visual-caption {
    margin-top: auto;
}

.caption-terminal {
    background: var(--bg-0);
    border: 1px solid var(--border-1);
    border-radius: 12px;
    overflow: hidden;
}

.terminal-dots {
    display: flex;
    gap: 6px;
    padding: 12px 14px 8px;
    border-bottom: 1px solid var(--border-0);
}
.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-1);
}
.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #28ca41; }

.terminal-lines {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t-line {
    font-size: 12px;
    line-height: 1.6;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.t-prompt { color: var(--text-3); }
.t-prompt::before { content: '> '; color: var(--accent-pink); }

.t-output {
    color: var(--text-1);
    line-height: 1.7;
}

.t-typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typeIn 3s steps(80, end) infinite;
    border-right: 2px solid var(--accent-pink);
}

@keyframes typeIn {
    0% { width: 0; opacity: 1; }
    80% { width: 100%; opacity: 1; }
    95% { width: 100%; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

.t-meta { color: var(--text-3); font-size: 11px; }
.t-meta::before { content: '# '; }

/* Download preview */
.dl-preview { margin-top: auto; }

.dl-file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-3);
    border-radius: 12px;
    border: 1px solid var(--border-1);
}

.dl-file-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-green);
    flex-shrink: 0;
}

.dl-file-meta { flex: 1; }
.dl-name { font-size: 13px; font-weight: 600; color: var(--text-0); }
.dl-size { font-size: 11px; color: var(--text-3); margin-top: 2px; }

.dl-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(16,185,129,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* AWS pill stack */
.pill-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pill-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-3);
    border: 1px solid var(--border-1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
}

/* ---------------------------------------------------------------------------
   EXAMPLES
   --------------------------------------------------------------------------- */

.examples-section {
    padding: var(--section-py) 0;
}

.examples-header {
    margin-bottom: 48px;
}

/* Brand tabs */
.brand-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.brand-tab:hover { color: var(--text-0); border-color: var(--border-2); }
.brand-tab.active {
    background: rgba(236,72,153,0.10);
    border-color: rgba(236,72,153,0.25);
    color: var(--accent-pink);
}

.tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.ex-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-1);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.ex-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.ex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(221,42,123,0.10);
    border-color: var(--border-2);
}
.ex-card:hover img { transform: scale(1.05); }

.ex-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.ex-card:hover .ex-card-overlay { opacity: 1; }

.ex-type {
    background: rgba(236,72,153,0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.ex-client {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* Hide filter */
.ex-card.hidden {
    display: none;
}

.examples-footer {
    text-align: center;
}
.examples-note {
    font-size: 14px;
    color: var(--text-3);
}

/* ---------------------------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------------------------- */

.hiw-section {
    padding: var(--section-py) 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
    border-bottom: 1px solid var(--border-0);
}

.hiw-header { margin-bottom: 80px; }

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
    position: relative;
}

.hiw-step-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-3);
    letter-spacing: 0.08em;
    font-family: 'SF Mono', monospace;
    padding-top: 4px;
}

.hiw-step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-0);
    margin-bottom: 12px;
    line-height: 1.3;
}
.hiw-step-content p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
}

.hiw-step-visual { display: flex; justify-content: flex-end; }

.hiw-connector {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-1) 20%, var(--border-1) 80%, transparent);
    margin: 0 80px;
}

/* Step visuals */
.step-card-upload,
.step-card-config,
.step-card-generate,
.step-card-download {
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 320px;
}

.step-card-upload {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upload-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-2);
}

.upload-files {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uf {
    padding: 8px 12px;
    background: var(--bg-3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    font-family: 'SF Mono', monospace;
}

.step-card-config {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-3);
    border-radius: 10px;
}
.cr-label { font-size: 12px; color: var(--text-3); }
.cr-value { font-size: 12px; font-weight: 600; color: var(--text-1); text-align: right; }

.step-card-generate { display: flex; flex-direction: column; gap: 16px; }

.gen-progress { display: flex; flex-direction: column; gap: 8px; }
.gen-bar {
    height: 6px;
    background: var(--bg-4);
    border-radius: 3px;
    overflow: hidden;
}
.gen-fill {
    height: 100%;
    width: 76%;
    background: var(--ig-grad);
    border-radius: 3px;
    animation: genFill 3s ease-in-out infinite;
}
@keyframes genFill {
    0% { width: 10%; }
    70% { width: 76%; }
    90% { width: 76%; }
    100% { width: 10%; }
}
.gen-status { font-size: 11px; color: var(--text-3); font-family: monospace; }

.gen-preview-row { display: flex; gap: 8px; }
.gen-thumb {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-1);
    opacity: 0.5;
    transition: opacity 0.3s;
}
.gen-thumb-active { opacity: 1; border-color: var(--accent-pink); }
.gen-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.step-card-download { display: flex; flex-direction: column; gap: 12px; }
.dl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.dl-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-1);
}
.dl-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.18);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-green);
    justify-content: center;
}

/* ---------------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------
   Pricing — billing toggle
   --------------------------------------------------------------------------- */

.billing-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.billing-opt {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-3);
    transition: color 0.2s;
    cursor: pointer;
    user-select: none;
}
.billing-opt.active { color: var(--text-0); font-weight: 600; }

.billing-switch {
    position: relative;
    width: 46px;
    height: 26px;
    background: var(--bg-4);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}
.billing-switch.is-annual {
    background: rgba(221,42,123,0.25);
    border-color: rgba(221,42,123,0.4);
}
.billing-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
    transition: transform 0.28s var(--ease-spring);
}
.billing-switch.is-annual .billing-knob { transform: translateX(20px); }

.billing-save-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(16,185,129,0.10);
    color: #10B981;
    border: 1px solid rgba(16,185,129,0.22);
    border-radius: 100px;
    letter-spacing: 0.03em;
}

/* ---------------------------------------------------------------------------
   Pricing — section & grid
   --------------------------------------------------------------------------- */

.pricing-section {
    padding: var(--section-py) 0;
}

.pricing-header { margin-bottom: 64px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1060px;
    margin: 0 auto 40px;
    align-items: start;
}

/* ---------------------------------------------------------------------------
   Pricing — cards
   --------------------------------------------------------------------------- */

.pricing-card {
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-card);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Left card — round right corners off so it butts against Pro */
.pricing-card:first-child {
    border-radius: var(--radius-card) 0 0 var(--radius-card);
    border-right: none;
}
/* Right card — round left corners off */
.pricing-card:last-child {
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    border-left: none;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    z-index: 1;
}

/* Featured (Pro) — gradient border, elevated */
.pricing-card-featured {
    /* Gradient border via background-clip */
    border: 1.5px solid transparent;
    border-radius: var(--radius-card);
    background:
        linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
        linear-gradient(160deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%) border-box;
    box-shadow:
        0 0 0 8px rgba(221,42,123,0.06),
        0 0 60px rgba(221,42,123,0.14),
        0 0 100px rgba(129,52,175,0.08),
        0 24px 64px rgba(0,0,0,0.5);
    transform: translateY(-12px) scale(1.02);
    z-index: 2;
    padding: 36px 32px 32px;
}
.pricing-card-featured:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 0 0 8px rgba(221,42,123,0.08),
        0 0 80px rgba(221,42,123,0.2),
        0 0 120px rgba(129,52,175,0.12),
        0 32px 80px rgba(0,0,0,0.6);
}

.pricing-card-enterprise {
    border-color: rgba(139,92,246,0.2);
    background: linear-gradient(145deg, rgba(139,92,246,0.03) 0%, var(--bg-2) 50%);
}

/* ---------------------------------------------------------------------------
   Pricing — badge & capacity pill
   --------------------------------------------------------------------------- */

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ig-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(221,42,123,0.35);
}

.plan-cap-pill {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-3);
    background: var(--bg-3);
    border: 1px solid var(--border-1);
    border-radius: 6px;
    padding: 4px 10px;
    width: fit-content;
}
.plan-cap-featured {
    background: rgba(236,72,153,0.08);
    border-color: rgba(236,72,153,0.2);
    color: #EC4899;
}
.plan-cap-agency {
    background: rgba(139,92,246,0.08);
    border-color: rgba(139,92,246,0.2);
    color: #8B5CF6;
}

/* ---------------------------------------------------------------------------
   Pricing — plan header & price block
   --------------------------------------------------------------------------- */

.plan-header { display: flex; flex-direction: column; gap: 4px; }

.plan-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.02em;
}

.plan-tagline {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.4;
}

.plan-price-block { display: flex; flex-direction: column; gap: 6px; }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.price-dollar {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-2);
    align-self: flex-start;
    margin-top: 10px;
}

.price-amount {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    color: var(--text-0);
    line-height: 1;
    letter-spacing: -0.04em;
    transition: all 0.3s var(--ease);
}

.price-period {
    font-size: 15px;
    color: var(--text-3);
    font-weight: 500;
}

.price-meta {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.plan-divider {
    height: 1px;
    background: var(--border-0);
    margin: 0 -4px;
}

/* ---------------------------------------------------------------------------
   Pricing — features list
   --------------------------------------------------------------------------- */

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.45;
}

.plan-features li svg { flex-shrink: 0; margin-top: 1px; }

/* ---------------------------------------------------------------------------
   Pricing — CTA block
   --------------------------------------------------------------------------- */

.plan-cta-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-foot {
    font-size: 11.5px;
    color: var(--text-3);
    text-align: center;
    line-height: 1.5;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 28px;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.14);
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-2);
}

/* ---------------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------------- */

.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
}

.faq-header { margin-bottom: 56px; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-0);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-0);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-pink); }

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-3);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--accent-pink); }

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-a p {
    padding-bottom: 22px;
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.8;
}

.faq-item.open .faq-a { max-height: 500px; }

/* ---------------------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------------------- */

.final-cta {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg-0);
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221,42,123,0.20) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(129,52,175,0.15) 0%, transparent 70%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-80%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(236,72,153,0.08);
    border: 1px solid rgba(236,72,153,0.20);
    border-radius: var(--radius-pill);
    color: var(--accent-pink);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.cta-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-0);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-fine {
    font-size: 13px;
    color: var(--text-3);
}

/* ---------------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------------- */

.footer {
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
    padding-top: 72px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    padding-bottom: 64px;
}

.footer-brand { max-width: 380px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.8; }

.footer-tagline {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-email {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-pink);
    transition: color 0.2s;
}
.footer-email:hover { color: var(--ig-pink); text-decoration: underline; }

.footer-nav {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-0); }

.footer-bottom {
    border-top: 1px solid var(--border-0);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-3);
}

.footer-domain {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
}

/* ---------------------------------------------------------------------------
   RESPONSIVE — 1200px
   --------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-tall  { grid-column: span 3; grid-row: span 2; }
    .bento-stat  { grid-column: span 3; }
    .bento-wide  { grid-column: span 6; }
    .bento-medium { grid-column: span 3; }
    .bento-pill  { grid-column: span 3; }

    .pricing-grid { gap: 0; }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }
    .stat-divider:nth-child(2) { display: none; }
    .stat-divider:nth-child(4) { display: none; }
    .stat-divider:nth-child(6) { display: none; }
    .stat-item { padding: 32px; border-bottom: 1px solid var(--border-0); }
    .stat-item:nth-child(n+5) { border-bottom: none; }
}

/* ---------------------------------------------------------------------------
   RESPONSIVE — 1024px
   --------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root { --section-py: 72px; }

    .hero {
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-copy { max-width: 100%; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-proof { display: flex; justify-content: center; }

    .hero-visual { max-width: 420px; margin: 0 auto; }

    .chip-ai, .chip-speed, .chip-brand { display: none; }

    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; }

    .examples-grid { grid-template-columns: repeat(3, 1fr); }

    .hiw-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }
    .hiw-step-visual { display: none; }

    .hiw-header { margin-bottom: 48px; }
    .value-header { margin-bottom: 48px; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; gap: 16px; margin: 0 auto 40px; }
    /* Restore full border-radius when stacked */
    .pricing-card,
    .pricing-card:first-child,
    .pricing-card:last-child {
        border-radius: var(--radius-card) !important;
        border: 1px solid var(--border-1) !important;
    }
    .pricing-card-featured {
        border: 1.5px solid transparent !important;
        order: -1;
        transform: none !important;
    }

    .footer-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-nav { flex-wrap: wrap; gap: 40px; }

    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-tall, .bento-stat, .bento-wide, .bento-medium, .bento-pill {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-tall, .bento-wide { grid-column: span 2; }
}

/* ---------------------------------------------------------------------------
   RESPONSIVE — 768px
   --------------------------------------------------------------------------- */

@media (max-width: 768px) {
    :root { --section-py: 56px; }

    .container { padding: 0 16px; }

    /* Hero — single column, compact */
    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 0;
    }
    .hero-container {
        padding-top: 32px;
        padding-bottom: 40px;
        gap: 36px;
    }
    .hero-title { font-size: clamp(30px, 7.5vw, 44px); }
    .hero-sub { font-size: 15px; margin-bottom: 24px; }
    .hero-badge { margin-bottom: 18px; }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }
    .btn-large { width: 100%; max-width: 320px; justify-content: center; }

    /* Vertical tabs — scrollable row on mobile */
    .ig-vertical-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        gap: 6px;
        padding-bottom: 8px;
    }
    .ig-vertical-tabs::-webkit-scrollbar { display: none; }
    .ig-vtab {
        flex: 0 0 auto;
        min-width: 80px;
        padding: 7px 8px;
        font-size: 11px;
    }

    /* Hero visual — constrained, not enormous */
    .hero-visual {
        max-width: 340px;
        margin: 0 auto;
    }

    /* Stats — 2×2 grid instead of single column stacking */
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0;
        padding: 0;
        border-radius: var(--radius-card);
        overflow: hidden;
    }
    .stat-divider { display: none !important; }
    /* Override the 1200px 32px padding with specificity */
    .stats-row .stat-item,
    .stat-item {
        padding: 20px 12px !important;
        border-bottom: 1px solid var(--border-0);
        border-right: 1px solid var(--border-0);
        border-radius: 0;
    }
    .stats-row .stat-item:nth-child(2n) { border-right: none; }
    .stats-row .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    /* Reset the 1200px nth-child(n+5) border-none override */
    .stat-item:nth-child(n+5) { border-bottom: 1px solid var(--border-0); }
    .stats-row .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .stat-number { font-size: clamp(26px, 7vw, 38px); }
    .stat-label { font-size: 12px; max-width: none; }

    /* Value section header spacing */
    .value-header { margin-bottom: 32px; }
    .bento-header { margin-bottom: 32px; }
    .hiw-header { margin-bottom: 40px; }
    .examples-header { margin-bottom: 28px; }
    .pricing-header { margin-bottom: 36px; }
    .faq-header { margin-bottom: 32px; }
    .testimonials-header { margin-bottom: 32px; }

    .section-desc { font-size: 15px; }

    /* Examples grid — 2 columns on mobile */
    .examples-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Bento — single column on mobile, compact padding */
    .bento-grid { grid-template-columns: 1fr; gap: 12px; }
    .bento-tall, .bento-stat, .bento-wide, .bento-medium, .bento-pill {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-card { padding: 24px; gap: 16px; }
    .bento-title { font-size: 18px; }

    /* How it works — compact */
    .hiw-step {
        grid-template-columns: 1fr;
        padding: 28px 0;
        gap: 16px;
    }
    .hiw-step-num { display: none; }
    .hiw-step-content h3 { font-size: 18px; }
    .hiw-step-content p { font-size: 14px; }
    .hiw-connector { display: none; }

    /* Pricing + testimonials grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 12px;
    }
    .pricing-card,
    .pricing-card:first-child,
    .pricing-card:last-child {
        border-radius: var(--radius-card) !important;
        border: 1px solid var(--border-1) !important;
    }
    .pricing-card-featured {
        border: 1.5px solid transparent !important;
        transform: none !important;
    }
    .pricing-card { padding: 24px; gap: 16px; }

    /* Footer */
    .footer { padding-top: 40px; }
    .footer-inner { gap: 32px; padding-bottom: 32px; }
    .footer-nav { gap: 28px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

    /* CTA */
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-large { width: 100%; max-width: 320px; justify-content: center; }
    .cta-sub { font-size: 15px; }

    /* Marquee */
    .marquee-section { padding: 40px 0; }
    .marquee-reel img { height: 160px; }
    .marquee-fade-l, .marquee-fade-r { width: 48px; }

    /* Stats bar section */
    .stats-bar-section { padding: 32px 0; }

    /* Reveal animation — reduce translateY on mobile to prevent large layout gaps */
    .reveal {
        transform: translateY(12px);
    }
}

/* ---------------------------------------------------------------------------
   RESPONSIVE — 480px
   --------------------------------------------------------------------------- */

@media (max-width: 480px) {
    :root { --section-py: 44px; }

    .container { padding: 0 16px; }

    /* Hero even more compact */
    .hero-container {
        padding-top: 24px;
        padding-bottom: 32px;
        gap: 28px;
    }
    .hero-title { font-size: clamp(28px, 8vw, 38px); }
    .hero-visual { max-width: 100%; }
    .ig-profile-card { border-radius: 14px; }

    /* Tabs — 2×2 wrap on very small screens */
    .ig-vertical-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: visible;
        padding-bottom: 0;
        gap: 6px;
    }
    .vtab-progress { display: none; }
    .ig-vtab { flex: unset; min-width: unset; font-size: 12px; padding: 8px 4px; }

    /* Stats — 2×2 grid, fully card style at 480px */
    .stats-row {
        background: transparent;
        border: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stats-row .stat-item,
    .stat-item {
        background: var(--bg-2);
        border: 1px solid var(--border-1) !important;
        border-radius: 14px;
        padding: 18px 12px !important;
    }
    /* Reset the border overrides from 768px — cards have their own borders */
    .stats-row .stat-item:nth-child(2n) { border-right: 1px solid var(--border-1) !important; }
    .stats-row .stat-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-1) !important; }
    .stat-item:nth-child(n+5) { border-bottom: 1px solid var(--border-1) !important; }

    .stat-number { font-size: clamp(24px, 8vw, 34px); }
    .stat-label { font-size: 11px; }

    /* Bento cards even more compact */
    .bento-card { padding: 20px; }

    /* Examples — 2 columns maintained but tighter */
    .examples-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ---------------------------------------------------------------------------
   STATS BAR (standalone section between marquee and problem)
   --------------------------------------------------------------------------- */

.stats-bar-section {
    padding: 60px 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border-0);
    border-bottom: 1px solid var(--border-0);
}

/* ---------------------------------------------------------------------------
   TESTIMONIALS SECTION
   --------------------------------------------------------------------------- */

.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--bg-0);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

/* ---------------------------------------------------------------------------
   Hero cost callout
   --------------------------------------------------------------------------- */

.hero-cost-callout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 10px 20px;
    background: rgba(245,133,41,0.08);
    border: 1px solid rgba(245,133,41,0.22);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: #F58529;
    letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------------------
   Pricing — comparison table
   --------------------------------------------------------------------------- */

.pricing-comparison {
    max-width: 900px;
    margin: 0 auto 56px;
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.comparison-label {
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    border-bottom: 1px solid var(--border-0);
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    padding: 14px 28px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-3);
    background: var(--bg-1);
    border-bottom: 1px solid var(--border-0);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-0);
    transition: background 0.2s;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover:not(.comparison-total) {
    background: rgba(255,255,255,0.02);
}

.comparison-table td {
    padding: 14px 28px;
    color: var(--text-2);
    vertical-align: middle;
}

.comparison-table .cost-col {
    color: var(--text-3);
    white-space: nowrap;
}

.comparison-table .included-col {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #10B981;
    font-weight: 600;
    white-space: nowrap;
}

.comparison-table .comparison-total td {
    background: rgba(245,133,41,0.05);
    border-top: 1px solid rgba(245,133,41,0.15);
    color: var(--text-1);
    font-weight: 700;
}

.comparison-table .total-postla {
    color: #F58529 !important;
    font-size: 16px;
}

/* ---------------------------------------------------------------------------
   Pricing — plan value stack (bonus items)
   --------------------------------------------------------------------------- */

.plan-value-stack {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-0);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-value-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.value-bonus {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
}

.value-amount {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
    white-space: nowrap;
}

.plan-value-total {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border-0);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-1);
    text-align: center;
}

/* ---------------------------------------------------------------------------
   Pricing — setup fee note
   --------------------------------------------------------------------------- */

.pricing-setup-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-3);
    margin: -16px auto 32px;
    max-width: 500px;
}

/* ---------------------------------------------------------------------------
   Pricing — "Content or Free" guarantee (featured treatment)
   --------------------------------------------------------------------------- */

.pricing-guarantee-featured {
    max-width: 820px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    padding: 2px; /* border thickness via gradient wrapper */
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    box-shadow: 0 0 60px rgba(221,42,123,0.14), 0 0 120px rgba(129,52,175,0.08);
}

.guarantee-inner {
    background: var(--bg-1);
    border-radius: calc(var(--radius-card) - 2px);
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245,133,41,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.guarantee-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-2);
}

/* ---------------------------------------------------------------------------
   Responsive adjustments for new pricing components
   --------------------------------------------------------------------------- */

@media (max-width: 900px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
    }

    .guarantee-inner {
        flex-direction: column;
        gap: 16px;
        padding: 28px 24px;
    }

    .guarantee-icon {
        width: 44px;
        height: 44px;
    }

    .plan-value-line {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 600px) {
    .hero-cost-callout {
        font-size: 13px;
        padding: 9px 16px;
    }

    .plan-value-stack {
        padding: 12px 12px;
    }

    .pricing-guarantee-featured {
        border-radius: 16px;
        padding: 2px;
    }

    .guarantee-inner {
        border-radius: 14px;
        padding: 24px 20px;
    }

    .guarantee-title {
        font-size: 16px;
    }
}

/* ---------------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
