/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #f0f4f0;
    font-size: 1.05rem;
}

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

/* ─── Header ────────────────────────────────────────────── */
.header {
    background: #8dc63f;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 16px rgba(100, 160, 30, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    width: fit-content;
}

.logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.logo-text {
    color: white;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* ─── Main ──────────────────────────────────────────────── */
.main {
    padding: 3rem 0 4rem;
    min-height: calc(100vh - 200px);
}

/* ─── Hero (centred) ────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(140deg, #2d7700 0%, #3d9200 60%, #4aab00 100%);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(45, 119, 0, 0.35);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.85rem;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    margin-bottom: 1.1rem;
    letter-spacing: -0.2px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
}

/* ─── Store Buttons ─────────────────────────────────────── */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #111;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s ease;
    min-width: 170px;
    border: 1.5px solid #333;
}

.store-btn:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border-color: #444;
}

.store-btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-btn-icon svg {
    width: 100%;
    height: 100%;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn-label {
    font-size: 0.65rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.store-btn-store {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

/* ─── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 3rem;
    overflow: hidden;
}

.trust-item {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item svg {
    width: 28px;
    height: 28px;
    color: #8dc63f;
    margin: 0 auto 0.5rem;
    display: block;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.trust-item span {
    font-size: 0.82rem;
    color: #888;
    font-weight: 400;
    line-height: 1.4;
}

/* ─── Section titles ────────────────────────────────────── */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ─── Screenshots ───────────────────────────────────────── */
.screenshots {
    margin-bottom: 4rem;
    text-align: center;
}

.screenshots-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshots-scroll img {
    height: 480px;
    width: auto;
    border-radius: 16px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: transform 0.2s ease;
}

.screenshots-scroll img:hover {
    transform: scale(1.02);
}

/* ─── How it works ──────────────────────────────────────── */
.how-it-works {
    margin-bottom: 4rem;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    align-items: stretch;
}

/* Dashed connector — centred exactly on the 48px circles which sit at the
   very top of each .step (no card padding above them). */
.steps::before {
    content: '';
    position: absolute;
    top: 24px; /* half of 48px circle */
    transform: translateY(-50%);
    left: calc(100% / 6);
    right: calc(100% / 6);
    border-top: 2px dashed #b8dea0;
    z-index: 0;
}

/* Each step: circle above the white card */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #8dc63f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.4);
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.step-body {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    width: 100%;
    flex: 1;
}

.step-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}

.step-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
    margin-bottom: 4rem;
    text-align: center;
}

.features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.features-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: #8dc63f;
}

.feature h3 {
    color: #1a1a2e;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.92rem;
}

/* ─── Coverage ──────────────────────────────────────────── */
.coverage {
    margin-bottom: 4rem;
    text-align: center;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.coverage-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: left;
    border-left: 4px solid #8dc63f;
}

.coverage-card-soon {
    border-left-color: #d1d5db;
}

.coverage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.coverage-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
}

.badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-live {
    background: #e8f5d0;
    color: #3a7000;
}

.badge-soon {
    background: #f3f4f6;
    color: #6b7280;
}

.coverage-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.coverage-source {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: #999;
}

@media (max-width: 600px) {
    .coverage-grid { grid-template-columns: 1fr; }
}

/* ─── Bottom CTA ────────────────────────────────────────── */
.bottom-cta {
    background: linear-gradient(140deg, #2d7700 0%, #3d9200 60%, #4aab00 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 48px rgba(45, 119, 0, 0.3);
}

.bottom-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.bottom-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    background: #1a1a2e;
    color: #9ca3af;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

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

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover { color: #8dc63f; }
.footer-sep { color: #4b5563; }

/* ─── Animations ────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── Privacy Policy ────────────────────────────────────── */
.privacy-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
}

.privacy-content h1 {
    color: #1a1a2e;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    border-bottom: 3px solid #8dc63f;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.privacy-content h2 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2.5rem 0 1.2rem;
    padding-top: 1rem;
}

.privacy-content h3 {
    color: #1a1a2e;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.8rem 0 0.8rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-content li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content li:before {
    content: "•";
    color: #8dc63f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-content strong { color: #1a1a2e; font-weight: 600; }

.privacy-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.5rem 0;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .hero { padding: 3.5rem 1.5rem; }
    .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 1.15rem; }
    .hero-description { font-size: 1rem; }

    .store-buttons { justify-content: center; flex-direction: column; align-items: center; }
    .store-btn { width: 100%; max-width: 260px; justify-content: center; }

    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(1),
    .trust-item:nth-child(2) { border-bottom: 1px solid #f0f0f0; }

    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }

    .screenshots-scroll img { height: 360px; }

    .logo-icon { width: 42px; height: 42px; }
    .logo-text { font-size: 1.5rem; }

    .privacy-content { padding: 2rem 1.5rem; }
    .privacy-content h1 { font-size: 2rem; }
    .privacy-content h2 { font-size: 1.2rem; }

    .bottom-cta h2 { font-size: 1.75rem; }
}

/* ─── Print ─────────────────────────────────────────────── */
@media print {
    .header, .footer { display: none; }
    .privacy-content { box-shadow: none; padding: 0; }
}
