:root {
    --accent: #38c3ad;
    --accent-dark: #149783;
    --ink: #10231f;
    --muted: #60716d;
    --paper: rgba(255, 252, 246, 0.92);
    --white: #ffffff;
    --line: rgba(16, 35, 31, 0.10);
    --shadow: 0 24px 70px rgba(21, 119, 102, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 8%, rgba(56,195,173,.34), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(139,230,206,.42), transparent 30%),
        linear-gradient(135deg, #fff9ef 0%, #f1fff9 52%, #ddfbf3 100%);
    min-height: 100vh;
}

body.policy-page { background: linear-gradient(135deg, #fffaf1 0%, #f3fff9 100%); }

a { color: inherit; }

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 252, 246, 0.74);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(20, 151, 131, .22);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a, .button {
    text-decoration: none;
    padding: 11px 17px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid rgba(20,151,131,.18);
    background: rgba(255,255,255,.64);
}

.button.primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 16px 36px rgba(20,151,131,.26);
}

.hero {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 46px;
    padding: 78px 0 56px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(20,151,131,.18);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
}

h1 {
    margin: 20px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: .95;
    letter-spacing: -0.07em;
}

.lead {
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 620px;
}

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

.visuals {
    position: relative;
    min-height: 610px;
}

.phone-shot {
    position: absolute;
    width: 50%;
    max-width: 265px;
    height: auto;
    filter: drop-shadow(0 34px 58px rgba(0,0,0,.18));
}

.phone-shot.one { right: 36%; top: 22px; }
.phone-shot.two { right: 2%; top: 110px; }

.app-icon-float {
    position: absolute;
    left: 7%;
    bottom: 42px;
    width: 136px;
    height: 136px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.section { padding: 42px 0; }

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card, .policy-card {
    background: var(--paper);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.card h2, .card h3, .policy-card h1, .policy-card h2 {
    margin-top: 0;
    letter-spacing: -0.04em;
}

.card p, .policy-card p, .policy-card li {
    color: var(--muted);
    line-height: 1.75;
}

.support {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(56,195,173,.18), rgba(255,255,255,.82));
}

.footer {
    padding: 38px 0 48px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.policy-wrap { padding: 56px 0; }
.policy-card { max-width: 920px; margin: 0 auto; }
.policy-card h1 { font-size: clamp(34px, 5vw, 58px); }
.policy-card h2 { margin-top: 34px; }
.policy-nav-bottom { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; padding-top: 46px; }
    .visuals { min-height: 520px; }
    .phone-shot.one { left: 2%; right: auto; }
    .phone-shot.two { right: 2%; }
    .grid { grid-template-columns: 1fr; }
    .support { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 26px, 1120px); }
    .nav { align-items: flex-start; flex-direction: column; }
    .visuals { min-height: 430px; }
    .phone-shot { max-width: 210px; }
    .phone-shot.two { top: 80px; }
    .app-icon-float { width: 92px; height: 92px; border-radius: 22px; }
}
