:root {
  color-scheme: light;
  --ink: #18253b;
  --muted: #53647e;
  --blue: #dceaff;
  --blue-strong: #8eb4ed;
  --teal: #087c83;
  --mint: #2ad7c9;
  --pink: #ff418b;
  --berry: #f5326c;
  --cream: #fff0c2;
  --lime: #dfff4f;
  --paper: #f8fbff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.92) 0 7%, transparent 8%),
    radial-gradient(circle at 91% 18%, rgba(42,215,201,.22) 0 10%, transparent 26%),
    linear-gradient(145deg, #edf5ff 0%, var(--blue) 52%, #d4e5ff 100%);
  font-family: Inter, ui-rounded, "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
}

a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 16px;
  color: white; background: linear-gradient(145deg, var(--mint), var(--teal));
  box-shadow: 0 9px 24px rgba(8,124,131,.24); font-size: 24px;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 10px 13px; border-radius: 999px; text-decoration: none; font-weight: 750; color: #34445e; }
.nav a:hover, .nav a:focus-visible { background: rgba(255,255,255,.7); outline: none; }
.lang { border: 1px solid rgba(24,37,59,.14); background: rgba(255,255,255,.55); }

.hero {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center; gap: clamp(36px, 7vw, 92px); min-height: 690px; padding: 46px 0 76px;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--teal); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
.eyebrow::before { content: ""; width: 28px; height: 4px; border-radius: 9px; background: var(--pink); }
h1 { margin: 22px 0 22px; font-size: clamp(3.3rem, 8vw, 6.8rem); line-height: .92; letter-spacing: -.075em; max-width: 760px; }
h1 .play { color: var(--pink); }
.lede { max-width: 610px; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.65; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border-radius: 16px; text-decoration: none; font-weight: 850; }
.button-primary { color: white; background: var(--pink); box-shadow: 0 12px 25px rgba(245,50,108,.25); }
.button-secondary { background: rgba(255,255,255,.75); border: 1px solid rgba(24,37,59,.12); }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.58); color: #435470; font-size: .88rem; font-weight: 750; }

.phone-wrap { position: relative; display: grid; place-items: center; }
.orbit { position: absolute; width: 122%; aspect-ratio: 1; border: 2px dashed rgba(8,124,131,.19); border-radius: 50%; }
.phone {
  position: relative; width: min(330px, 78vw); aspect-ratio: 840 / 1868; padding: 9px;
  border-radius: 44px; background: linear-gradient(145deg, #fefeff, #87a9df);
  box-shadow: 0 35px 80px rgba(45,76,128,.32), inset 0 0 0 1px rgba(255,255,255,.9);
  transform: rotate(2deg);
}
.phone img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 36px; }
.cookie-note {
  position: absolute; right: -38px; bottom: 18%; background: var(--cream); border: 1px solid rgba(117,64,43,.12);
  padding: 13px 17px; border-radius: 18px; font-weight: 900; box-shadow: 0 15px 35px rgba(62,75,100,.2); transform: rotate(-4deg);
}

.section { padding: 90px 0; }
.section-title { max-width: 690px; margin-bottom: 35px; }
.section-title h2 { margin: 0 0 14px; font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -.055em; line-height: 1; }
.section-title p { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 220px; padding: 27px; border-radius: 28px; background: rgba(248,251,255,.74); border: 1px solid rgba(255,255,255,.82); box-shadow: 0 18px 50px rgba(48,79,127,.1); }
.card-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: var(--cream); font-size: 22px; }
.card h3 { margin: 25px 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.support-band { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 38px; border-radius: 32px; background: var(--ink); color: white; }
.support-band h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.04em; }
.support-band p { margin: 0; color: #c8d5e8; }
.support-band .button { flex: 0 0 auto; color: var(--ink); background: var(--lime); }

.page { max-width: 840px; padding: 70px 0 110px; }
.page h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.page h2 { margin-top: 38px; font-size: 1.5rem; }
.page p, .page li { color: var(--muted); line-height: 1.75; font-size: 1.04rem; }
.updated { font-weight: 750; }
.notice { padding: 18px 20px; border-radius: 18px; background: var(--cream); color: #65492a !important; font-weight: 700; }
footer { padding: 32px 0 42px; border-top: 1px solid rgba(24,37,59,.1); color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .site-header { min-height: 74px; }
  .nav a:not(.lang) { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 45px; }
  .eyebrow, .actions, .meta { justify-content: center; }
  .lede { margin-inline: auto; }
  .phone-wrap { padding: 25px 0; }
  .cards { grid-template-columns: 1fr; }
  .support-band { align-items: flex-start; flex-direction: column; }
}
