:root {
    color-scheme: light;
    --bg: #f3faf8;
    --bg-alt: #e5f4f0;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-solid: #ffffff;
    --surface-strong: #f8fffd;
    --text: #143530;
    --muted: #5b706b;
    --border: rgba(20, 53, 48, 0.12);
    --primary: #0f8b7e;
    --primary-dark: #0a6259;
    --accent: #e57f52;
    --accent-soft: #ffe2d3;
    --shadow: 0 24px 60px rgba(12, 52, 48, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Sora", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 139, 126, 0.14), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(229, 127, 82, 0.14), transparent 26%),
        linear-gradient(180deg, #f8fffd 0%, var(--bg) 42%, #edf7f4 100%);
    min-height: 100vh;
    line-height: 1.6;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    border-radius: 999px;
    z-index: -1;
    filter: blur(14px);
}

body::before {
    width: 320px;
    height: 320px;
    left: -120px;
    top: 120px;
    background: rgba(15, 139, 126, 0.12);
}

body::after {
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: 40px;
    background: rgba(229, 127, 82, 0.12);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(243, 250, 248, 0.82);
    border-bottom: 1px solid rgba(20, 53, 48, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: block;
    background: linear-gradient(135deg, rgba(250, 254, 254, 0.14), rgba(229, 127, 82, 0.14));
    box-shadow: 0 16px 30px rgba(15, 139, 126, 0.26);
    object-fit: cover;
}

.brand-copy {
    display: grid;
}

.brand-copy span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-copy strong {
    font-size: 1rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
    background: rgba(15, 139, 126, 0.08);
}

.hero,
.page-shell {
    padding: 40px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 139, 126, 0.08);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.page-title {
    margin: 18px 0 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    max-width: 12ch;
}

.lead {
    margin: 18px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(12, 52, 48, 0.12);
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #13a79a 100%);
}

.button.secondary {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(15, 139, 126, 0.18);
}

.button.ghost {
    color: var(--text);
    background: transparent;
    border-color: rgba(20, 53, 48, 0.14);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-card,
.feature-card,
.info-card,
.policy-card,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card {
    border-radius: var(--radius-xl);
    padding: 24px;
}

.hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.hero-card-top .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(15, 139, 126, 0.5);
    animation: pulse 2.2s infinite;
}

.preview-grid {
    display: grid;
    gap: 14px;
}

.preview-grid .info-card {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.8);
}

.info-card {
    padding: 18px;
    border-radius: var(--radius-md);
}

.info-card h3,
.feature-card h3,
.policy-card h3,
.contact-card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.info-card p,
.feature-card p,
.policy-card p,
.contact-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 139, 126, 0.08);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.section {
    padding: 12px 0 72px;
}

.section h2,
.page-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-lead {
    max-width: 64ch;
    color: var(--muted);
    margin: 16px 0 0;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.policy-card,
.contact-card {
    border-radius: var(--radius-lg);
    padding: 22px;
}

.icon-chip {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 139, 126, 0.14), rgba(229, 127, 82, 0.14));
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 12px;
}

.list li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.section-stack {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.callout {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 139, 126, 0.1), rgba(229, 127, 82, 0.1));
    border: 1px solid rgba(15, 139, 126, 0.12);
}

.callout h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
}

.callout p {
    margin: 10px 0 0;
    color: var(--muted);
}

.footer {
    padding: 28px 0 44px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 53, 48, 0.1);
}

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

.policy-card h4,
.contact-card h4 {
    margin: 16px 0 0;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.policy-card p+h4,
.contact-card p+h4 {
    margin-top: 22px;
}

.small-note {
    font-size: 0.92rem;
    color: var(--muted);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 139, 126, 0.34);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(15, 139, 126, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 139, 126, 0);
    }
}

@media (max-width: 980px) {

    .hero-grid,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        justify-content: flex-start;
    }

    .hero,
    .page-shell,
    .section {
        padding-top: 28px;
        padding-bottom: 56px;
    }

    .hero-card,
    .feature-card,
    .policy-card,
    .contact-card,
    .callout {
        border-radius: 22px;
        padding: 20px;
    }
}

/* Download Section Styles */
.download-section {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.playstore-badge {
    display: inline-block;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.playstore-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(12, 52, 48, 0.12);
}

.playstore-badge img {
    height: 60px;
    width: auto;
}

.download-cta {
    background: linear-gradient(135deg, rgba(15, 139, 126, 0.08), rgba(229, 127, 82, 0.08));
    border-radius: var(--radius-xl);
    padding: 60px 0;
    text-align: center;
}

.download-cta .playstore-badge img {
    height: 80px;
}

@media (max-width: 720px) {
    .download-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .playstore-badge img {
        height: 50px;
    }

    .download-cta .playstore-badge img {
        height: 60px;
    }
}