﻿:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --ink: #0b0f16;
    --muted: #4b5563;
    --accent: #0f6cf0;
    --accent-2: #2ad6d9;
    --accent-3: #9ee8d2;
    --glass: rgba(255, 255, 255, 0.68);
    --stroke: rgba(148, 163, 184, 0.3);
    --shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

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

body {
    font-family:
        "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI",
        sans-serif;
    color: var(--ink);
    background: radial-gradient(
        circle at top,
        #eef2ff 0%,
        #f8fafc 40%,
        #ffffff 100%
    );
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    inset: auto;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.6;
    z-index: -1;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgb(173 61 119 / 20%), transparent 70%);
    top: -120px;
    left: -80px;
    animation: float 14s ease-in-out infinite;
}

.orb-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgb(173 61 119 / 33%), transparent 70%);
    bottom: -180px;
    right: -140px;
    animation: float 18s ease-in-out infinite;
}

.orb-3 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgb(173 61 119 / 25%), transparent 70%);
    top: 40vh;
    right: 10vw;
    animation: float 16s ease-in-out infinite;
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    padding: 96px 0 64px;
    align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
}

.logo {
  width: min(220px, 60vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 24px rgba(90, 59, 118, 0.25));
}

h1 {
    font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.panel-card {
    background: var(--glass);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.panel-card.small {
    font-size: 0.95rem;
    color: var(--muted);
}

.panel-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 16px;
}

.panel-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 14px;
    font-weight: 600;
}

.section {
    padding: 64px 0;
}

.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    display: grid;
    gap: 14px;
}

.card h3 {
    font-size: 1.2rem;
}

.badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b3b87;
    background: rgba(15, 108, 240, 0.15);
    padding: 6px 10px;
    border-radius: 999px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  gap: 10px;
}

.store-btn img {
  width: 18px;
  height: 18px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
    border: 1px solid transparent;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn.primary {
    color: white;
    background: linear-gradient(120deg, #ad3d77, #ad3d77, #973c76);
    box-shadow: 0 16px 30px rgba(90, 59, 118, 0.28);
}

.btn.ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.2);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(1px);
}

.pwa-guides {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.guide {
    background: rgba(15, 23, 42, 0.04);
    border: 1px dashed rgba(15, 23, 42, 0.15);
    border-radius: 20px;
    padding: 20px 22px;
}

.guide h4 {
    margin-bottom: 12px;
}

.guide ol {
    padding-left: 18px;
    color: var(--muted);
}

.highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.footer a {
    color: var(--ink);
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 720px) {
    .hero {
        padding-top: 72px;
    }

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