/* === Variables — Mabebe palette (calm, doctor-trusted, gender-neutral) === */
:root {
    --teal: #3BA6A0;
    --teal-dark: #2E837E;
    --teal-light: #e3f2f1;
    --blush: #F4A6A0;
    --blush-light: #fdeceb;
    --honey: #F2C879;
    --honey-light: #fdf3df;
    --ink: #14213a;
    --bg: #FBFAF8;
    --card: #ffffff;
    --text: #1f2530;
    --text-muted: #6b7280;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 12px rgba(20,33,58,0.06);
    --shadow-lg: 0 8px 32px rgba(20,33,58,0.10);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* === Utilities === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.text-teal { color: var(--teal); }

/* === Nav === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251,250,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(20,33,58,0.06);
    transition: background 0.3s;
}
.navbar.scrolled { background: rgba(251,250,248,0.95); }
.nav-container {
    max-width: 1120px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-back {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 10px;
    color: var(--text-muted); transition: all 0.2s;
    margin-right: 4px;
}
.nav-back:hover { background: var(--teal-light); color: var(--teal); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.nav-icon { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 2px 8px rgba(20,33,58,0.12); }
.logo-text { color: var(--text); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
    font-size: 0.85rem; font-weight: 600;
    padding: 8px 20px; border-radius: 999px;
    background: var(--teal); color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(59,166,160,0.4); }

/* Mobile toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.open {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid rgba(20,33,58,0.08);
        padding: 16px 24px;
    }
    .nav-links.open a { padding: 12px 0; font-size: 1rem; }
}

/* === Hero (Launch screen style) === */
.hero {
    position: relative; padding: 140px 0 80px; overflow: hidden;
    background:
        radial-gradient(70% 60% at 50% -10%, var(--teal-light) 0%, transparent 70%),
        var(--bg);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 {
    width: 500px; height: 500px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(244,166,160,0.10) 0%, transparent 70%);
}
.shape-2 {
    width: 400px; height: 400px; bottom: -100px; left: -120px;
    background: radial-gradient(circle, rgba(242,200,121,0.12) 0%, transparent 70%);
}

.hero-content {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; position: relative;
}

/* Splash heart container */
.splash-mark {
    position: relative; width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 32px;
}

/* Glow — gentle breath behind the heart */
.splash-glow {
    position: absolute; inset: 28px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,166,160,0.22) 0%, transparent 70%);
    animation: glowPulse 1.6s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 56%, 100% { transform: scale(1); opacity: 0.85; }
    14% { transform: scale(1.18); opacity: 1; }
    42% { transform: scale(1.1); opacity: 0.95; }
}

/* Heartbeat ripple rings */
.pulse-ring {
    position: absolute; top: 50%; left: 50%;
    width: 120px; height: 120px; margin: -60px 0 0 -60px;
    border-radius: 50%; border: 2px solid var(--teal);
    opacity: 0; transform: scale(0.5);
    animation: pulseOut 3s cubic-bezier(0.2, 0.55, 0.3, 1) infinite;
}
.pulse-ring-2 { border-color: var(--blush); animation-delay: 1s; }
.pulse-ring-3 { border-color: var(--honey); animation-delay: 2s; }
@keyframes pulseOut {
    0%   { transform: scale(0.5); opacity: 0; }
    12%  { opacity: 0.5; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* Heart icon — gentle lub-dub beat */
.splash-icon {
    position: relative; z-index: 2;
    transform-origin: center;
    filter: drop-shadow(0 6px 18px rgba(59,166,160,0.30));
    animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
    0%   { transform: scale(1); }
    14%  { transform: scale(1.16); }
    28%  { transform: scale(1); }
    42%  { transform: scale(1.1); }
    56%, 100% { transform: scale(1); }
}

/* Title */
.splash-title {
    font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -0.01em; margin-bottom: 12px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.splash-subtitle {
    font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 28px;
}
.hero-desc {
    font-size: 1.05rem; color: var(--text-muted); max-width: 560px;
    line-height: 1.7; margin-bottom: 32px;
}
.hero-actions { margin-bottom: 40px; }
.hero-stats {
    display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-label {
    font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.05em;
}

@media (max-width: 560px) {
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .splash-mark { width: 160px; height: 160px; }
    .splash-icon { width: 60px; height: 60px; }
    .pulse-ring { width: 96px; height: 96px; margin: -48px 0 0 -48px; }
}

/* === Stage strip === */
.stages { padding: 0 0 8px; margin-top: -28px; position: relative; z-index: 2; }
.stages-track {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    max-width: 760px; margin: 0 auto;
}
.stage-pill {
    font-size: 0.8rem; font-weight: 600; color: var(--teal-dark);
    background: var(--card); border: 1px solid var(--teal-light);
    padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow);
}

/* === Section Headers === */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 5px 14px; border-radius: 999px;
    background: var(--teal-light); color: var(--teal-dark); margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.01em; }
.section-header .section-sub { margin-top: 10px; color: var(--text-muted); max-width: 560px; margin-left: auto; margin-right: auto; }

/* === Features === */
.features { padding: 96px 0; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    background: var(--card); border-radius: var(--radius); padding: 30px;
    box-shadow: var(--shadow); border: 1px solid rgba(20,33,58,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon.teal { background: var(--teal-light); }
.feature-icon.blush { background: var(--blush-light); }
.feature-icon.honey { background: var(--honey-light); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.feature-list {
    list-style: none; padding: 0; margin: 14px 0 0;
    display: flex; flex-wrap: wrap; gap: 6px;
}
.feature-list li {
    font-size: 0.78rem; font-weight: 500;
    padding: 4px 10px; border-radius: 999px;
    background: var(--bg); color: var(--text-muted);
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* === How It Works === */
.how-it-works { padding: 96px 0; background: var(--teal-light); }
.steps {
    max-width: 680px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 24px;
}
.step {
    background: var(--card); border-radius: var(--radius); padding: 28px 32px;
    box-shadow: var(--shadow); border: 1px solid rgba(20,33,58,0.05);
    display: flex; align-items: flex-start; gap: 20px;
}
.step-number {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
    background: var(--teal); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
}
.step-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* === Screenshots === */
.screenshots { padding: 96px 0; }
.screenshots-wrapper {
    display: flex; align-items: center; gap: 16px;
    max-width: 1200px; margin: 0 auto; padding: 0 16px;
}
.screenshots-scroll {
    flex: 1; min-width: 0;
    display: flex; gap: 20px; overflow-x: auto;
    padding: 8px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-item { flex-shrink: 0; width: 260px; scroll-snap-align: start; }
.screenshot-item img {
    width: 100%; border-radius: 26px;
    box-shadow: 0 10px 36px rgba(20,33,58,0.16);
    transition: transform 0.3s ease;
}
.screenshot-item img:hover { transform: scale(1.03); }
.screenshot-caption {
    text-align: center; margin-top: 14px;
    font-size: 0.74rem; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.scroll-btn {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(20,33,58,0.1);
    color: var(--text-muted); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; box-shadow: 0 2px 8px rgba(20,33,58,0.08);
}
.scroll-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
@media (max-width: 768px) {
    .scroll-btn { width: 36px; height: 36px; }
    .screenshots-wrapper { gap: 8px; padding: 0 8px; }
}
@media (max-width: 560px) { .screenshot-item { width: 190px; } }

/* === Highlights === */
.highlights { padding: 60px 0; }
.highlights-grid {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
    max-width: 860px; margin: 0 auto;
}
.highlight-item {
    display: flex; align-items: center; gap: 8px;
    background: var(--card); padding: 10px 18px; border-radius: 999px;
    box-shadow: var(--shadow); font-size: 0.85rem; font-weight: 500;
}
.highlight-icon { display: inline-flex; }

/* === Privacy band === */
.privacy-band { padding: 96px 0; background: var(--ink); color: #fff; }
.privacy-band .section-tag { background: rgba(255,255,255,0.1); color: #cde8e6; }
.privacy-band .section-header h2 { color: #fff; }
.privacy-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    max-width: 880px; margin: 0 auto;
}
.privacy-point {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 24px;
}
.privacy-point .pp-icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
    background: rgba(59,166,160,0.2); color: #7FC9C4;
    display: flex; align-items: center; justify-content: center;
}
.privacy-point h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.privacy-point p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (max-width: 640px) { .privacy-grid { grid-template-columns: 1fr; } }

/* === Disclaimer === */
.disclaimer { padding: 56px 0; }
.disclaimer-card {
    max-width: 820px; margin: 0 auto;
    background: var(--honey-light); border: 1px solid rgba(242,200,121,0.5);
    border-radius: var(--radius); padding: 28px 32px;
    display: flex; gap: 18px; align-items: flex-start;
}
.disclaimer-card .d-icon { flex-shrink: 0; color: #b8851e; }
.disclaimer-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.disclaimer-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* === Our Story === */
.our-story { padding: 96px 0; background: var(--blush-light); }
.story-content {
    max-width: 680px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 24px;
}
.story-block {
    background: var(--card); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); border: 1px solid rgba(20,33,58,0.05);
}
.story-block h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--teal-dark); }
.story-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }
.story-block p + p { margin-top: 12px; }
.story-block em { font-style: italic; color: var(--text); }
.story-link { color: var(--teal-dark); font-weight: 600; transition: opacity 0.2s; }
.story-link:hover { opacity: 0.7; }

/* === CTA === */
.cta { padding: 80px 0 96px; }
.cta-card {
    text-align: center; padding: 64px 40px; border-radius: 24px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: #fff;
    display: flex; flex-direction: column; align-items: center;
}
.cta-icon {
    width: 88px; height: 88px; border-radius: 22px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.cta-card p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 32px; }

/* === Footer === */
.footer { padding: 32px 0; border-top: 1px solid rgba(20,33,58,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.footer-icon { width: 32px; height: 32px; border-radius: 8px; box-shadow: 0 2px 6px rgba(20,33,58,0.1); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-dark); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 560px) {
    .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
}

/* === Animations === */
[data-animate] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].visible {
    opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [data-animate] { opacity: 1; transform: none; }
}
