/* =========================================
   Root Tokens
========================================= */
:root {
    --black: #080809;
    --off-black: #0e0e10;
    --card-bg: #111114;
    --border: rgba(255,255,255,0.07);
    --white: #ffffff;
    --muted: #888899;
    --green: #00E87A;
    --green-dark: #00c468;
    --red-accent: #ff3d5a;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.container-sm {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

/* =========================================
   TICKER
========================================= */
.ticker-wrap {
    background: var(--green);
    color: #000;
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Mid-page ticker (e.g. under hero CTAs) — not pinned to top of viewport */
.ticker-wrap--embed {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 900px);
    max-width: 900px;
    margin: 28px auto 0;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ticker {
    display: inline-block;
    animation: ticker 28s linear infinite;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ticker span {
    margin-right: 40px;
}

.ticker-dot {
    margin: 0 8px;
    opacity: 0.5;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   HERO
========================================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px 48px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Text block — uses container-sm already applied in HTML */
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Wider hero container on desktop (more horizontal feel) */
.hero-inner--wide {
    max-width: 980px;
}

/* Keep hero-text as alias for old targeting */
.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Hero h1 — centered, big display */
.hero-inner h1,
.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    line-height: 0.93;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-inner h1 .line-1,
.hero-text h1 .line-1 { color: var(--white); }

.hero-inner h1 .line-2,
.hero-text h1 .line-2 {
    color: var(--white);
    -webkit-text-stroke: 2px var(--white);
}
.hero-inner h1 .line-3,
.hero-text h1 .line-3 {
    color: transparent;
    -webkit-text-stroke: 2px var(--muted);
}

em.green {
    font-style: normal;
    color: var(--green);
    -webkit-text-stroke: 0;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 24px auto;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 20px;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
}

.hero-cta-group .btn-primary,
.hero-cta-group .btn-secondary {
    flex: 1 1 auto;
    min-width: min(100%, 220px);
    justify-content: center;
    margin-top: 0;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.3px;
    margin-top: 8px;
    margin-bottom: 0;
}

/* CTA Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--green);
    color: #000;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease;
    box-shadow: 0 8px 28px rgba(0, 232, 122, 0.25);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0, 232, 122, 0.4);
}

.btn-primary:hover::after { opacity: 1; }

.btn-badge {
    background: rgba(0,0,0,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(0, 232, 122, 0.5);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(0, 232, 122, 0.09);
    box-shadow:
        0 0 0 1px rgba(0, 232, 122, 0.12),
        0 0 28px rgba(0, 232, 122, 0.35),
        0 0 56px rgba(0, 232, 122, 0.12);
    transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.25s ease;
    margin-top: 20px;
    animation: btn-secondary-glow 3.2s ease-in-out infinite;
}

@keyframes btn-secondary-glow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(0, 232, 122, 0.15),
            0 0 26px rgba(0, 232, 122, 0.32),
            0 0 52px rgba(0, 232, 122, 0.1);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(0, 232, 122, 0.28),
            0 0 36px rgba(0, 232, 122, 0.5),
            0 0 72px rgba(0, 232, 122, 0.18);
    }
}

.btn-secondary:hover {
    border-color: var(--green);
    background: rgba(0, 232, 122, 0.16);
    transform: translateX(4px);
    animation: none;
    box-shadow:
        0 0 0 1px rgba(0, 232, 122, 0.35),
        0 0 40px rgba(0, 232, 122, 0.55),
        0 0 80px rgba(0, 232, 122, 0.22);
}

.btn-huge {
    font-size: 1.2rem;
    padding: 22px 44px;
    width: 100%;
    max-width: 520px;
    justify-content: center;
    border-radius: 14px;
    margin: 0 auto 24px auto;
    display: flex;
}

/* =========================================
   CRED BAR
========================================= */
.cred-bar {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cred-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.cred-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cred-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
}

.cred-desc {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cred-sep {
    font-size: 2rem;
    color: var(--border);
    margin: 0 8px;
}

/* =========================================
   PROBLEM SECTION
========================================= */
.section-problem {
    padding: 72px 0;
}

.section-problem > .container + .container {
    margin-top: 48px;
}

.problem-header {
    max-width: 760px;
    margin: 0 auto 44px auto;
    text-align: center;
}

.problem-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.section-body {
    font-size: 1.05rem;
    color: var(--muted);
    text-align: center;
}

.underline-red {
    text-decoration: underline;
    text-decoration-color: var(--red-accent);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.underline-green,
strong.underline-green {
    text-decoration: underline;
    text-decoration-color: var(--green);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

/* Body emphasis — hooks scan without looking like links */
.hero-sub strong,
.cta-note strong,
.section-body strong,
.about-text p strong:not(.green),
.inside-sub strong,
.bento-desc strong,
.pricing-sub strong,
.pricing-desc strong,
.pricing-features li strong,
.testi-quote strong,
.testi-eyebrow strong {
    color: var(--white);
    font-weight: 700;
}

.problem-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Horizontal row on wide screens — less vertical scroll */
@media (min-width: 960px) {
    .problem-list--horizontal {
        max-width: 1160px;
        flex-direction: row;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
    }

    .problem-list--horizontal .problem-item {
        flex: 1;
        flex-direction: column;
        gap: 18px;
        padding: 36px 28px;
        border-bottom: none;
        border-right: 1px solid var(--border);
        min-height: 0;
    }

    .problem-list--horizontal .problem-item:last-child {
        border-right: none;
    }

    .problem-list--horizontal .problem-item:hover {
        background: rgba(0, 232, 122, 0.04);
    }

    .problem-list--horizontal .problem-num {
        font-size: 2.75rem;
        min-width: 0;
    }

    .problem-list--horizontal .problem-content h3 {
        font-size: 1.2rem;
    }

    .problem-list--horizontal .problem-content p {
        font-size: 0.95rem;
    }
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.problem-item:hover .problem-num {
    color: var(--red-accent);
}

.problem-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--border);
    line-height: 1;
    transition: color 0.3s;
    min-width: 70px;
}

.problem-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.problem-content p strong {
    color: var(--white);
    font-weight: 700;
}

.problem-content p .underline-red {
    color: var(--white);
}

/* =========================================
   ABOUT SECTION
========================================= */
.section-about {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-photo-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 8s ease;
}

.about-photo-wrap:hover .about-photo {
    transform: scale(1.05);
}

.about-text {
    text-align: left;
    background: transparent;
}

.about-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: 1px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-text p strong.green {
    color: var(--green);
    font-weight: 700;
}

/* =========================================
   COMMUNITY — brand + hub preview
========================================= */
.section-community {
    padding: 56px 0 64px 0;
}

.community-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: stretch;
    padding: 44px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 232, 122, 0.28);
    background: linear-gradient(155deg, rgba(13, 26, 19, 0.95) 0%, rgba(10, 10, 12, 0.98) 55%, #0a0a0c 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.community-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.community-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    letter-spacing: 0.5px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.community-lead {
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 520px;
}

.community-lead strong {
    color: var(--white);
    font-weight: 700;
}

.community-points {
    list-style: none;
    margin: 0 0 26px 0;
    padding: 0;
}

.community-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.cp-icon {
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.community-cta {
    display: inline-flex;
    justify-content: center;
}

.community-preview {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    min-height: 280px;
}

.community-preview-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border);
}

.cp-dots {
    display: inline-flex;
    gap: 6px;
}

.cp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.cp-dot:nth-child(1) { background: #ff5f57; }
.cp-dot:nth-child(2) { background: #febc2e; }
.cp-dot:nth-child(3) { background: #28c840; }

.cp-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.community-preview-body {
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.cp-msg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 100%;
}

.cp-msg--reply {
    align-self: flex-end;
    background: rgba(0, 232, 122, 0.08);
    border-color: rgba(0, 232, 122, 0.22);
}

.cp-author {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8b8b9a;
}

.cp-author--mod {
    color: var(--green);
}

.cp-text {
    font-size: 0.88rem;
    color: #d4d4de;
    line-height: 1.45;
}

/* =========================================
   INSIDE — BENTO GRID
========================================= */
.section-inside {
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

/* Animated canvas grid background */
#bento-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

.section-inside .container {
    position: relative;
    z-index: 1;
}

.inside-header {
    text-align: center;
    margin-bottom: 40px;
}

.inside-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.inside-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 1px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.inside-sub {
    font-size: 1rem;
    color: var(--muted);
}

/* ─── BENTO GRID ─── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                border-color 0.3s ease,
                box-shadow 0.35s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Hero card — spans 2 cols */
.bento-hero {
    grid-column: span 2;
    background: linear-gradient(135deg, #0d1a13 0%, #0a110e 100%);
    border-color: rgba(0,232,122,0.25);
}

.bento-hero:hover {
    border-color: rgba(0,232,122,0.55);
    box-shadow: 0 0 60px rgba(0,232,122,0.1), 0 20px 50px rgba(0,0,0,0.4);
}

.bento-hero-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0,232,122,0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.bento-tag {
    display: inline-block;
    background: rgba(0,232,122,0.12);
    border: 1px solid rgba(0,232,122,0.3);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.bento-icon-lg {
    margin-bottom: 20px;
}

.bento-icon-sm {
    margin-bottom: 16px;
}

.bento-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.bento-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Step pills */
.bento-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.step-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.bento-hero:hover .step-pill {
    background: rgba(0,232,122,0.08);
    color: var(--green);
    border-color: rgba(0,232,122,0.2);
}

/* DM Preview widget */
.bento-dm-preview {
    margin-top: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.dm-line.reply { justify-content: flex-end; }

.dm-you {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--muted);
    min-width: 30px;
}

.dm-them {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--green);
    min-width: 40px;
    text-align: right;
}

.dm-text {
    background: var(--off-black);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #ccc;
}

.dm-line.reply .dm-text {
    background: rgba(0,232,122,0.12);
    color: var(--green);
}

/* Speed bar widget */
.bento-speed-bar {
    margin-top: 18px;
}

.speed-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.speed-track {
    background: rgba(255,255,255,0.06);
    height: 5px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.speed-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--green), #00ffaa);
    border-radius: 10px;
    transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-ai.visible .speed-fill { width: 92%; }

.speed-val {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 700;
}

/* Avatar row */
.avatar-row {
    display: flex;
    margin-top: 18px;
    gap: 0;
}

.av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    border: 2px solid var(--card-bg);
    margin-right: -8px;
    transition: transform 0.2s;
}

.av:hover { transform: translateY(-3px); z-index: 2; }

.av-more {
    background: rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 0;
}

/* Responsive bento */
@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-hero { grid-column: span 2; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-hero { grid-column: span 1; }
}

/* =========================================
   TESTIMONIALS CAROUSEL
========================================= */
.section-testimonials {
    padding: 64px 0;
    background: var(--off-black);
    overflow: hidden;
}

.testi-header-wrap {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 24px;
}

.testi-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testi-header-wrap h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 1px;
    line-height: 1.05;
}

/* Carousel viewport — clips overflow and adds fade edges */
.carousel-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.carousel-viewport::before,
.carousel-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.carousel-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--off-black), transparent);
}

.carousel-viewport::after {
    right: 0;
    background: linear-gradient(-90deg, var(--off-black), transparent);
}

/* The scrolling track—JS will set its width & animate translateX */
.carousel-track {
    display: flex;
    gap: 16px;
    padding: 12px 0 20px 0;
    will-change: transform;
    animation: carouselScroll 38s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    min-width: 340px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
}

.testi-card:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.testi-card--green {
    border-color: rgba(0,232,122,0.3);
    background: linear-gradient(135deg, #0a110e, var(--card-bg));
}

.testi-card--green:hover { border-color: rgba(0,232,122,0.6); }

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--muted);
}

.testi-quote {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.65;
    margin-bottom: 18px;
}

.testi-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* =========================================
   FINAL CTA
========================================= */
.section-cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,232,122,0.07) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.cta-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 26px;
}

.cta-headline .green {
    color: var(--green);
}

.cta-body {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.cta-body em {
    font-style: italic;
    color: var(--white);
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.time-unit {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    min-width: 90px;
}

.time-unit span {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--green);
}

.time-unit label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 4px;
}

.time-colon {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 24px;
}

.final-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 18px;
}

/* =========================================
   PRICING
========================================= */
.section-pricing {
    padding: 72px 0 48px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 10px;
}

.pricing-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.pro {
    border-color: var(--green);
    box-shadow: 0 10px 40px rgba(0, 232, 122, 0.1);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    right: 20px;
    background: var(--green);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-plan {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-cost {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.pricing-cost span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--muted);
    padding-bottom: 8px;
}

.pricing-desc {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 60px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pricing-feature-text {
    flex: 1;
    min-width: 0;
    line-height: 1.55;
}

/* Keep product name on one line (flex was splitting “Deal” / “Analyzer” across items) */
.pricing-feature-title {
    white-space: nowrap;
}

@media (max-width: 380px) {
    .pricing-feature-title {
        white-space: normal;
    }
}

.feature-icon {
    color: var(--green);
    margin-top: 2px;
}

.pricing-btn {
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid var(--border);
    color: var(--white);
    transition: all 0.2s;
    display: block;
}

.pricing-btn:hover {
    background: rgba(255,255,255,0.05);
}

.pricing-btn.pro-btn {
    background: var(--green);
    color: #000;
    border-color: var(--green);
}

.pricing-btn.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 232, 122, 0.2);
    background: var(--green-dark);
}

/* =========================================
   FOOTER
========================================= */
footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-legal {
    font-size: 0.75rem;
    color: #444;
    max-width: 500px;
}

/* =========================================
   SCROLL ANIMATIONS
========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0.1s);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.fade-up.visible,
.fade-in-right.visible,
.fade-in-left.visible {
    opacity: 1;
    transform: none;
}

/* Text utilities */
.green { color: var(--green); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .hero { padding: 44px max(20px, env(safe-area-inset-left)) 44px max(20px, env(safe-area-inset-right)); gap: 28px; }
    .about-image-col { height: 400px; }
    .about-text { padding: 48px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .inside-grid { grid-template-columns: 1fr 1fr; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .community-shell {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px max(16px, env(safe-area-inset-left)) 40px max(16px, env(safe-area-inset-right));
    }
    .hero-image-col { display: none; }
    .inside-grid { grid-template-columns: 1fr; }
    .cred-items {
        gap: 20px;
        justify-content: center;
    }
    .cred-sep { display: none; }
    .section-cta { padding: 80px 0; }
    .cta-headline { font-size: 2.4rem; }
    .problem-item { flex-direction: column; gap: 14px; }
    .problem-list--horizontal {
        flex-direction: column;
        border: none;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }
    .problem-list--horizontal .problem-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px 0;
    }
    .problem-list--horizontal .problem-item:last-child {
        border-bottom: none;
    }
    .about-text { padding: 40px 0; }
    .container,
    .container-sm {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-card {
        padding: 28px 22px;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        gap: 12px;
    }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        min-width: 0;
        margin-top: 0;
    }
    .hero-inner--wide {
        max-width: 720px;
    }
    .ticker-wrap--embed {
        width: min(100% - 24px, 900px);
        margin-top: 20px;
    }
    .ticker {
        font-size: 0.68rem;
    }
    .ticker span {
        margin-right: 28px;
    }
    .community-shell {
        padding: 28px 18px;
    }
    .community-preview {
        min-height: 0;
    }
    .testi-card {
        min-width: min(300px, calc(100vw - 48px));
        max-width: min(300px, calc(100vw - 48px));
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .hero-inner h1,
    .hero-text h1 {
        font-size: clamp(2.6rem, 11vw, 3.6rem);
    }
    .hero-sub {
        font-size: 1rem;
    }
    .cred-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .cred-item {
        padding: 8px 4px;
    }
}
