: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);
}

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

.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: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        animation: slideDown 0.3s ease;
    }

    .nav-links.open a {
        font-size: 16px;
        padding: 8px 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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.15), transparent),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(30, 58, 95, 0.08), transparent),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(196, 120, 74, 0.06), 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: var(--night);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
    background: var(--night-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
}

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

.btn-ghost:hover {
    background: var(--white);
    border-color: rgba(30, 58, 95, 0.15);
}

.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;
}

.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: var(--white);
    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(-4px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: rgba(156, 175, 136, 0.2);
}

.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);
}

.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);
}

.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;
}

.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);
}

.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.08);
    border-color: rgba(156, 175, 136, 0.3);
    transform: translateY(-4px);
}

.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;
}

.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(-4px);
    box-shadow: 0 16px 48px var(--shadow);
    border-color: rgba(156, 175, 136, 0.2);
}

.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: var(--night);
    border-radius: 14px;
    color: var(--white);
    transition: all var(--transition);
}

.store-badge:hover {
    background: var(--night-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.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; }
}

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

.investors-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.investors-card .section-tag {
    margin-bottom: 20px;
}

.investors-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

@media (max-width: 767px) {
    .investors { padding: 80px 0; }
}

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

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 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-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-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    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-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(250, 250, 248, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.footer-social a span {
    font-weight: 500;
}

.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;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 4px;
}

@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; }

@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 { padding: 80px 0; }
}
