:root {
    --sage: #9CAF88;
    --sage-light: #b8cc9e;
    --sage-dark: #7a9368;
    --night: #1E3A5F;
    --night-light: #2d5a8a;
    --terra: #C4784A;
    --terra-light: #e89a6a;
    --sand: #F5F0E8;
    --cream: #FAFAF8;
    --white: #FFFFFF;
    --text: #1E3A5F;
    --text-muted: #6B7B8D;
    --text-light: #9BA8B7;
    --border: rgba(30, 58, 95, 0.08);
    --shadow: rgba(30, 58, 95, 0.06);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (min-width: 768px) {
    .container { padding: 0 48px; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

@media (min-width: 768px) {
    .nav-container { padding: 0 48px; }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo img {
    border-radius: 10px;
}

.nav-logo span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    border-radius: 2px;
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    transition: all var(--transition);
}

.lang-switch:hover {
    color: var(--text);
    border-color: var(--sage);
    background: rgba(156, 175, 136, 0.08);
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(156, 175, 136, 0.18), transparent),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(30, 58, 95, 0.1), transparent),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(196, 120, 74, 0.08), transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(156, 175, 136, 0.2);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(30, 58, 95, 0.08);
    bottom: -50px;
    left: -80px;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(196, 120, 74, 0.1);
    top: 30%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 48px;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(156, 175, 136, 0.12);
    border: 1px solid rgba(156, 175, 136, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--sage);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark), var(--night-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--night), var(--night-light));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--white);
    border-color: rgba(156, 175, 136, 0.3);
    box-shadow: 0 4px 16px rgba(156, 175, 136, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--night);
    border-radius: 44px;
    padding: 12px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(30, 58, 95, 0.3),
        0 0 100px rgba(156, 175, 136, 0.15);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.phone-notch {
    display: none;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--sand);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.phone-screen.placeholder img {
    display: none;
}

.phone-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    gap: 12px;
}

.phone-screen.placeholder .phone-placeholder {
    display: flex;
}

.phone-placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.phone-sm .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 36px;
    padding: 10px;
    overflow: hidden;
}

.phone-sm .phone-screen {
    border-radius: 28px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--sage);
    border-radius: 2px;
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0% { top: -50%; }
    100% { top: 150%; }
}

.logos-bar {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 8px 16px;
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all var(--transition);
}

.tech-badge:hover {
    border-color: rgba(156, 175, 136, 0.3);
    background: rgba(156, 175, 136, 0.06);
}

.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(156, 175, 136, 0.1);
    border: 1px solid rgba(156, 175, 136, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sage), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.08);
    border-color: rgba(156, 175, 136, 0.25);
    background: var(--white);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-large {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .feature-card-large {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 24px;
        padding: 40px;
    }
    .feature-card-large .feature-icon {
        grid-row: 1 / 3;
        align-self: start;
    }
    .feature-card-large .feature-desc {
        max-width: 600px;
    }
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--icon-bg);
    color: var(--icon-color);
    transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.feature-tags span {
    padding: 4px 12px;
    background: var(--sand);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.screenshots {
    padding: 120px 0;
    background: var(--white);
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.screenshots-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

.screenshot-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.screenshot-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--sand);
    border-color: rgba(30, 58, 95, 0.15);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--sage);
    width: 24px;
    border-radius: 4px;
}

.security {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(156, 175, 136, 0.06), transparent);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.security-content .section-tag,
.security-content .section-title {
    text-align: left;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.security-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.security-item:hover {
    background: rgba(156, 175, 136, 0.04);
}

.security-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(156, 175, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sage);
    transition: all var(--transition);
}

.security-item:hover .security-icon {
    background: rgba(156, 175, 136, 0.18);
    transform: scale(1.05);
}

.security-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.security-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.security-visual {
    display: none;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .security-visual { display: flex; }
}

.shield-visual {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(156, 175, 136, 0.15);
}

.shield-ring-1 {
    width: 100%;
    height: 100%;
    animation: ring-rotate 20s linear infinite;
}

.shield-ring-2 {
    width: 75%;
    height: 75%;
    animation: ring-rotate 15s linear infinite reverse;
    border-style: dashed;
}

.shield-ring-3 {
    width: 50%;
    height: 50%;
    animation: ring-rotate 25s linear infinite;
    border-color: rgba(156, 175, 136, 0.25);
}

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.shield-center {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(156, 175, 136, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(156, 175, 136, 0.15);
}

.vision {
    padding: 120px 0;
    background: var(--night);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(156, 175, 136, 0.08), transparent),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(196, 120, 74, 0.06), transparent);
}

.vision .section-tag {
    background: rgba(156, 175, 136, 0.15);
    border-color: rgba(156, 175, 136, 0.25);
    color: var(--sage-light);
}

.vision .section-title {
    color: var(--cream);
    position: relative;
}

.vision .text-muted {
    color: rgba(250, 250, 248, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(156, 175, 136, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--sage-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(250, 250, 248, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.stat-source {
    font-size: 11px;
    color: rgba(250, 250, 248, 0.3);
    font-weight: 500;
}

.sources-panel {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.sources-panel[open] {
    border-color: rgba(156, 175, 136, 0.2);
}
.sources-panel summary {
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(250, 250, 248, 0.5);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    user-select: none;
}
.sources-panel summary::-webkit-details-marker { display: none; }
.sources-panel summary::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.sources-panel[open] summary::before {
    transform: rotate(45deg);
}
.sources-panel summary:hover {
    color: rgba(250, 250, 248, 0.8);
}
.sources-panel ul {
    padding: 0 24px 20px 24px;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sources-panel li {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(250, 250, 248, 0.45);
    padding-left: 16px;
    position: relative;
}
.sources-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    opacity: 0.5;
}
.sources-panel li strong {
    color: rgba(250, 250, 248, 0.7);
}
.sources-panel li em {
    color: rgba(250, 250, 248, 0.55);
}
.sources-panel a {
    color: var(--sage-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 175, 136, 0.3);
    transition: border-color 0.2s, color 0.2s;
}
.sources-panel a:hover {
    color: var(--sage);
    border-color: var(--sage);
}

.stats-breakdown {
    margin-top: 32px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.stats-breakdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stats-breakdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-breakdown-country {
    font-size: 13px;
    font-weight: 600;
    color: rgba(250, 250, 248, 0.5);
}

.stats-breakdown-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--sage-light);
}

@media (max-width: 767px) {
    .stats-breakdown-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

.vision-quote {
    margin-top: 64px;
    text-align: center;
    position: relative;
}

.vision-quote blockquote {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.7;
    color: rgba(250, 250, 248, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    font-style: italic;
    position: relative;
    padding: 0 24px;
}

.vision-quote blockquote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 64px;
    color: var(--sage);
    opacity: 0.3;
    line-height: 1;
    font-style: normal;
}

.availability {
    padding: 120px 0;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.availability::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 20% 60%, rgba(156, 175, 136, 0.1), transparent),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(30, 58, 95, 0.05), transparent);
}

.availability .container {
    position: relative;
}

.availability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .availability-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 28px;
    }
}

.availability-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.availability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(30, 58, 95, 0.1);
    border-color: rgba(156, 175, 136, 0.25);
}

.availability-card-primary {
    border-color: rgba(156, 175, 136, 0.25);
    box-shadow: 0 4px 24px rgba(156, 175, 136, 0.08);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.availability-badge-soon {
    background: rgba(156, 175, 136, 0.12);
    border: 1px solid rgba(156, 175, 136, 0.2);
    color: var(--sage-dark);
}

.availability-badge-roadmap {
    background: rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.1);
    color: var(--night-light);
}

.availability-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(156, 175, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--sage);
}

.availability-icon-web {
    background: rgba(30, 58, 95, 0.06);
    color: var(--night-light);
}

.availability-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.availability-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--night), var(--night-light));
    border-radius: 14px;
    color: var(--white);
    transition: all var(--transition);
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

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

.store-badge-sub {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1;
    letter-spacing: 0.3px;
}

.store-badge-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.availability-roadmap-status {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: auto;
    width: 100%;
    padding: 20px 16px;
    background: var(--sand);
    border-radius: 16px;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.roadmap-step span:last-child {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.roadmap-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.08);
    transition: all 0.3s ease;
}

.roadmap-step-done .roadmap-dot {
    background: var(--sage);
    box-shadow: 0 0 0 2px rgba(156, 175, 136, 0.2);
}

.roadmap-step-done span:last-child {
    color: var(--sage-dark);
    font-weight: 600;
}

.roadmap-step-active .roadmap-dot {
    background: var(--terra);
    box-shadow: 0 0 0 2px rgba(196, 120, 74, 0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

.roadmap-step-active span:last-child {
    color: var(--terra);
    font-weight: 700;
}

.roadmap-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .availability { padding: 80px 0; }
    .availability-card { padding: 32px 24px; }
    .store-badges { flex-direction: column; }
    .store-badge { justify-content: center; }
}

.waitlist-banner {
    position: relative;
    padding: 48px 0;
    background: linear-gradient(180deg, var(--night) 0%, #1a3355 100%);
    overflow: hidden;
}

.waitlist-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(156, 175, 136, 0.12), transparent),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(196, 120, 74, 0.06), transparent);
}

.waitlist-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    background: rgba(250, 250, 248, 0.04);
    border: 1px solid rgba(250, 250, 248, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
}

.waitlist-banner-text {
    flex: 1;
    min-width: 0;
}

.waitlist-banner-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.waitlist-banner-subtitle {
    font-size: 15px;
    color: rgba(250, 250, 248, 0.6);
    line-height: 1.5;
}

.waitlist-banner-form-wrap {
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
}

.waitlist-input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid rgba(250, 250, 248, 0.2);
    border-radius: var(--radius);
    background: rgba(250, 250, 248, 0.08);
    color: var(--cream);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.waitlist-input::placeholder {
    color: rgba(250, 250, 248, 0.4);
}

.waitlist-input:focus {
    border-color: var(--sage);
    background: rgba(250, 250, 248, 0.12);
}

.waitlist-btn {
    padding: 14px 24px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}

.waitlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.waitlist-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(156, 175, 136, 0.15);
    border: 1px solid rgba(156, 175, 136, 0.3);
    border-radius: var(--radius);
}

.waitlist-success.visible {
    display: flex;
}

.waitlist-success-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--sage-light);
    font-size: 15px;
    font-weight: 500;
}

.waitlist-survey-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(250, 250, 248, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(250, 250, 248, 0.15);
    transition: all var(--transition);
}

.waitlist-survey-link:hover {
    color: var(--sage-light);
    border-color: rgba(156, 175, 136, 0.4);
    background: rgba(156, 175, 136, 0.1);
}

@media (max-width: 767px) {
    .waitlist-banner-inner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 24px;
    }
    .waitlist-banner-form-wrap {
        max-width: 100%;
    }
    .waitlist-form {
        flex-direction: column;
    }
    .waitlist-btn {
        justify-content: center;
    }
}

.founder {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 15% 50%, rgba(156, 175, 136, 0.08), transparent),
        radial-gradient(ellipse 30% 40% at 85% 30%, rgba(30, 58, 95, 0.04), transparent);
}

.founder .container {
    position: relative;
}

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

@media (min-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.founders-visuals {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.founder-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-photo {
    width: 154px;
    height: 154px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(156, 175, 136, 0.3);
    margin-bottom: 24px;
    position: relative;
    box-shadow:
        0 0 0 8px rgba(156, 175, 136, 0.06),
        0 0 0 16px rgba(156, 175, 136, 0.03),
        0 12px 40px rgba(30, 58, 95, 0.12);
    animation: photo-glow 4s ease-in-out infinite;
}

@keyframes photo-glow {
    0%, 100% { box-shadow: 0 0 0 8px rgba(156, 175, 136, 0.06), 0 0 0 16px rgba(156, 175, 136, 0.03), 0 12px 40px rgba(30, 58, 95, 0.12); }
    50% { box-shadow: 0 0 0 8px rgba(156, 175, 136, 0.1), 0 0 0 20px rgba(156, 175, 136, 0.05), 0 16px 48px rgba(30, 58, 95, 0.15); }
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-initials {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage), var(--night));
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

.founder-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.founder-linkedin svg {
    flex-shrink: 0;
}

.founder-content .section-tag,
.founder-content .section-title {
    text-align: left;
}

.founder-story {
    margin-top: 24px;
}

.founder-story p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.founder-story p strong {
    color: var(--text);
    font-size: 16px;
}

.founder-quote {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 20px 24px;
    border-left: 3px solid var(--sage);
    background: rgba(156, 175, 136, 0.04);
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
}

@media (max-width: 767px) {
    .founder { padding: 80px 0; }
    .founder-visual { margin-bottom: 8px; }
    .founder-content .section-tag,
    .founder-content .section-title {
        text-align: center;
    }
    .founder-story { text-align: center; }
    .founder-quote {
        border-left: none;
        padding-left: 20px;
        text-align: center;
        border-top: 3px solid var(--sage);
        border-radius: 0 0 12px 12px;
    }
}

.investors {
    padding: 140px 0;
    background: linear-gradient(160deg, #0f2440 0%, var(--night) 30%, #1a3355 60%, #243d5c 100%);
    position: relative;
    overflow: hidden;
}

.investors::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(156, 175, 136, 0.1), transparent),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(196, 120, 74, 0.08), transparent),
        radial-gradient(ellipse 50% 50% at 50% 80%, rgba(156, 175, 136, 0.05), transparent);
}

.investors-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s ease-in-out infinite;
}

.investors-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(156, 175, 136, 0.12);
    top: -80px;
    right: -60px;
}

.investors-orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(196, 120, 74, 0.08);
    bottom: -40px;
    left: -40px;
    animation-delay: -4s;
}

.investors-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.investors .section-tag {
    background: rgba(156, 175, 136, 0.15);
    border-color: rgba(156, 175, 136, 0.25);
    color: var(--sage-light);
    margin-bottom: 24px;
}

.investors-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--cream);
    line-height: 1.1;
}

.investors-title .text-gradient-light {
    background: linear-gradient(135deg, var(--sage-light), #d4e4c8, var(--sage));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investors-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(250, 250, 248, 0.65);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.investors-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.investors-highlight {
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.investors-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(156, 175, 136, 0.3);
    transform: translateY(-4px);
}

.investors-highlight-icon {
    margin-bottom: 12px;
    display: block;
    color: var(--sage-light);
}

.investors-highlight-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--sage-light);
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 4px;
}

.investors-highlight-label {
    font-size: 13px;
    color: rgba(250, 250, 248, 0.5);
    display: block;
}

.investors-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}
.investors .btn-ghost {
    border: 1.5px solid rgba(250, 250, 248, 0.2);
    color: rgba(250, 250, 248, 0.8);
    background: transparent;
}
.investors .btn-ghost:hover {
    border-color: var(--sage-light);
    color: var(--sage-light);
    background: rgba(156, 175, 136, 0.08);
    transform: translateY(-2px);
}
.investors .btn-primary {
    background: var(--sage);
    color: var(--white);
    box-shadow: none;
    padding: 18px 40px;
    font-size: 17px;
    border-radius: 18px;
}

.investors .btn-primary:hover {
    background: var(--sage-dark);
    box-shadow: none;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .investors { padding: 80px 0; }
    .investors-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .investors-highlight {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px;
    }
    .investors-highlight-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .investors-highlight div {
        text-align: left;
    }
}

.footer {
    background: #0c1e33;
    color: rgba(250, 250, 248, 0.7);
    padding: 64px 0 32px;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 36px;
    margin-bottom: 56px;
    background: linear-gradient(135deg, rgba(156,175,136,0.12) 0%, rgba(156,175,136,0.04) 100%);
    border: 1px solid rgba(156,175,136,0.15);
    border-radius: 16px;
}

.footer-cta-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
}

.footer-cta-text p {
    font-size: 14px;
    color: rgba(250, 250, 248, 0.5);
    line-height: 1.5;
}

.footer-cta .btn {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    border-radius: 8px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250, 250, 248, 0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(250, 250, 248, 0.06);
    border: 1px solid rgba(250, 250, 248, 0.08);
    color: rgba(250, 250, 248, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(156, 175, 136, 0.15);
    border-color: rgba(156, 175, 136, 0.3);
    color: var(--sage-light);
}

.footer-links-group h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cream);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    text-decoration: none;
    color: rgba(250, 250, 248, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--sage-light);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(250, 250, 248, 0.04);
    border: 1px solid rgba(250, 250, 248, 0.06);
    font-size: 12px;
    font-weight: 500;
    color: rgba(250, 250, 248, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(250, 250, 248, 0.35);
}

.footer-langs {
    display: flex;
    gap: 4px;
}

.footer-langs a {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: rgba(250, 250, 248, 0.35);
    transition: all 0.2s;
}

.footer-langs a:hover {
    color: var(--sage-light);
    background: rgba(156, 175, 136, 0.1);
}

.footer-langs a.active {
    color: var(--sage-light);
    background: rgba(156, 175, 136, 0.12);
}

.legal-page {
    padding: 140px 0 80px;
}

.legal-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
}

.legal-section a {
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 175, 136, 0.3);
    transition: border-color var(--transition);
}

.legal-section a:hover {
    border-color: var(--sage);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--night);
    color: var(--white);
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.2);
}

.carousel-btn:focus-visible,
.carousel-dot:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

.lang-switch:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

@media (prefers-contrast: high) {
    :root {
        --border: rgba(30, 58, 95, 0.2);
        --text-muted: #4a5a6c;
        --text-light: #6a7a8c;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.bp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.bp-modal-overlay.active {
    display: flex;
}

.bp-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 48px rgba(30, 58, 95, 0.15);
}

.bp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color var(--transition);
}

.bp-modal-close:hover {
    color: var(--text);
}

.bp-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(156, 175, 136, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--sage);
}

.bp-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.bp-modal p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bp-modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition);
    outline: none;
    margin-bottom: 16px;
}

.bp-modal-input:focus {
    border-color: var(--sage);
}

.bp-modal-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--sage);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition), transform 0.15s ease;
}

.bp-modal-submit:hover {
    background: var(--sage-dark);
}

.bp-modal-submit:active {
    transform: scale(0.98);
}

.bp-modal-success {
    text-align: center;
    padding: 20px 0;
}

.bp-modal-success svg {
    color: var(--sage);
    margin-bottom: 16px;
}

.bp-modal-success h3 {
    margin-bottom: 12px;
}

.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.how-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(156, 175, 136, 0.1);
    border-radius: 16px;
    margin: 0 auto 20px;
    color: var(--sage-dark);
}

.how-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.how-step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq {
    padding: 120px 0;
    background: var(--sand);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item[open] {
    box-shadow: 0 4px 24px var(--shadow);
    border-color: rgba(156, 175, 136, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    color: var(--sage-dark);
}

.faq-question:hover {
    color: var(--sage-dark);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-visual { display: none; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-scroll-indicator { display: none; }
    .features, .screenshots, .security, .vision, .how-it-works, .faq { padding: 80px 0; }
    .how-steps { grid-template-columns: 1fr; gap: 16px; }
    .how-step { padding: 24px 16px; }
    .faq-question { font-size: 15px; padding: 16px 20px; }
    .faq-answer { padding: 0 20px 16px; }
}
