/* ================================================
   My Keeper Coach — Product Landing Page
   Design System: Deep Navy + Neon Green
   Premium glassmorphism aesthetic
   ================================================ */

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

:root {
    --bg-primary: #0B1426;
    --bg-card: rgba(17, 29, 51, 0.75);
    --bg-card-hover: rgba(17, 29, 51, 0.9);
    --accent: #00E676;
    --accent-dim: rgba(0, 230, 118, 0.15);
    --accent-glow: rgba(0, 230, 118, 0.25);
    --accent-blue: #448AFF;
    --accent-red: #FF5252;
    --text-primary: #FFFFFF;
    --text-secondary: #B0BEC5;
    --text-muted: #546E7A;
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 230, 118, 0.2);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 99px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

/* -------------------- UTILITIES -------------------- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: var(--accent); }
.logo-my { color: var(--accent); }
.logo-coach { color: var(--accent); }

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

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------- NAVIGATION -------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 20, 38, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--text-primary); }

.nav-link.login-link {
    color: var(--accent-blue);
    font-weight: 600;
}

.nav-btn {
    padding: 10px 22px !important;
    font-size: 0.9rem !important;
}

/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-block;
    padding: 18px 44px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.25s ease;
    text-align: center;
}

.primary-btn {
    background: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 40px var(--accent-glow);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 230, 118, 0.4);
}

.primary-btn:active { transform: scale(0.97); }

/* -------------------- HERO -------------------- */
.hero {
    text-align: center;
    padding: 80px 24px 40px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 230, 118, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(68, 138, 255, 0.04) 0%, transparent 50%);
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-badge svg {
    flex-shrink: 0;
}

h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 56px auto 0;
    max-width: 620px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    margin: 0 8px;
    flex-shrink: 0;
}

/* -------------------- PROBLEM SECTION -------------------- */
.problem-section {
    padding: 100px 24px 80px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-accent);
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.1), inset 0 0 12px rgba(0, 230, 118, 0.05);
    color: var(--accent);
}

.problem-card:hover .problem-icon {
    box-shadow: 0 0 36px rgba(0, 230, 118, 0.28), inset 0 0 16px rgba(0, 230, 118, 0.1);
    transform: scale(1.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.problem-icon svg {
    width: 36px;
    height: 36px;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-solution {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 36px 40px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
}

.problem-solution p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-solution strong {
    color: var(--accent);
}

/* -------------------- HOW IT WORKS -------------------- */
.how-it-works {
    padding: 100px 24px;
    background: linear-gradient(180deg, rgba(17, 29, 51, 0.4) 0%, transparent 100%);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 24px;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    color: var(--accent);
    opacity: 0.4;
    padding-top: 76px;
    flex-shrink: 0;
}

.step-connector svg {
    width: 40px;
    height: 24px;
}

/* -------------------- FEATURES -------------------- */
.features {
    padding: 100px 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 44px 28px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.1), inset 0 0 12px rgba(0, 230, 118, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: var(--accent);
}

.feature-card:hover .feature-icon-wrap {
    box-shadow: 0 0 36px rgba(0, 230, 118, 0.28), inset 0 0 16px rgba(0, 230, 118, 0.1);
    transform: scale(1.06);
}

.feature-icon-wrap svg {
    width: 50px;
    height: 50px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* 5-card layout: 3 top, 2 centered bottom */
.feature-grid .feature-card:nth-child(4),
.feature-grid .feature-card:nth-child(5) {
    /* These are in a 3-col grid; they'll wrap to the next row naturally */
}

/* -------------------- WHO IT'S FOR -------------------- */
.who-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 29, 51, 0.4) 50%, transparent 100%);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.persona-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.1), inset 0 0 12px rgba(0, 230, 118, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: var(--accent);
}

.persona-card:hover .persona-icon {
    box-shadow: 0 0 36px rgba(0, 230, 118, 0.28), inset 0 0 16px rgba(0, 230, 118, 0.1);
    transform: scale(1.06);
}

.persona-icon svg {
    width: 44px;
    height: 44px;
}

.persona-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.persona-pain {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
}

.persona-benefits {
    list-style: none;
    padding: 0;
}

.persona-benefits li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.persona-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}

/* -------------------- PRICING SECTION -------------------- */
.pricing-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 29, 51, 0.3) 50%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, border-color 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Featured / recommended tier */
.pricing-tier-featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0, 230, 118, 0.08);
    padding-top: 52px;
}

.pricing-tier-featured:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.tier-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.tier-header {
    margin-bottom: 28px;
}

.tier-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.tier-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
}

.tier-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.tier-annual {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.tier-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Tier feature list */
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.tier-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.45;
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

.tier-features li.tier-feature-disabled {
    color: var(--text-muted);
    opacity: 0.45;
    text-decoration: line-through;
}

.tier-features li.tier-feature-disabled::before {
    background: var(--text-muted);
    opacity: 0.3;
}

/* Tier buttons */
.tier-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
    margin-top: auto;
}

.tier-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.tier-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.1);
}

/* -------------------- TRUST & SAFETY -------------------- */
.trust-safety {
    padding: 40px 24px 80px;
}

.safety-card {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.trust-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.safety-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.safety-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.coppa-badge {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 22px;
    background: rgba(68, 138, 255, 0.1);
    border: 1px solid rgba(68, 138, 255, 0.25);
    color: var(--accent-blue);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* -------------------- FINAL CTA -------------------- */
.final-cta {
    text-align: center;
    padding: 120px 24px 100px;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 230, 118, 0.07) 0%, transparent 70%);
}

.final-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 18px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.final-cta > .container > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal-disclaimer {
    margin-top: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.legal-disclaimer a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-disclaimer a:hover { text-decoration: underline; }

/* -------------------- FOOTER -------------------- */
.site-footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-top {
    margin-bottom: 24px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* -------------------- PRODUCT SHOWCASE -------------------- */
.showcase {
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Showcase Item — alternating layout */
.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.showcase-item:last-child {
    border-bottom: none;
}

.showcase-item-reverse {
    direction: rtl;
}

.showcase-item-reverse > * {
    direction: ltr;
}

/* Dual image layout for match report */
.showcase-item-dual {
    grid-template-columns: 1fr 1.1fr;
}

.showcase-images-dual {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.showcase-images-dual .showcase-img-wrap {
    flex: 1;
}

.showcase-images-dual .showcase-img-tall img {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* Text content */
.showcase-text {
    padding: 12px 0;
}

.showcase-label {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 230, 118, 0.15);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.showcase-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.showcase-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-highlights li {
    position: relative;
    padding-left: 24px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.showcase-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.3);
}

/* Image wrapper — premium frame */
.showcase-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 48px rgba(0, 230, 118, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.showcase-img-wrap:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 64px rgba(0, 230, 118, 0.12);
    border-color: var(--border-accent);
}

.showcase-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.03) 0%, transparent 40%);
}

.showcase-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Scroll reveal animation */
.showcase-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item:nth-child(2).showcase-hidden {
    transition-delay: 0.1s;
}

.showcase-item:nth-child(3).showcase-hidden {
    transition-delay: 0.15s;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-tier-featured {
        order: -1;
    }

    .showcase-item,
    .showcase-item-dual {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .showcase-item-reverse {
        direction: ltr;
    }

    .showcase-images-dual .showcase-img-tall img {
        max-height: 440px;
    }

    .showcase-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 860px) {

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        width: auto;
        height: 32px;
        margin: 4px 0;
    }

    .step-card {
        max-width: 400px;
    }

    .persona-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 16px; }

    .hide-mobile { display: none; }

    .nav-links { gap: 12px; }

    .nav-link { font-size: 0.82rem; }

    .hero { padding: 60px 20px 32px; }

    .hero-stats {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
        margin: 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-text,
    .pricing-features {
        padding: 36px 24px;
    }

    .safety-card {
        padding: 40px 24px;
    }

    .btn {
        width: 100%;
    }

    .nav-btn {
        display: none;
    }

    .showcase {
        padding: 60px 16px 40px;
    }

    .showcase-item {
        padding: 36px 0;
        gap: 24px;
    }

    .showcase-images-dual {
        flex-direction: column;
    }

    .showcase-images-dual .showcase-img-tall img {
        max-height: 380px;
    }

    .showcase-text h3 {
        font-size: 1.3rem;
    }

    .showcase-text p {
        font-size: 0.95rem;
    }
}

/* -------------------- SMOOTH SCROLL -------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* -------------------- SELECTION -------------------- */
::selection {
    background: rgba(0, 230, 118, 0.25);
    color: #fff;
}
