﻿/* ═══════════════════════════════════════════════════════════════════
   CoachLink Landing Page — Dark SaaS Commercial Stylesheet
   Design: Linear meets UFC Stats. Dark, fast, authoritative.
   ═══════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

:root {
    /* Backgrounds — aligned with design-system.css */
    --lp-bg: #0F172A;
    --lp-bg-elevated: #1E293B;
    --lp-card: #253347;

    /* Brand */
    --lp-primary: #e40101;
    --lp-primary-dark: #cc0101;
    --lp-cta: #e40101;
    --lp-cta-hover: #ff3333;

    /* Status */
    --lp-success: #22C55E;
    --lp-warning: #FACC15;
    --lp-danger: #EF4444;

    /* Text */
    --lp-text: #E2E8F0;
    --lp-text-secondary: #94A3B8;
    --lp-text-muted: #64748B;

    /* Borders */
    --lp-border: rgba(255,255,255,0.08);
    --lp-border-light: rgba(255,255,255,0.12);

    /* Typography */
    --lp-font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --lp-font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --lp-space-xs: 4px;
    --lp-space-sm: 8px;
    --lp-space-md: 12px;
    --lp-space-base: 16px;
    --lp-space-lg: 20px;
    --lp-space-xl: 24px;
    --lp-space-2xl: 32px;
    --lp-space-3xl: 48px;
    --lp-space-4xl: 64px;

    /* Radius */
    --lp-radius-sm: 6px;
    --lp-radius-md: 8px;
    --lp-radius-base: 10px;
    --lp-radius-lg: 12px;
    --lp-radius-xl: 16px;

    /* Shadows (dark-mode tuned) */
    --lp-shadow-sm: 0 2px 8px rgba(0,0,0,0.30);
    --lp-shadow-md: 0 8px 24px rgba(0,0,0,0.35);
    --lp-shadow-lg: 0 20px 50px rgba(0,0,0,0.40);
}


/* ── LAYOUT PRIMITIVES ── */
.lp-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: 80px 0;
    background: var(--lp-bg);
    color: var(--lp-text);
}

.lp-section-elevated {
    background: var(--lp-bg-elevated);
    color: var(--lp-text);
    padding: 80px 0;
}

.lp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.lp-section-header h2 {
    font-family: var(--lp-font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--lp-text);
    margin: 0 0 12px;
    line-height: 1.2;
}

.lp-section-sub {
    font-family: var(--lp-font-body);
    font-size: 1.1rem;
    color: var(--lp-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.lp-eyebrow {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lp-primary);
    margin: 0 0 8px;
}


/* ── NAV ── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15,23,42,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.lp-nav-brand img {
    height: 44px;
    width: auto;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.lp-nav-links a {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-nav-links a:hover { color: var(--lp-text); }

.lp-nav-links a.btn-cta,
.lp-nav-links a.btn-primary {
    color: #fff;
}

.lp-nav-links a.btn-cta:hover,
.lp-nav-links a.btn-primary:hover {
    color: #fff;
}


/* ── HERO ── */
.lp-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    gap: 48px;
    overflow: hidden;
    background: var(--lp-bg);
    max-width: 1200px;
    margin: 0 auto;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.lp-hero-content h1 {
    font-family: var(--lp-font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1.1;
    margin: 0 0 20px;
}

.lp-hero-sub {
    font-family: var(--lp-font-body);
    font-size: 1.15rem;
    color: var(--lp-text-secondary);
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 600px;
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-hero-cta-note {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin-top: 12px;
    line-height: 1.5;
}

.lp-hero-visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}


/* ── SOCIAL PROOF BAR ── */
.lp-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: var(--lp-bg-elevated);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-proof-bar p {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    letter-spacing: 0.3px;
    margin: 0;
    text-align: center;
}


/* ── PROBLEM CARDS ── */
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-problem-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-lg);
    padding: 36px 28px 32px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
}

.lp-problem-card.coach-accent    { border-top-color: var(--lp-cta); }
.lp-problem-card.promoter-accent { border-top-color: var(--lp-danger); }
.lp-problem-card.fighter-accent  { border-top-color: var(--lp-primary); }

/* Giant watermark icon */
.lp-problem-watermark {
    position: absolute;
    top: -12px;
    right: -8px;
    pointer-events: none;
}

.lp-problem-watermark .material-icons {
    font-size: 120px;
    opacity: 0.04;
    color: #fff;
}

.lp-problem-card.coach-accent .lp-problem-watermark .material-icons    { color: var(--lp-cta); opacity: 0.10; }
.lp-problem-card.promoter-accent .lp-problem-watermark .material-icons { color: var(--lp-danger); opacity: 0.10; }
.lp-problem-card.fighter-accent .lp-problem-watermark .material-icons  { color: var(--lp-primary); opacity: 0.10; }

/* Punchy stat line */
.lp-problem-stat {
    display: inline-block;
    font-family: var(--lp-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.lp-problem-card.coach-accent .lp-problem-stat    { color: var(--lp-cta); }
.lp-problem-card.promoter-accent .lp-problem-stat { color: var(--lp-danger); }
.lp-problem-card.fighter-accent .lp-problem-stat  { color: var(--lp-primary); }

.lp-problem-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.lp-problem-card p {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* ── PRODUCT OVERVIEW (3-col) ── */
.lp-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-overview-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 24px;
}

.lp-overview-card .lp-overview-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--lp-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-overview-icon.coach { background: rgba(228,1,1,0.12); }
.lp-overview-icon.coach .material-icons { color: var(--lp-primary); font-size: 24px; }

.lp-overview-icon.promoter { background: rgba(99,102,241,0.12); }
.lp-overview-icon.promoter .material-icons { color: #818CF8; font-size: 24px; }

.lp-overview-icon.fighter { background: rgba(249,115,22,0.12); }
.lp-overview-icon.fighter .material-icons { color: var(--lp-cta); font-size: 24px; }

.lp-overview-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 10px;
}

.lp-overview-card p {
    font-family: var(--lp-font-body);
    font-size: 0.925rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin: 0;
}


/* ── FEATURE SHOWCASE (chips + stacked) ── */
.lp-feature-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.lp-feature-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--lp-text-muted);
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.lp-feature-chip:hover {
    color: var(--lp-text-secondary);
    border-color: var(--lp-text-secondary);
}

.lp-feature-chip.active {
    color: var(--lp-primary);
    border-color: var(--lp-primary);
    background: rgba(228,1,1,0.08);
}

.lp-feature-chip.purple.active {
    color: #818CF8;
    border-color: #818CF8;
    background: rgba(99,102,241,0.08);
}

.lp-feature-chip.gold.active {
    color: var(--lp-warning);
    border-color: var(--lp-warning);
    background: rgba(250,204,21,0.08);
}

.lp-feature-chip.green.active {
    color: var(--lp-success);
    border-color: var(--lp-success);
    background: rgba(34,197,94,0.08);
}

.lp-feature-chip.danger.active {
    color: var(--lp-danger);
    border-color: var(--lp-danger);
    background: rgba(239,68,68,0.08);
}

.lp-feature-chip .material-icons {
    font-size: 18px;
}

.lp-feature-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.lp-feature-showcase-phone {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.lp-feature-media-button {
    border: 0;
    background: transparent;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: zoom-in;
}

.lp-feature-media-button:focus-visible {
    outline: 2px solid rgba(227, 30, 36, 0.65);
    outline-offset: 8px;
    border-radius: 16px;
}

.lp-feature-showcase-phone .lp-phone-frame {
    width: 100%;
    max-width: min(720px, 95vw);
    padding: 10px;
}

.lp-feature-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(2, 6, 14, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lp-feature-lightbox-content {
    max-width: min(1200px, 94vw);
    max-height: 90vh;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #060b16;
}

.lp-feature-lightbox-content img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.lp-feature-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(10, 15, 25, 0.88);
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lp-feature-lightbox-close:hover {
    background: rgba(227, 30, 36, 0.18);
    border-color: rgba(227, 30, 36, 0.45);
}

.lp-feature-showcase-detail {
    max-width: 560px;
}

.lp-feature-showcase-detail h3 {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 12px;
}

.lp-feature-showcase-detail p {
    font-family: var(--lp-font-body);
    font-size: 1rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Standalone feature icon (used in showcase) */
.lp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(228,1,1,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lp-feature-icon .material-icons {
    font-size: 22px;
    color: var(--lp-primary);
}

.lp-feature-icon.purple { background: rgba(99,102,241,0.10); }
.lp-feature-icon.purple .material-icons { color: #818CF8; }

.lp-feature-icon.gold { background: rgba(250,204,21,0.10); }
.lp-feature-icon.gold .material-icons { color: var(--lp-warning); }

.lp-feature-icon.green { background: rgba(34,197,94,0.10); }
.lp-feature-icon.green .material-icons { color: var(--lp-success); }

.lp-feature-icon.danger { background: rgba(239,68,68,0.10); }
.lp-feature-icon.danger .material-icons { color: var(--lp-danger); }

@media (max-width: 768px) {
    .lp-feature-chips {
        gap: 8px;
    }

    .lp-feature-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .lp-feature-chip .material-icons {
        font-size: 16px;
    }

    .lp-phone-frame {
        max-width: 220px;
    }

    .lp-feature-lightbox {
        padding: 14px;
    }

    .lp-feature-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}


/* ── FEATURE ROWS (staggered) ── */
.lp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.lp-feature-row:last-child {
    margin-bottom: 0;
}

.lp-feature-row.reverse {
    direction: rtl;
}

.lp-feature-row.reverse > * {
    direction: ltr;
}

.lp-feature-media {
    display: flex;
    justify-content: center;
}

.lp-feature-text h3 {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 12px;
}

.lp-feature-text p {
    font-family: var(--lp-font-body);
    font-size: 1rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.lp-feature-placeholder {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    background: var(--lp-card);
    border: 2px dashed var(--lp-border-light);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--lp-text-muted);
}

.lp-feature-placeholder .material-icons {
    font-size: 48px;
    opacity: 0.4;
}

.lp-feature-placeholder span:last-child {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Keep icon styling for feature rows */
.lp-feature-text .lp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(228,1,1,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.lp-feature-text .lp-feature-icon .material-icons {
    font-size: 22px;
    color: var(--lp-primary);
}

.lp-feature-text .lp-feature-icon.orange { background: rgba(249,115,22,0.10); }
.lp-feature-text .lp-feature-icon.orange .material-icons { color: var(--lp-cta); }

.lp-feature-text .lp-feature-icon.green { background: rgba(34,197,94,0.10); }
.lp-feature-text .lp-feature-icon.green .material-icons { color: var(--lp-success); }

.lp-feature-text .lp-feature-icon.purple { background: rgba(99,102,241,0.10); }
.lp-feature-text .lp-feature-icon.purple .material-icons { color: #818CF8; }

.lp-feature-text .lp-feature-icon.gold { background: rgba(250,204,21,0.10); }
.lp-feature-text .lp-feature-icon.gold .material-icons { color: var(--lp-warning); }

.lp-feature-text .lp-feature-icon.danger { background: rgba(239,68,68,0.10); }
.lp-feature-text .lp-feature-icon.danger .material-icons { color: var(--lp-danger); }


/* ── PHONE FRAME ── */
.lp-phone-frame {
    background: #0a0e17;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 14px;
    box-shadow: var(--lp-shadow-lg), 0 0 30px rgba(0,0,0,0.4);
    max-width: 280px;
    width: 100%;
}

.lp-phone-frame::before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    margin: 0 auto 10px;
}

.lp-phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}


/* ── LAPTOP FRAME (desktop screenshot mockup) ──
   Used in the hero to showcase the desktop event-details workspace.
   Renders an aluminum-style laptop body with a dark bezel screen and a
   thin base/hinge underneath. Image fills the screen, no inner padding. */
.lp-laptop-frame {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.lp-laptop-screen {
    background: #0a0e17;
    border: 10px solid #1a1f2e;
    border-bottom-width: 14px;
    border-radius: 14px 14px 6px 6px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-laptop-screen::before {
    /* Camera dot in the top bezel */
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2a3142;
    z-index: 2;
}

.lp-laptop-screen img {
    display: block;
    width: 100%;
    height: auto;
}

.lp-laptop-base {
    position: relative;
    width: 112%;
    margin: 0 auto;
    margin-left: -6%;
    height: 14px;
    background: linear-gradient(180deg, #2a3142 0%, #1a1f2e 100%);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.lp-laptop-base::after {
    /* Hinge notch */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #0a0e17;
    border-radius: 0 0 8px 8px;
}


/* ── APP SHOWCASE ROW ── */
.lp-showcase-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-showcase-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-showcase-item h4 {
    font-family: var(--lp-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 20px 0 6px;
}

.lp-showcase-item p {
    font-family: var(--lp-font-body);
    font-size: 0.875rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}

.lp-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}


/* ── VIDEO SHOWCASE (single video) ── */
.lp-video-showcase {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lp-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background: #0d1117;
}

.lp-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-video-caption {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-secondary);
    margin-top: 20px;
    line-height: 1.5;
}


/* ── PRICING GRID ── */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.lp-pricing-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg) var(--lp-radius-lg) 0 0;
    padding: 28px 20px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - 20px), 0% 100%);
}

.lp-pricing-card.featured {
    border: 2px solid var(--lp-primary);
    transform: scale(1.06);
    z-index: 2;
    box-shadow: none;
}

.lp-pricing-cta {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.lp-pricing-badge {
    display: inline-block;
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    width: fit-content;
}

.lp-pricing-badge.free { background: rgba(34,197,94,0.12); color: var(--lp-success); }
.lp-pricing-badge.popular { background: rgba(228,1,1,0.12); color: var(--lp-primary); }
.lp-pricing-badge.early { background: rgba(250,204,21,0.12); color: var(--lp-warning); }
.lp-pricing-badge.gym { background: rgba(228,1,1,0.12); color: var(--lp-primary); }
.lp-pricing-badge.promoter { background: rgba(239,68,68,0.12); color: var(--lp-danger); }

.lp-pricing-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 4px;
}

.lp-pricing-price {
    font-family: var(--lp-font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-text);
    margin: 8px 0 4px;
}

.lp-pricing-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text-secondary);
}

.lp-pricing-free-note {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-success);
    margin: 0 0 4px;
}

.lp-pricing-desc {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 8px 0 16px;
}

.lp-pricing-note {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    font-style: italic;
    margin: 0 0 12px;
}

.lp-pricing-best {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-primary);
    font-weight: 600;
    margin: 0 0 16px;
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.lp-pricing-features li {
    font-family: var(--lp-font-body);
    font-size: 0.825rem;
    color: var(--lp-text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.lp-pricing-features li::before {
    content: '✓';
    color: var(--lp-success);
    font-weight: 700;
    flex-shrink: 0;
}

.lp-pricing-features li.more-features {
    color: var(--lp-text-muted);
    font-style: italic;
    font-size: 0.775rem;
}

.lp-pricing-features li.more-features::before {
    content: '';
}

.lp-pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.lp-pricing-footer p {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    margin: 0;
}

/* ── AUDIENCE TOGGLE ── */
.lp-audience-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.lp-audience-toggle .lp-toggle-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--lp-border);
    background: var(--lp-card);
    color: var(--lp-text-secondary);
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-audience-toggle .lp-toggle-btn:first-child {
    border-radius: 0.5rem 0 0 0.5rem;
}

.lp-audience-toggle .lp-toggle-btn:last-child {
    border-radius: 0 0.5rem 0.5rem 0;
    border-left: none;
}

.lp-audience-toggle .lp-toggle-btn.active {
    background: var(--lp-primary);
    color: #fff;
    border-color: var(--lp-primary);
}

/* 2-column pricing grid variant */
.lp-pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

/* ── CONTACT CARD (Promoters & Matchmakers) ── */
.lp-contact-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

.lp-contact-card h3 {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 1rem 0 0.75rem;
}

.lp-contact-card > p {
    font-family: var(--lp-font-body);
    font-size: 0.95rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lp-contact-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.lp-contact-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-contact-price-label {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-contact-price-value {
    font-family: var(--lp-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lp-text);
}

.lp-contact-price-period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lp-text-muted);
}

.lp-contact-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    text-align: left;
    display: inline-block;
}

.lp-contact-features li {
    padding: 0.4rem 0;
    font-family: var(--lp-font-body);
    font-size: 0.92rem;
    color: var(--lp-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-contact-note {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .lp-pricing-grid-2 {
        grid-template-columns: 1fr;
    }
    .lp-audience-toggle .lp-toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }
}


/* ── PULL QUOTE / NETWORK EFFECTS ── */
.lp-pullquote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.lp-pullquote p {
    font-family: var(--lp-font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--lp-text);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
}

.lp-pullquote p::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--lp-primary);
    margin: 0 auto 24px;
    border-radius: 2px;
}


/* ── MOAT / WHY WE WIN ── */
.lp-moat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lp-moat-item {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-moat-num {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lp-primary);
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.lp-moat-item h4 {
    font-family: var(--lp-font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 4px;
}

.lp-moat-item p {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
    margin: 0;
}


/* ── REGIONAL / TEXT SECTION ── */
.lp-text-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lp-text-block p {
    font-family: var(--lp-font-body);
    font-size: 1.05rem;
    color: var(--lp-text-secondary);
    line-height: 1.7;
    margin: 0;
}


/* ── TESTIMONIALS (dark) ── */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-promotions-strip {
    margin-bottom: 28px;
}

.lp-promotions-kicker {
    margin: 0 0 14px;
    text-align: center;
    font-family: var(--lp-font-body);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--lp-text-muted);
}

.lp-logo-marquee {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.lp-logo-marquee::before,
.lp-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    z-index: 1;
    pointer-events: none;
}

.lp-logo-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #111827 0%, rgba(17,24,39,0) 100%);
}

.lp-logo-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #111827 0%, rgba(17,24,39,0) 100%);
}

.lp-logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 12px;
    padding: 10px;
    animation: lp-logo-scroll 30s linear infinite;
}

.lp-logo-marquee:hover .lp-logo-track {
    animation-play-state: paused;
}

.lp-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(2px);
}

.lp-logo-mark {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--lp-font-display);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(135deg, #e40101, #8FC3FC);
}

.lp-logo-pill img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}

.lp-logo-name {
    font-family: var(--lp-font-body);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lp-text-secondary);
}

@keyframes lp-logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.lp-quote {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lp-quote blockquote {
    font-family: var(--lp-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--lp-text);
    line-height: 1.6;
    margin: 0 0 20px;
    position: relative;
    padding-left: 0;
}

.lp-quote blockquote::before {
    content: '\201C';
    font-size: 3rem;
    font-weight: 800;
    color: rgba(228,1,1,0.15);
    position: absolute;
    top: -16px;
    left: -4px;
    line-height: 1;
}

.lp-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-quote-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(228,1,1,0.25), rgba(99,102,241,0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--lp-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lp-primary);
}

.lp-quote-author strong {
    display: block;
    font-family: var(--lp-font-body);
    font-size: 0.875rem;
    color: var(--lp-text);
}

.lp-quote-author span {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}


/* ── FINAL CTA ── */
.lp-section-cta {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: var(--lp-text);
    padding: 96px 0;
}

.lp-section-cta h2 {
    font-family: var(--lp-font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.lp-section-cta > .lp-container > p {
    font-family: var(--lp-font-body);
    font-size: 1.1rem;
    color: var(--lp-text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.lp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ── FOOTER ── */
.lp-footer {
    background: var(--lp-bg);
    border-top: 1px solid var(--lp-border);
    padding: 40px 0 24px;
}

.lp-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.lp-footer-brand p {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin: 8px 0 0;
}

.lp-footer-links {
    display: flex;
    gap: 16px 24px;
    flex-wrap: wrap;
}

.lp-footer-links a {
    font-family: var(--lp-font-body);
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-footer-links a:hover { color: var(--lp-text); }

.lp-footer-login {
    border-left: 1px solid var(--lp-border);
    padding-left: 24px;
}

.lp-footer-copy {
    text-align: center;
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    border-top: 1px solid var(--lp-border);
    padding-top: 20px;
}


/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-body);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 24px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--lp-radius-base);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    gap: 8px;
}

.btn-cta {
    color: #fff;
    background-color: var(--lp-cta);
    border-color: var(--lp-cta);
}

.btn-cta:hover {
    background-color: var(--lp-cta-hover);
    border-color: var(--lp-cta-hover);
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: var(--lp-primary);
    border-color: var(--lp-primary);
}

.btn-primary:hover {
    background-color: #8FC3FC;
    border-color: #8FC3FC;
    color: #fff;
}

.btn-ghost {
    color: var(--lp-text-secondary);
    background-color: transparent;
    border: 1px solid var(--lp-border-light);
}

.btn-ghost:hover {
    color: var(--lp-text);
    border-color: rgba(255,255,255,0.25);
    background-color: rgba(255,255,255,0.04);
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}


/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1240px) {
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .lp-features-grid,
    .lp-overview-grid,
    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-feature-row {
        gap: 32px;
    }

    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-moat-grid {
        grid-template-columns: 1fr;
    }

    /* Problem grid: 2-col avoids cramped 3-col at ~900px */
    .lp-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero: stack vertically so the laptop frame doesn't squeeze the text.
       align-items: stretch overrides the base 'center' so children fill full width. */
    .lp-hero {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 40px;
        padding: 110px 40px 72px;
    }

    .lp-hero-content {
        text-align: center;
    }

    .lp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero-actions {
        justify-content: center;
    }

    .lp-hero-visual .lp-laptop-frame {
        max-width: 640px;
    }

    /* Nav: tighten link gap to prevent overflow at ~850–1024px */
    .lp-nav-links {
        gap: 18px;
    }

    .lp-nav-links a:not(.btn) {
        font-size: 0.82rem;
    }
}

@media (max-width: 768px) {
    /* Nav */
    .lp-nav-links a:not(.btn) { display: none; }
    .lp-nav-inner { height: 52px; padding: 0 16px; }
    .lp-nav-brand img { height: 32px; }
    .lp-nav-links { gap: 0; }
    .lp-nav-links .btn-sm { padding: 6px 14px; font-size: 0.8rem; white-space: nowrap; }

    .lp-hero {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 100px 20px 60px;
        min-height: 480px;
        gap: 0;
    }

    .lp-hero-content { text-align: center; }
    .lp-hero-content h1 { font-size: 1.85rem; }
    .lp-hero-sub { font-size: 1rem; margin-left: auto; margin-right: auto; }

    .lp-hero-actions {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .lp-hero-visual { margin-top: 40px; order: 1; }
    .lp-hero-visual .lp-phone-frame { max-width: 300px; }
    .lp-hero-visual .lp-laptop-frame { max-width: 520px; }

    /* Sections */
    .lp-section, .lp-section-elevated { padding: 56px 0; }
    .lp-section-header { margin-bottom: 36px; }
    .lp-section-header h2 { font-size: 1.75rem; }

    /* Problem cards */
    .lp-problem-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Grids single col */
    .lp-features-grid,
    .lp-overview-grid,
    .lp-showcase-row,
    .lp-testimonials-grid,
    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-feature-row,
    .lp-feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 56px;
        direction: ltr;
    }

    .lp-feature-media {
        order: -1;
    }

    .lp-logo-marquee::before,
    .lp-logo-marquee::after {
        width: 30px;
    }

    .lp-logo-track {
        animation-duration: 24s;
    }

    .lp-logo-pill {
        padding: 8px 12px;
        gap: 8px;
    }

    .lp-logo-name {
        font-size: 0.78rem;
    }

    .lp-phone-frame { max-width: 240px; margin-left: auto; margin-right: auto; }
    .lp-feature-placeholder { max-width: 240px; margin-left: auto; margin-right: auto; }

    /* CTA */
    .lp-section-cta h2 { font-size: 1.75rem; }
    .lp-section-cta { padding: 64px 0; }

    .lp-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    /* Pullquote */
    .lp-pullquote p { font-size: 1.1rem; }

    /* Footer */
    .lp-footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .lp-hero { padding: 90px 16px 48px; min-height: 420px; }
    .lp-container { padding: 0 16px; }
    .lp-hero-content h1 { font-size: 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════════════
   INTERACTIVE WALKTHROUGH
   ═══════════════════════════════════════════════════════════════════ */
.lp-wt {
    max-width: 640px;
    margin: 0 auto;
}

/* Step indicator */
.lp-wt-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 8px;
}

.lp-wt-step {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: opacity 0.2s;
}

.lp-wt-step:hover { opacity: 1; }

.lp-wt-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-card);
    border: 2px solid var(--lp-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lp-text-muted);
    transition: all 0.25s;
    flex-shrink: 0;
}

.lp-wt-step.active .lp-wt-dot {
    background: var(--lp-cta);
    border-color: var(--lp-cta);
    color: #fff;
}

.lp-wt-step.done .lp-wt-dot {
    background: var(--lp-success);
    border-color: var(--lp-success);
    color: #fff;
}

.lp-wt-step-label {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.lp-wt-step.active .lp-wt-step-label { color: var(--lp-text); }
.lp-wt-step.done .lp-wt-step-label { color: var(--lp-text-secondary); }

.lp-wt-connector {
    width: 24px;
    height: 2px;
    background: var(--lp-border-light);
    flex-shrink: 0;
    transition: background 0.25s;
}

.lp-wt-connector.done { background: var(--lp-success); }

/* Progress bar */
.lp-wt-progress {
    height: 2px;
    background: var(--lp-border);
    border-radius: 1px;
    margin-bottom: 28px;
    overflow: hidden;
}

.lp-wt-progress-fill {
    height: 100%;
    background: var(--lp-cta);
    border-radius: 1px;
    transition: width 0.35s ease;
}

/* Scene content */
.lp-wt-scenes {
    touch-action: pan-y;
}

.lp-wt-scene {
    animation: wtFadeUp 0.35s ease both;
}

@keyframes wtFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-wt-badge {
    display: inline-block;
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--lp-cta);
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.lp-wt-badge.gate { background: #3B82F6; }
.lp-wt-badge.agreement { background: #818CF8; }

.lp-wt-title {
    font-family: var(--lp-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 20px;
    text-transform: uppercase;
}

.lp-wt-title span {
    color: var(--lp-text-muted);
    font-weight: 400;
}

/* Cards */
.lp-wt-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.lp-wt-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.lp-wt-label {
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-text-muted);
}

/* Status pills */
.lp-wt-pill {
    font-family: var(--lp-font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 3px;
}

.pill-approved { background: rgba(34,197,94,0.12); color: #22C55E; border: 1px solid rgba(34,197,94,0.25); }

/* Shared name / meta */
.lp-wt-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lp-wt-avatar.av-teal { background: rgba(34,197,94,0.12); color: #22C55E; }

.lp-wt-name {
    font-family: var(--lp-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lp-text);
    text-transform: uppercase;
}

.lp-wt-meta {
    font-family: var(--lp-font-body);
    font-size: 0.75rem;
    color: var(--lp-text-muted);
}

/* ── Event group card (Step 1 — Opportunity Feed) ── */
.lp-wt-event-card {
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.lp-wt-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--lp-cta), #ff6b35);
    border-radius: var(--lp-radius-md) var(--lp-radius-md) 0 0;
}

.lp-wt-event-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px 0;
}

.lp-wt-date-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lp-bg);
    border-radius: var(--lp-radius-sm);
    padding: 6px 10px;
    min-width: 48px;
    flex-shrink: 0;
}

.lp-wt-date-wd {
    font-family: var(--lp-font-body);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-cta);
}

.lp-wt-date-day {
    font-family: var(--lp-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1.1;
}

.lp-wt-date-mo {
    font-family: var(--lp-font-body);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lp-text-muted);
}

.lp-wt-event-info { flex: 1; }

.lp-wt-event-name {
    font-family: var(--lp-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    text-transform: uppercase;
}

.lp-wt-event-promo {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

.lp-wt-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.lp-wt-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    color: var(--lp-text-muted);
    background: var(--lp-bg);
    padding: 2px 8px;
    border-radius: 3px;
}

.lp-wt-chip.chip-warn {
    color: #ff6b35;
    background: rgba(255,107,53,0.1);
}

.lp-wt-progress-ring {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    gap: 1px;
    padding: 4px 0;
}

.lp-wt-ring-num {
    font-family: var(--lp-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lp-cta);
}

.lp-wt-ring-denom {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

/* Bout rows */
.lp-wt-bout-section {
    padding: 0 20px 16px;
    margin-top: 14px;
    border-top: 1px solid var(--lp-border);
}

.lp-wt-bout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 6px;
}

.lp-wt-bout-count {
    font-family: var(--lp-font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.lp-wt-match-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--lp-font-body);
    font-size: 0.65rem;
    color: var(--lp-text-muted);
}

.lp-wt-bout-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--lp-border);
}

.lp-wt-bout-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(249,115,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lp-cta);
}

.lp-wt-bout-mid { flex: 1; min-width: 0; }

.lp-wt-bout-label {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-wt-bout-end {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lp-wt-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.lp-wt-tag {
    font-family: var(--lp-font-body);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 2px 7px;
    border-radius: 3px;
}

.lp-wt-tag.tag-blue { background: rgba(59,130,246,0.12); color: #3B82F6; }
.lp-wt-tag.tag-gold { background: rgba(255,107,53,0.12); color: #ff6b35; }
.lp-wt-tag.tag-muted { background: var(--lp-bg); color: var(--lp-text-muted); }

.lp-wt-match-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(139,92,246,0.12);
    color: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-display);
    font-size: 0.7rem;
    font-weight: 700;
}

/* ── Status banner card (Steps 2 & 4) ── */
.lp-wt-status-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border-light);
    border-radius: var(--lp-radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.lp-wt-status-text { flex: 1; }

.lp-wt-status-label {
    font-family: var(--lp-font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.lp-wt-status-sub {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

/* ── Bout spec pill row (Step 2) ── */
.lp-wt-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.lp-wt-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--lp-bg);
    color: var(--lp-text-secondary);
    border: 1px solid var(--lp-border);
}

.lp-wt-spec-pill.pill-accent {
    background: rgba(249,115,22,0.1);
    color: var(--lp-cta);
    border-color: rgba(249,115,22,0.25);
}

/* ── Fighter snapshot card (Step 2) ── */
.lp-wt-fighter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-wt-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.lp-wt-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    color: var(--lp-text-muted);
    background: var(--lp-bg);
    padding: 3px 8px;
    border-radius: 3px;
}

.lp-wt-stats-divider {
    height: 1px;
    background: var(--lp-border);
    margin: 10px 0;
}

.lp-wt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}

.lp-wt-stat-val {
    font-family: var(--lp-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-wt-stat-lbl {
    font-family: var(--lp-font-body);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

/* ── Info banner (Step 2) ── */
.lp-wt-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--lp-radius-sm);
    padding: 10px 14px;
    margin-bottom: 12px;
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

/* ── Term rows — label/value pairs (Steps 2 & 4) ── */
.lp-wt-term-rows {
    margin-top: 10px;
}

.lp-wt-term-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-wt-term-row:last-child { border-bottom: none; }

.lp-wt-term-row-lbl {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

.lp-wt-term-row-val {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-wt-term-row-val.accent { color: var(--lp-cta); }
.lp-wt-term-row-val.green  { color: var(--lp-success); }

/* Counter bar */
.lp-wt-counter-bar {
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--lp-radius-sm);
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

.lp-wt-counter-bar strong {
    color: var(--lp-cta);
    font-weight: 600;
}

/* Coach gate card */
.lp-wt-gate-card {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: var(--lp-radius-md);
    padding: 16px 20px;
    margin-bottom: 12px;
}

.lp-wt-gate-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.lp-wt-gate-icon {
    width: 22px;
    height: 22px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-wt-gate-label {
    font-family: var(--lp-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3B82F6;
}

.lp-wt-gate-body {
    font-family: var(--lp-font-body);
    font-size: 0.85rem;
    color: var(--lp-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.lp-wt-gate-body strong { color: #3B82F6; font-weight: 600; }

/* ── Approval card (Step 3 — Coach Pending Approvals) ── */
.lp-wt-approval-card {
    margin-bottom: 12px;
}

.lp-wt-approval-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-wt-approval-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139,92,246,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-wt-context-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--lp-font-body);
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    background: var(--lp-bg);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.lp-wt-notes-box {
    background: var(--lp-bg);
    border-left: 3px solid var(--lp-border-light);
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--lp-text-secondary);
    line-height: 1.5;
}

.lp-wt-action-row {
    display: flex;
    gap: 8px;
}

.lp-wt-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    font-family: var(--lp-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--lp-radius-sm);
    cursor: default;
}

.lp-wt-action-btn.action-approve {
    background: rgba(34,197,94,0.12);
    color: #22C55E;
    border: 1px solid rgba(34,197,94,0.3);
}

.lp-wt-action-btn.action-decline {
    background: rgba(239,68,68,0.08);
    color: #EF4444;
    border: 1px solid rgba(239,68,68,0.2);
}

/* ── Signature row (Step 4) ── */
.lp-wt-sig-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-border);
}

.lp-wt-sig-row:last-child { border-bottom: none; }

/* Locked badge */
.lp-wt-locked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(129,140,248,0.08);
    border: 1px solid rgba(129,140,248,0.2);
    border-radius: var(--lp-radius-sm);
    padding: 14px;
    margin-bottom: 12px;
    font-family: var(--lp-font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #818CF8;
}

/* Caption */
.lp-wt-caption {
    font-family: var(--lp-font-body);
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin: 16px 0 0;
}

.lp-wt-caption strong { color: var(--lp-text-secondary); font-weight: 600; }

/* Navigation */
.lp-wt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--lp-border);
}

.lp-wt-nav-counter {
    font-family: var(--lp-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-wt-steps { flex-wrap: wrap; gap: 4px; }
    .lp-wt-connector { width: 12px; }
    .lp-wt-step { padding: 6px 8px; }
    .lp-wt-step-label { font-size: 0.7rem; }
    .lp-wt-dot { width: 24px; height: 24px; font-size: 0.65rem; }
    .lp-wt-title { font-size: 1.25rem; }
    .lp-wt-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .lp-wt-stat-val { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .lp-wt-step-label { display: none; }
    .lp-wt-connector { width: 20px; }
    .lp-wt-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-wt-event-header { flex-direction: column; gap: 10px; }
    .lp-wt-progress-ring { align-self: flex-end; }
}


/* ═══════════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════════ */
.mr-1 { margin-right: 0.35rem; }


/* ============================================================================
   PricingUpdate Theme Bridge (Main Landing /)
   Scoped to .lp-main-theme so other PublicLayout pages keep current styling.
   ========================================================================== */
.lp-main-theme {
    --lp-bg: #0d0d0d;
    --lp-bg-elevated: #131313;
    --lp-card: #1a1a1a;

    --lp-primary: #c42020;
    --lp-primary-dark: #8f1212;
    --lp-cta: #c42020;
    --lp-cta-hover: #8f1212;

    --lp-text: #f6f6f6;
    --lp-text-secondary: #d7d7d7;
    --lp-text-muted: #808080;

    --lp-border: rgba(255,255,255,0.08);
    --lp-border-light: rgba(255,255,255,0.14);

    --lp-font-display: 'Barlow Condensed', sans-serif;
    --lp-font-body: 'Barlow', sans-serif;

    background: var(--lp-bg);
    color: var(--lp-text-secondary);
}

.lp-main-theme .lp-nav {
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-main-theme .lp-nav-inner {
    max-width: 1280px;
    height: auto;
    padding: 1rem 1.5rem;
}

.lp-main-theme .lp-nav-brand img {
    height: 34px;
    width: auto;
}

.lp-main-theme .lp-nav-links a:not(.btn) {
    font-family: 'Share Tech Mono', monospace;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lp-text-muted);
}

.lp-main-theme .lp-nav-links a:not(.btn):hover {
    color: var(--lp-text);
}

.lp-main-theme .lp-eyebrow,
.lp-main-theme .lp-hero-cta-note,
.lp-main-theme .lp-proof-bar p,
.lp-main-theme .lp-footer-copy {
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: .1em;
}

.lp-main-theme .lp-eyebrow {
    color: var(--lp-primary);
    text-transform: uppercase;
}

.lp-main-theme .lp-hero {
    position: relative;
    overflow: hidden;
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: max(24px, calc((100vw - 1280px) / 2));
    padding-right: max(24px, calc((100vw - 1280px) / 2));
    background:
        radial-gradient(1200px 420px at 22% -12%, rgba(196, 32, 32, 0.18), transparent 68%),
        radial-gradient(900px 320px at 82% 0%, rgba(255,255,255,0.05), transparent 70%),
        var(--lp-bg);
    border-bottom: 1px solid var(--lp-border);
}

.lp-main-theme .lp-hero-content {
    flex: 0 1 620px;
    max-width: 620px;
}

.lp-main-theme .lp-hero-visual {
    flex: 0 0 auto;
}

.lp-main-theme .lp-hero-visual .lp-laptop-frame {
    max-width: 600px;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
}

.lp-main-theme .lp-hero-visual .lp-laptop-screen {
    border: 8px solid #1d2436;
    border-bottom-width: 8px;
    border-radius: 24px;
}

.lp-main-theme .lp-hero-visual .lp-laptop-screen::before {
    top: 8px;
    width: 7px;
    height: 7px;
    background: #31384b;
}

.lp-main-theme .lp-hero-visual .lp-laptop-base {
    display: none;
}

.lp-main-theme .lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(227,30,36,0.08), transparent 56%),
        radial-gradient(circle at 80% 70%, rgba(227,30,36,0.05), transparent 58%);
    pointer-events: none;
    z-index: 0;
}

.lp-main-theme .lp-hero-content,
.lp-main-theme .lp-hero-visual {
    position: relative;
    z-index: 1;
}

.lp-main-theme .lp-hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: .01em;
}

.lp-main-theme .lp-hero-sub {
    color: var(--lp-text-secondary);
}

.lp-main-theme .lp-section {
    background: var(--lp-bg);
}

.lp-main-theme .lp-section-elevated {
    background: var(--lp-bg-elevated);
}

.lp-main-theme .lp-proof-bar {
    background: var(--lp-bg-elevated);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-main-theme .lp-problem-card,
.lp-main-theme .lp-overview-card,
.lp-main-theme .lp-quote,
.lp-main-theme .lp-pricing-card,
.lp-main-theme .lp-contact-card,
.lp-main-theme .lp-wt-card,
.lp-main-theme .lp-wt-status-card,
.lp-main-theme .lp-wt-event-card,
.lp-main-theme .lp-wt-gate-card {
    border-radius: 6px;
}

.lp-main-theme .lp-feature-chip {
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
}

.lp-main-theme .lp-section-header h2,
.lp-main-theme .lp-section-cta h2,
.lp-main-theme .lp-pricing-card h3,
.lp-main-theme .lp-wt-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .01em;
}

.lp-main-theme .btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 4px;
}

.lp-main-theme .btn-cta,
.lp-main-theme .btn-primary {
    background: var(--lp-cta);
    border-color: var(--lp-cta);
    color: #fff;
}

.lp-main-theme .btn-cta:hover,
.lp-main-theme .btn-primary:hover {
    background: var(--lp-cta-hover);
    border-color: var(--lp-cta-hover);
    color: #fff;
}

.lp-main-theme .btn-ghost {
    color: var(--lp-text-secondary);
    border-color: var(--lp-border-light);
    background: transparent;
}

.lp-main-theme .btn-ghost:hover {
    color: var(--lp-text);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.24);
}

.lp-main-theme .lp-section-cta {
    position: relative;
    overflow: hidden;
    background: var(--lp-bg-elevated);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-main-theme .lp-section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 300px at 50% 20%, rgba(227,30,36,0.16), transparent 68%),
        radial-gradient(520px 220px at 15% 100%, rgba(227,30,36,0.08), transparent 72%),
        radial-gradient(520px 220px at 85% 100%, rgba(227,30,36,0.08), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.lp-main-theme .lp-section-cta > .lp-container {
    position: relative;
    z-index: 1;
}

.lp-main-theme .lp-footer {
    background: var(--lp-bg-elevated);
    border-top: 1px solid var(--lp-border);
}

.lp-main-theme .lp-footer-brand p,
.lp-main-theme .lp-footer-links a,
.lp-main-theme .lp-footer-copy {
    color: var(--lp-text-muted);
}

.lp-main-theme .lp-footer-links a:hover {
    color: var(--lp-text);
}

/* Tablet: hero stacks (per base .lp-hero @1024px rule). Center the
   constrained content/visual blocks horizontally and tighten the gap
   so the text block and laptop image don't drift apart. */
@media (max-width: 1024px) {
    .lp-main-theme .lp-hero {
        gap: 24px;
    }

    .lp-main-theme .lp-hero-content {
        flex: 0 1 auto;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .lp-main-theme .lp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-main-theme .lp-hero-visual {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .lp-main-theme .lp-hero {
        min-height: auto;
        gap: 18px;
        padding-top: 88px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-main-theme .lp-hero-content {
        flex: 0 1 auto;
        width: 100%;
        max-width: 680px;
    }

    .lp-main-theme .lp-hero-sub {
        margin-bottom: 20px;
    }

    .lp-main-theme .lp-hero-actions {
        gap: 10px;
    }

    .lp-main-theme .lp-hero .btn-lg {
        padding: 11px 20px;
        font-size: .92rem;
        letter-spacing: .1em;
    }

    .lp-main-theme .lp-hero-visual {
        margin-top: 12px;
    }

    .lp-main-theme .lp-hero-visual .lp-phone-frame {
        max-width: 236px;
    }

    .lp-main-theme .lp-hero-visual .lp-laptop-frame {
        max-width: 440px;
    }

    .lp-main-theme .lp-nav-inner {
        padding: .85rem 1rem;
    }

    .lp-main-theme .lp-nav-links a:not(.btn) {
        display: none;
    }

    .lp-main-theme .lp-nav-links .btn-sm {
        padding: 6px 14px;
        font-size: .8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .lp-main-theme .lp-hero {
        padding-top: 80px;
        padding-bottom: 24px;
        gap: 10px;
    }

    .lp-main-theme .lp-hero-content h1 {
        font-size: 1.92rem;
    }

    .lp-main-theme .lp-hero-sub {
        font-size: .98rem;
        margin-bottom: 16px;
    }

    .lp-main-theme .lp-hero .btn-lg {
        padding: 10px 18px;
        font-size: .88rem;
    }

    .lp-main-theme .lp-hero-visual {
        margin-top: 2px;
    }

    .lp-main-theme .lp-hero-visual .lp-phone-frame {
        max-width: 210px;
    }

    .lp-main-theme .lp-hero-visual .lp-laptop-frame {
        max-width: 360px;
    }
}
