/* ═══════════════════════════════════════════════════
   OKIRA — Dark Premium Landing Page
   Design: Glassmorphism · Dark · Violet/Indigo
   ═══════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════════════════ */
.splash {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    background: #0F1115;
    transition: opacity 0.65s cubic-bezier(.4,0,.2,1);
}
.splash video {
    width: 220px;
    height: auto;
}
.splash.fade-out {
    opacity: 0;
    pointer-events: none;
}
body.splash-active {
    overflow: hidden;
}

/* ── Tokens ── */
:root {
    --bg:         #0F1115;
    --bg-raised:  #16181D;
    --bg-surface: rgba(255,255,255,0.03);
    --border:     rgba(255,255,255,0.06);
    --border-hi:  rgba(255,255,255,0.1);

    --text-1:     #F8FAFC;
    --text-2:     #94A3B8;
    --text-3:     #64748B;

    --violet:     #7C3AED;
    --indigo:     #4F46E5;
    --mint:       #10B981;
    --coral:      #F43F5E;
    --amber:      #F59E0B;

    --gradient:   linear-gradient(135deg, var(--violet), var(--indigo));
    --glow:       0 0 40px rgba(124,58,237,0.35);
    --glow-lg:    0 0 80px rgba(124,58,237,0.2);

    --font-head:  'Manrope', system-ui, sans-serif;
    --font-body:  'DM Sans', system-ui, sans-serif;

    --ease:       cubic-bezier(.4,0,.2,1);
    --container:  1140px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-2);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: rgba(124,58,237,0.3); color: var(--text-1); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A2D35; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3A3D45; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Noise Overlay ── */
.noise {
    position: fixed; inset: 0; z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--text-1);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    border: none; border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-neon {
    background: var(--gradient);
    color: #fff;
    padding: 0.85rem 2rem;
    box-shadow: var(--glow);
}
.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(124,58,237,0.5), 0 0 100px rgba(124,58,237,0.15);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

.btn-nav {
    background: var(--gradient);
    color: #fff;
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(124,58,237,0.2);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: var(--glow); }

/* ── Glass Card ── */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
}

/* ── Badge ── */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--violet);
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 100px;
    font-family: var(--font-head);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(15,17,21,0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.navbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 2rem;
}

.logo {
    display: flex; align-items: center;
    height: 100%;
}
.logo-img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex; gap: 2.5rem;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-3);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

/* Background orbs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}
.orb-1 { width: 550px; height: 550px; background: var(--violet); top: -10%; left: -8%; animation: drift 20s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--indigo); bottom: -15%; right: -5%; animation: drift 25s ease-in-out infinite reverse; }
.orb-3 { width: 250px; height: 250px; background: var(--mint); top: 50%; right: 20%; opacity: 0.08; animation: drift 18s ease-in-out infinite 5s; }

@keyframes drift {
    0%,100% { transform: translate(0,0); }
    25% { transform: translate(30px,-25px); }
    50% { transform: translate(-20px,30px); }
    75% { transform: translate(25px,15px); }
}

/* Hero layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative; z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    margin: 1.25rem 0 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-2);
    margin: 1.5rem 0 2rem;
    max-width: 520px;
    line-height: 1.75;
}

.hero-actions { margin-bottom: 1.25rem; }

.hero-trust {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-3);
    font-weight: 500;
}
.trust-icon {
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--mint);
}

/* Hero reveal animation */
.hero-reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp 0.75s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
}

.phone-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: var(--gradient);
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    top: 0; left: 0;
}

.hero-illustration {
    position: relative; z-index: 1;
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    border-radius: 18px;
    animation: heroFloat 6s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════
   SECTION 2 — PROBLEM
   ═══════════════════════════════════════════════════ */
.section-problem {
    padding: 7rem 0;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.problem-card {
    position: relative;
    padding: 2rem 1.75rem;
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s;
}
.problem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244,63,94,0.2);
}
.card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.accent-red { background: linear-gradient(90deg, var(--coral), var(--amber)); }

.card-icon { margin-bottom: 1rem; }

.problem-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}
.problem-card p {
    font-size: 0.95rem;
    color: var(--text-3);
    line-height: 1.65;
    font-style: italic;
}

.transition-text {
    text-align: center;
    font-size: 1.35rem;
    color: var(--text-2);
    margin-top: 3.5rem;
    font-weight: 500;
    font-family: var(--font-head);
}

/* ═══════════════════════════════════════════════════
   SECTION 3 — FEATURES
   ═══════════════════════════════════════════════════ */
.section-features {
    padding: 4rem 0 7rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.row-reverse { direction: rtl; }
.feature-row.row-reverse > * { direction: ltr; }

.feature-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--violet);
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.feature-text p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
}
.feature-text em {
    color: var(--text-1);
    font-style: normal;
    background: rgba(124,58,237,0.1);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

/* ── Feature Visual / Mockup Cards ── */
.feature-visual {
    display: flex;
    justify-content: center;
}

.mockup-card {
    padding: 1.75rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    overflow: hidden;
}

/* Feature A — Magic Input */
.mock-input-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-hi);
    border-radius: 10px;
    margin-bottom: 1.25rem;
}
.mock-input-text {
    font-size: 0.88rem;
    color: var(--text-1);
    font-family: var(--font-body);
}
.mock-send-icon {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    flex-shrink: 0;
}

.mock-result {
    display: flex; flex-direction: column; gap: 0.6rem;
    margin-bottom: 1rem;
}
.mock-cat-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-2);
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.tag-val { margin-left: auto; color: var(--coral); font-weight: 600; }

.mock-ral-line {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--mint);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.mock-ral-line strong { color: var(--text-1); }
.ral-dot {
    width: 6px; height: 6px;
    background: var(--mint);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(16,185,129,0.6);
}

/* Feature B — RAL Circle */
.mockup-ral-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    gap: 1rem;
}
.ral-svg-lg { width: 160px; height: 160px; }
.ral-big-center {
    margin-top: -145px;
    margin-bottom: 10px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 130px;
}
.ral-big-val {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-1);
}
.ral-big-label {
    font-size: 0.72rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mock-meta {
    width: 100%;
    display: flex; flex-direction: column; gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.meta-row {
    display: flex; justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-3);
}
.meta-val { font-weight: 600; }
.meta-val.warn { color: var(--amber); }
.meta-val.ok { color: var(--mint); }

/* Feature C — Coach Chat */
.mockup-chat-card {
    display: flex; flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
}
.mock-bubble {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 0.82rem;
    line-height: 1.55;
    border-radius: 14px;
}
.user-bubble {
    align-self: flex-end;
    background: var(--gradient);
    color: #fff;
    border-radius: 14px 14px 4px 14px;
}
.bot-bubble {
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-2);
    border-radius: 14px 14px 14px 4px;
}
.bubble-alert {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--amber);
    background: rgba(245,158,11,0.12);
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 4px;
}
.bubble-ok {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--mint);
    background: rgba(16,185,129,0.12);
    padding: 2px 7px;
    border-radius: 4px;
    margin-right: 4px;
}

/* Feature D — Enveloppes Budget */
.mockup-env-card {
    display: flex; flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
}
.env-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.15rem;
    display: flex; flex-direction: column;
    gap: 0.7rem;
}
.env-header {
    display: flex; align-items: center; gap: 0.65rem;
}
.env-icon {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 9px;
    flex-shrink: 0;
}
.env-icon-purple {
    background: rgba(124,58,237,0.15);
    color: var(--violet);
}
.env-name {
    display: flex; flex-direction: column;
    line-height: 1.3;
}
.env-name strong {
    font-size: 0.9rem;
    color: var(--text-1);
    font-family: var(--font-head);
}
.env-name span {
    font-size: 0.7rem;
    color: var(--text-3);
}
.env-amounts {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem;
}
.env-spent {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-1);
}
.env-total {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-3);
}
.env-dispo {
    font-size: 0.78rem;
    font-weight: 600;
}
.env-dispo.ok { color: var(--mint); }
.env-dispo.warn { color: var(--amber); }

.env-track {
    display: flex; align-items: center; gap: 0.5rem;
}
.env-track > div {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.env-fill {
    height: 100%;
    width: var(--pct, 0%);
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1.2s var(--ease);
}
.env-fill.fill-amber {
    background: linear-gradient(90deg, var(--amber), #FBBF24);
}
.env-pct {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 600;
    min-width: 2.2em;
    text-align: right;
}
.env-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.35rem;
    width: 100%;
    padding: 0.55rem;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(124,58,237,0.2);
    transition: box-shadow 0.25s, transform 0.25s;
}
.env-btn:hover {
    box-shadow: 0 0 28px rgba(124,58,237,0.35);
    transform: translateY(-1px);
}
.env-next {
    font-size: 0.7rem;
    color: var(--violet);
    opacity: 0.7;
}

/* Feature E — Objectives */
.mockup-obj-card {
    display: flex; flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
}
.obj-item {
    display: flex; flex-direction: column; gap: 0.4rem;
}
.obj-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
    color: var(--text-2);
}
.obj-frac { font-weight: 600; color: var(--text-1); }
.obj-total { color: var(--text-3); font-weight: 400; }

.obj-track {
    height: 7px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.obj-fill {
    height: 100%;
    width: var(--pct, 0%);
    background: linear-gradient(90deg, var(--mint), #34D399);
    border-radius: 10px;
    transition: width 1.2s var(--ease);
}
.obj-fill.fill-purple {
    background: var(--gradient);
}
.obj-fill.fill-blue {
    background: linear-gradient(90deg, var(--indigo), #818CF8);
}

.obj-note {
    font-size: 0.78rem;
    color: var(--mint);
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}
.obj-note strong { color: var(--text-1); }

/* ═══════════════════════════════════════════════════
   SECTION 4 — PRIVACY
   ═══════════════════════════════════════════════════ */
.section-privacy {
    padding: 7rem 0;
    position: relative;
    text-align: center;
}

.privacy-glow {
    position: absolute;
    width: 500px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.privacy-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.shield-icon { margin-bottom: 1.5rem; }

.privacy-body {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-2);
    margin-bottom: 2.5rem;
}
.privacy-body strong { color: var(--text-1); }

.privacy-badges {
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.p-badge {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
}

/* ═══════════════════════════════════════════════════
   SECTION 5 — WAITLIST
   ═══════════════════════════════════════════════════ */
.section-waitlist {
    padding: 6rem 0 8rem;
}
.waitlist-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.waitlist-subtitle strong { color: var(--text-1); }

.waitlist-form { width: 100%; }

.form-row {
    display: flex; gap: 0.75rem;
}

.input-email {
    flex: 1;
    padding: 0.9rem 1.15rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-hi);
    border-radius: 10px;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.input-email::placeholder { color: var(--text-3); }
.input-email:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.input-email.input-error {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(244,63,94,0.15);
}

.btn-submit { flex-shrink: 0; }

.form-note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-3);
}

.form-error {
    background: rgba(244,63,94,0.08);
    border: 1px solid rgba(244,63,94,0.2);
    color: var(--coral);
    padding: 10px 14px;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.88rem;
}

.form-success {
    padding: 2rem;
    border: 1px solid rgba(16,185,129,0.2);
    background: rgba(16,185,129,0.06);
    border-radius: 14px;
    text-align: center;
}
.success-icon { margin-bottom: 0.75rem; }
.form-success h3 {
    font-family: var(--font-head);
    color: var(--mint);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-2); }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 3.5rem 2rem 1.5rem;
    background: #0A0C10;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-logo-img {
    height: 22px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
    font-size: 0.9rem;
    color: var(--text-2);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--violet); }
.footer-col p {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.6;
}
.footer-siret {
    margin-top: 0.5rem;
    font-size: 0.8rem !important;
    color: var(--text-3);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-3);
}

/* ═══════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════ */
.modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000;
    padding: 1.5rem;
}
.modal-content {
    background: var(--bg-raised);
    border: 1px solid var(--border-hi);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 82vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
}
.modal-close {
    position: absolute; top: 1rem; right: 1.25rem;
    font-size: 1.75rem;
    background: none; border: none; cursor: pointer;
    color: var(--text-3);
    transition: color 0.2s;
    line-height: 1;
}
.modal-close:hover { color: var(--text-1); }

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}
.legal-text h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--violet);
}
.legal-text h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-1);
}
.legal-text p {
    margin-bottom: 0.85rem;
    color: var(--text-3);
    line-height: 1.7;
    font-size: 0.9rem;
}
.legal-text a { color: var(--violet); }
.legal-text a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0s);
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .feature-row,
    .feature-row.row-reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        direction: ltr;
        text-align: center;
    }
    .feature-text p { margin: 0 auto; }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container { padding: 0 1.25rem; }

    .nav-links { display: none; }
    .navbar-inner { padding: 0.6rem 1rem; }
    .logo-img { height: 24px; }
    .btn-nav { font-size: 0.8rem; padding: 0.5rem 1rem; }

    .hero {
        padding-top: 4.5rem;
        min-height: auto;
        padding-bottom: 2rem;
    }
    .hero-grid { gap: 1.5rem; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.92rem; margin: 1rem 0 1.25rem; }
    .hero-actions { margin-bottom: 0.75rem; }
    .hero-trust { font-size: 0.78rem; }

    .btn-lg { width: 100%; padding: 0.9rem; font-size: 0.95rem; }

    /* Hero image: small and centered below text */
    .hero-illustration { max-width: 180px; }
    .phone-glow { filter: blur(60px); }

    /* Sections */
    .section-problem,
    .section-features,
    .section-privacy,
    .section-waitlist { padding: 3rem 0; }

    .section-title { font-size: 1.5rem; margin-bottom: 1rem; }
    .section-subtitle { font-size: 0.92rem; }

    /* Features */
    .feature-row { margin-bottom: 3rem; gap: 1.5rem; }
    .feature-text h3 { font-size: 1.25rem; }
    .feature-text p { font-size: 0.9rem; }
    .mockup-card { max-width: 100%; padding: 1.25rem; }

    /* Form */
    .form-row { flex-direction: column; }
    .btn-submit { width: 100%; }

    /* Privacy */
    .privacy-badges { flex-direction: column; align-items: center; gap: 1rem; }

    /* Footer */
    .footer-grid { gap: 1.5rem; }

    /* Modals */
    .modal-content { padding: 1.5rem; margin: 0.5rem; }

    /* Background orbs — scale down */
    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 220px; height: 220px; }
    .orb-3 { width: 120px; height: 120px; }
}
