* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d8fe0;
    --primary-light: #4ca3ea;
    --primary-deep: #1f5f97;
    --primary-soft: #eaf5ff;
    --primary-mist: #f5faff;
    --bg: #eef6fd;
    --bg-soft: #fbfdff;
    --panel: rgba(255, 255, 255, 0.8);
    --panel-solid: #ffffff;
    --text: #17324d;
    --muted: #5f7893;
    --line: rgba(45, 143, 224, 0.12);
    --shadow: 0 28px 80px rgba(31, 95, 151, 0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(45, 143, 224, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(76, 163, 234, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}

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

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

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

.page-shell::before {
    top: -120px;
    left: -140px;
    background: rgba(45, 143, 224, 0.16);
}

.page-shell::after {
    right: -180px;
    bottom: 60px;
    background: rgba(76, 163, 234, 0.16);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(251, 253, 255, 0.82);
    border-bottom: 1px solid rgba(45, 143, 224, 0.08);
}

.topbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #e9f4ff);
    box-shadow: 0 10px 30px rgba(45, 143, 224, 0.18);
    display: grid;
    place-items: center;
}

.brand-mark svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--primary-deep);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong {
    font-size: 1.5rem;
    color: var(--primary-deep);
    letter-spacing: -0.02em;
}

.brand-text span,
.topnav a,
.eyebrow,
.metric-pill span,
.card-label,
.privacy-item span,
.footer-links a {
    color: var(--muted);
}

.brand-text span {
    font-size: 0.86rem;
}

.topnav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topnav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

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

.hero {
    padding: 92px 0 64px;
}

.hero-grid,
.showcase-grid,
.about-grid,
.privacy-panel {
    display: grid;
    gap: 32px;
}

.hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--primary);
}

.hero h1,
.section-heading h2,
.showcase h2,
.privacy h2,
.about h2,
.final-cta h2 {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

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

.hero-lead,
.section-heading p,
.showcase-copy p,
.about-copy p,
.privacy-copy p,
.final-cta p {
    font-size: 1.06rem;
    color: var(--muted);
    line-height: 1.8;
}

.hero-lead {
    max-width: 60ch;
    margin-top: 22px;
}

.story-card p,
.about-copy p,
.privacy-copy p,
.final-cta p {
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.download-btn,
.text-link {
    text-decoration: none;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    padding: 15px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 18px 34px rgba(45, 143, 224, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.light-btn {
    background: #fff;
    color: var(--primary-deep);
}

.btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
}

.light-btn .btn-icon {
    background: rgba(45, 143, 224, 0.1);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(45, 143, 224, 0.34);
}

.text-link {
    font-weight: 700;
    color: var(--primary-deep);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.metric-pill {
    padding: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(45, 143, 224, 0.08);
}

.metric-pill strong,
.privacy-item strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-card {
    position: relative;
    width: min(100%, 460px);
}

.phone-frame {
    padding: 16px;
    border-radius: 40px;
    background: linear-gradient(180deg, #c3def7, #e3eefa);
    box-shadow: var(--shadow);
}

.phone-notch {
    width: 44%;
    height: 28px;
    margin: 0 auto 12px;
    border-radius: 0 0 18px 18px;
    background: #0d1218;
}

.app-screen {
    display: block;
    width: 100%;
    border-radius: 28px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.screen-header span {
    font-size: 0.94rem;
    color: var(--muted);
}

.screen-header strong {
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.entry-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px;
    margin-top: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 143, 224, 0.08);
}

.accent-card {
    background: linear-gradient(135deg, rgba(45, 143, 224, 0.18), rgba(255, 255, 255, 0.9));
}

.soft-card {
    background: linear-gradient(135deg, rgba(76, 163, 234, 0.12), rgba(234, 245, 255, 0.86));
}

.entry-card p {
    font-weight: 700;
    margin-bottom: 2px;
}

.entry-card span {
    font-size: 0.88rem;
    color: var(--muted);
}

.entry-card strong {
    font-size: 1rem;
}

.floating-note {
    position: absolute;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(31, 95, 151, 0.14);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 700;
}

.note-one { left: -12px; top: 66px; }
.note-two { right: -16px; bottom: 34px; }

.mini-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(45, 143, 224, 0.1);
}

.story-strip,
.features,
.showcase,
.privacy,
.about {
    padding: 28px 0 96px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.story-card,
.feature-card,
.privacy-item {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 55px rgba(31, 95, 151, 0.08);
}

.story-card {
    border-radius: 28px;
    padding: 30px;
}

.story-media {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
    gap: 34px;
    align-items: center;
}

.story-illustration {
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 245, 255, 0.92));
    padding: 18px;
}

.story-copy {
    display: grid;
    gap: 12px;
}

.story-card h2,
.showcase h2,
.privacy h2,
.about h2,
.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    margin-bottom: 16px;
}

.story-card p {
    color: var(--muted);
}

.story-quote {
    margin-top: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(45, 143, 224, 0.08), rgba(76, 163, 234, 0.12));
    border: 1px solid rgba(45, 143, 224, 0.12);
    color: var(--primary-deep);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.8;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading h2,
.showcase h2,
.privacy h2,
.about h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p {
    margin-top: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    border-radius: 24px;
    padding: 26px 24px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(45, 143, 224, 0.14), rgba(76, 163, 234, 0.18));
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--primary-deep);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.14rem;
    line-height: 1.35;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.showcase-grid,
.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.showcase-copy {
    padding-right: 24px;
}

.showcase-copy p {
    max-width: 56ch;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(45, 143, 224, 0.12);
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    color: var(--primary-deep);
}

.showcase-art,
.about-art {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(45, 143, 224, 0.08);
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.privacy-panel {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 143, 224, 0.98), rgba(31, 95, 151, 0.98));
    color: #fff;
    border-radius: 34px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.privacy-copy p {
    color: rgba(255, 255, 255, 0.76);
    margin-top: 14px;
}

.privacy-points {
    display: grid;
    gap: 14px;
}

.privacy-item {
    border-radius: 20px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.privacy-item span {
    color: rgba(255, 255, 255, 0.72);
}

.about-grid {
    gap: 28px;
}

.about-copy p + p {
    margin-top: 12px;
}

.final-cta {
    padding: 10px 0 90px;
}

.final-cta-content {
    text-align: center;
    padding: 54px 28px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(45, 143, 224, 0.96), rgba(76, 163, 234, 0.98));
    color: #fff;
    box-shadow: var(--shadow);
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    margin: 0 auto;
}

.final-cta .primary-btn {
    margin-top: 28px;
}

.final-cta-content .contact-info {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.final-cta-content .contact-info p {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-content .contact-info a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.final-cta-content .contact-info a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer {
    padding: 28px 0 44px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}

.site-footer h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.site-footer p {
    color: var(--muted);
    max-width: 46ch;
}

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

.footer-links a {
    text-decoration: none;
}

.site-footer .copyright {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    text-align: left;
}

.site-footer .copyright p {
    font-size: 0.88rem;
    color: var(--muted);
}

.policy-page {
    padding: 72px 0 88px;
}

.policy-card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    border-radius: 34px;
    padding: 40px;
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 30px;
}

.policy-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(45, 143, 224, 0.1);
    border: 1px solid rgba(45, 143, 224, 0.12);
    color: var(--primary-deep);
    font-size: 0.92rem;
    font-weight: 600;
}

.policy-content {
    display: grid;
    gap: 26px;
    max-width: 820px;
}

.policy-block h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.55rem, 2vw, 2.2rem);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.policy-block p,
.policy-block li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.policy-block ul {
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.policy-note {
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(45, 143, 224, 0.08), rgba(76, 163, 234, 0.12));
    border: 1px solid rgba(45, 143, 224, 0.12);
    color: var(--primary-deep);
    font-weight: 600;
}

@media (max-width: 980px) {
    .hero-grid,
    .story-grid,
    .feature-grid,
    .showcase-grid,
    .about-grid,
    .privacy-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 56px;
    }

    .section-heading,
    .showcase-copy,
    .about-copy,
    .privacy-copy {
        max-width: none;
    }

    .policy-card {
        padding: 32px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .story-media {
        grid-template-columns: 1fr;
    }

    .showcase-copy {
        padding-right: 0;
    }
}

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

    .topnav {
        gap: 16px;
    }

    .hero,
    .story-strip,
    .features,
    .showcase,
    .privacy,
    .about {
        padding-bottom: 72px;
    }

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

    .app-screen {
        padding: 16px;
    }

    .floating-note {
        position: static;
        margin-top: 12px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .topnav a,
    .hero-lead,
    .section-heading p,
    .showcase-copy p,
    .about-copy p,
    .privacy-copy p,
    .final-cta p,
    .feature-card p,
    .story-card p {
        font-size: 0.98rem;
    }

    .story-card,
    .feature-card,
    .privacy-panel,
    .final-cta-content {
        border-radius: 26px;
    }

    .policy-card {
        padding: 24px;
        border-radius: 26px;
    }

    .story-media {
        gap: 24px;
    }

    .final-cta-content {
        padding: 42px 22px;
    }
}
