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

:root {
    --bg: #E7EDDF;
    --bg-dark: #D6DFC9;
    --bg-deep: #C9D4B8;
    --text: #375926;
    --text-muted: rgba(78, 93, 66, 0.8);
    --card: #FAF9F5;
    --card-border: rgba(55, 89, 38, 0.06);
    --accent: #EE9E4F;
    --accent-light: #FBAE62;
    --green-light: #8AAC6B;
    --green-mid: #4E5D42;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --border: #EEEEEE;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --shadow-sm: 0 1px 3px rgba(55, 89, 38, 0.04);
    --shadow-md: 0 4px 16px rgba(55, 89, 38, 0.06);
    --shadow-lg: 0 12px 40px rgba(55, 89, 38, 0.08);
    --shadow-xl: 0 20px 60px rgba(55, 89, 38, 0.1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

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


/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(55, 89, 38, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo-text {
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.nav-store-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s var(--ease-spring), opacity 0.2s;
    border-radius: 8px;
}

.store-btn:hover { transform: scale(1.03); }
.store-btn:active { transform: scale(0.97); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
}

.mobile-store-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}


/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(138, 172, 107, 0.3);
    top: -200px;
    right: -150px;
    animation: blobDrift 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(238, 158, 79, 0.15);
    bottom: -100px;
    left: -120px;
    animation: blobDrift 25s ease-in-out infinite reverse;
}

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -15px) scale(1.03); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-hint {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Phone mockup */
.hero-phone {
    flex-shrink: 0;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(138, 172, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.phone-frame {
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #3a3a3c, #2c2c2e 40%, #1c1c1e 60%, #2c2c2e);
    border-radius: 52px;
    padding: 10px;
    position: relative;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        0 0 0 1.5px #1a1a1c,
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.phone-frame::before {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 145px;
    width: 3px;
    height: 52px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 0 2px 2px 0;
    box-shadow: 1px 0 2px rgba(0,0,0,0.3);
}

.phone-frame::after {
    content: '';
    position: absolute;
    left: -2.5px;
    top: 120px;
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 2px 0 0 2px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
}

.phone-screen::after {
    content: '';
    position: absolute;
    left: -12.5px;
    top: 162px;
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, #4a4a4c, #3a3a3c, #4a4a4c);
    border-radius: 2px 0 0 2px;
    box-shadow: -1px 0 2px rgba(0,0,0,0.3);
    z-index: 10;
}

.phone-dynamic-island {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 5;
}

.phone-dynamic-island::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a2a3a, #0a0a15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    background: var(--bg);
    box-shadow: inset 0 0 0 0.5px rgba(255,255,255,0.1);
}

.phone-garden {
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-hero-area {
    position: relative;
    width: 100%;
    height: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.phone-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.phone-mascot-container {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    z-index: 2;
}

.phone-mascot-container canvas { width: 100%; height: 100%; }

.phone-hero-shadow {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.phone-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(0deg, var(--bg), transparent);
    z-index: 3;
}

.phone-garden-content {
    flex: 1;
    padding: 4px 10px 12px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.phone-garden-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 2px;
    margin-bottom: 6px;
}

.phone-garden-title { font-size: 13px; font-weight: 800; color: var(--text); }
.phone-garden-count { font-size: 9px; font-weight: 600; color: var(--text-muted); }

.phone-garden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-plant-card {
    background: var(--card);
    border-radius: 10px;
    padding: 4px 6px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 4px rgba(55, 89, 38, 0.06);
}

.phone-plant-rive {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.phone-plant-rive canvas {
    width: 90px;
    height: 90px;
    margin-top: -40px;
    margin-bottom: 6px;
}

.phone-plant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2px 2px 0;
}

.phone-plant-label { font-size: 11px; font-weight: 700; color: var(--text); }

.phone-plant-level {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(238, 158, 79, 0.12);
    padding: 1px 6px;
    border-radius: 8px;
}

.phone-plant-water {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    width: 100%;
    padding: 2px 2px 0;
}

.phone-water-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.phone-water-dot.dot-ok { background: var(--green-light); }


/* ===== Stats Ribbon ===== */
.stats-ribbon {
    padding: 56px 0;
    background: var(--card);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    max-width: 220px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(55, 89, 38, 0.1);
    flex-shrink: 0;
}


/* ===== Section shared ===== */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 12px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}


/* ===== Features — zig-zag rows ===== */
.features {
    padding: 120px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.feature-row:last-child { margin-bottom: 0; }

.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(238, 158, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 500;
    max-width: 440px;
}

/* Feature visual cards */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-card-float {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.feature-card-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    pointer-events: none;
}

/* Notification float */
.float-notification {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(55, 89, 38, 0.1);
    animation: floatBounce 3s ease-in-out infinite;
}

.float-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.float-notification strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.float-notification span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Evolution float */
.float-evolution {
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-evolution canvas {
    width: 180px;
    height: 180px;
}

/* Streak float */
.float-streak {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatBounce 4s ease-in-out infinite;
}

.streak-flame {
    animation: flameGlow 2s ease-in-out infinite;
}

.streak-count {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
}

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

/* Scan float */
.float-scan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

.scan-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(138, 172, 107, 0.3);
    border-radius: 50%;
    top: -8px;
    animation: scanPulse 2.5s ease-in-out infinite;
}

.scan-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-light);
    background: rgba(138, 172, 107, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes flameGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(238, 158, 79, 0.3)); }
    50% { filter: drop-shadow(0 0 16px rgba(238, 158, 79, 0.5)); }
}

@keyframes scanPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}


/* ===== Evolution ===== */
.evolution {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
}

.evolution-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.evo-step { text-align: center; }

.evo-visual {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.evo-visual canvas {
    width: 190px;
    height: 190px;
    margin-top: -80px;
}

.evo-dark-img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.evo-mystery { opacity: 0.4; }

.evo-question {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-muted);
    opacity: 0.3;
}

.evo-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.evo-pill-mystery {
    background: linear-gradient(135deg, rgba(78, 93, 66, 0.4), rgba(78, 93, 66, 0.25));
}

.evo-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.evo-connector {
    display: flex;
    align-items: center;
    padding-bottom: 48px;
}

.evo-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--bg-dark), rgba(138, 172, 107, 0.3), var(--bg-dark));
    border-radius: 1px;
}


/* ===== Mission ===== */
.mission {
    padding: 120px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.mission-text h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 14px;
}

.mission-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--card-border);
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 500;
}

.mission-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}


/* ===== CTA ===== */
.cta {
    padding: 80px 0 120px;
}

.cta-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 64px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.cta-mascot {
    width: 200px;
    height: 167px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cta-mascot canvas {
    width: 320px;
    height: 320px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.7;
}

.cta-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ===== Footer ===== */
.footer {
    padding: 44px 0;
    background: var(--green-mid);
    color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo { width: 32px; height: 32px; border-radius: 8px; }
.footer-name { font-size: 18px; font-weight: 700; color: #fff; }

.footer-links { display: flex; gap: 24px; }

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.footer-socials a:hover { color: #fff; transform: scale(1.1); }

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.footer-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    margin-top: 4px;
}


/* ===== Blog ===== */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.blog-card-icon { flex-shrink: 0; }

.blog-card-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 8px;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-card-link { font-size: 14px; font-weight: 700; color: var(--accent); }

.blog-back {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color 0.2s;
}

.blog-back:hover { color: var(--text); }

.blog-meta {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

/* About page */
.about-hero-block { margin-bottom: 36px; }
.about-hero-block h2 { margin-top: 0; }

.about-stats-row {
    display: flex;
    gap: 16px;
    margin: 40px 0;
}

.about-stats-row .about-stat { flex: 1; }
.about-company-details { margin-top: 48px; }

.about-stat {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
}

.about-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}


/* ===== Legal & Support Pages ===== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-container { max-width: 800px; }

.legal-container h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

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

.legal-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-container h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 8px;
}

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

.legal-container ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 4px;
    font-weight: 500;
}

.legal-container a {
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.2s;
}

.legal-container a:hover { opacity: 0.8; }

.legal-address {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 16px 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--card-border);
}

/* Support page cards */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.support-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.support-icon { margin-bottom: 14px; }

.support-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    margin-top: 0;
}

.support-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 500;
}

.support-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent) !important;
    transition: opacity 0.2s;
}

.support-link:hover { opacity: 0.8; }

.support-contact-section { margin-bottom: 56px; }
.support-contact-section h2 { margin-top: 0; }

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.support-contact-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--card-border);
}

.support-contact-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 8px;
}

.support-contact-item a {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.support-contact-item p { font-size: 13px; margin-bottom: 0; }

.support-faq h2 { margin-top: 0; }

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    border: 1px solid var(--card-border);
}

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 6px;
}

.faq-item p { font-size: 14px; margin-bottom: 0; }


/* ===== Responsive ===== */
@media (max-width: 900px) {
    .container { padding: 0 24px; }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

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

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-store-buttons { justify-content: center; }
    .hero-actions { align-items: center; }

    .phone-frame {
        width: 240px;
        height: 490px;
        border-radius: 44px;
    }

    .phone-screen { border-radius: 36px; }

    .phone-dynamic-island {
        width: 86px;
        height: 24px;
        top: 16px;
    }

    .stats-row { flex-direction: column; gap: 32px; }
    .stat-divider { width: 48px; height: 1px; }

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .feature-row-reverse > * { direction: ltr; }
    .feature-content { text-align: center; }
    .feature-content p { max-width: 100%; margin: 0 auto; }
    .feature-badge { margin: 0 auto 20px; }

    .evolution-track {
        flex-wrap: wrap;
        gap: 8px;
    }

    .evo-visual { width: 150px; height: 150px; }
    .evo-visual canvas { width: 140px; height: 140px; }
    .evo-dark-img { width: 130px; height: 130px; }
    .evo-connector { display: none; }

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

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .cta-store-buttons { justify-content: center; }

    .about-stats-row { flex-direction: column; }
    .support-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav-links, .nav-store-buttons { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 120px 0 60px; }

    .hero-text h1 { font-size: 34px; }

    .phone-frame {
        width: 220px;
        height: 448px;
        border-radius: 40px;
    }

    .phone-screen { border-radius: 32px; }

    .feature-card-float {
        padding: 28px;
        min-height: 180px;
    }

    .evolution-track { gap: 4px; }
    .evo-visual { width: 120px; height: 120px; }
    .evo-visual canvas { width: 110px; height: 110px; margin-top: -50px; }
    .evo-dark-img { width: 100px; height: 100px; }

    .support-grid { grid-template-columns: 1fr; }
    .support-contact-grid { grid-template-columns: 1fr; }
}
