:root {
  color-scheme: light;
  --ink: #1c1325;
  --muted: #6c6173;
  --line: rgba(55, 34, 66, .12);
  --paper: #fffaf6;
  --paper-strong: #fff;
  --plum: #3a193f;
  --plum-soft: #6f3f73;
  --coral: #ff6948;
  --gold: #ffbd55;
  --wash: #f7eee8;
  --shadow: 0 24px 80px rgba(52, 28, 59, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 189, 85, .28), transparent 28rem),
    radial-gradient(circle at 0% 34%, rgba(255, 105, 72, .12), transparent 34rem),
    var(--wash);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 4px; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -.05em;
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(66, 30, 75, .18);
}
.brand span::after { content: "."; color: var(--coral); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.language {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255,255,255,.5);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 52px;
  align-items: center;
  min-height: 660px;
  padding: clamp(48px, 8vw, 96px);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 38px;
  background:
    linear-gradient(132deg, rgba(255,255,255,.96), rgba(255,247,239,.86) 48%, rgba(255,219,167,.68));
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(255, 105, 72, .15);
  filter: blur(2px);
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--plum-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; letter-spacing: -.045em; line-height: 1.07; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 84px);
}
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 21px; }
.lead {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  text-decoration: none;
}
.button.secondary { background: transparent; color: var(--ink); }

.phone {
  width: min(100%, 326px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 50px;
  background: #171119;
  box-shadow: 0 36px 70px rgba(49, 26, 57, .26);
  transform: rotate(2.5deg);
}
.phone-screen {
  overflow: hidden;
  min-height: 566px;
  padding: 28px 22px;
  border-radius: 39px;
  background:
    linear-gradient(180deg, rgba(20,12,24,.05), rgba(20,12,24,.72)),
    url("/after-icon.png") center/cover;
  color: white;
}
.phone-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; }
.sealed {
  margin-top: 290px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  background: rgba(24, 12, 30, .64);
  backdrop-filter: blur(16px);
}
.sealed small { display: block; margin-top: 8px; color: rgba(255,255,255,.72); }

.section { padding: 92px 0 0; }
.section-intro { max-width: 660px; margin-bottom: 34px; }
.section-intro p, .card p, .legal p, .legal li, .support-card p { color: var(--muted); }
.grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card, .support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
}
.number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--plum);
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  font-weight: 650;
}
.feature-list li::before { content: "✓"; margin-right: 10px; color: var(--coral); }

.page-hero {
  padding: clamp(44px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 60px rgba(52,28,59,.07);
}
.page-hero h1 { max-width: 820px; font-size: clamp(44px, 7vw, 72px); }
.page-hero .lead { max-width: 760px; }
.content-wrap {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  padding-top: 56px;
}
.side-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.62);
}
.side-nav strong { display: block; margin-bottom: 10px; font-size: 13px; }
.side-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.legal section { scroll-margin-top: 24px; margin-bottom: 52px; }
.legal h2 { margin-bottom: 14px; font-size: 32px; }
.legal h3 { margin: 28px 0 8px; letter-spacing: -.025em; }
.legal ul { padding-left: 20px; }
.legal li + li { margin-top: 8px; }
.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: rgba(255,105,72,.08);
}
.support-grid { margin-top: 34px; }
.support-card .kicker { color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.support-card a { font-weight: 750; }
details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; color: var(--ink); font-weight: 750; }
details p { margin-bottom: 0; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-top: 96px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 52px 28px; }
  .hero-visual { margin-top: 8px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .side-nav { position: static; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1120px); }
  .site-header { align-items: flex-start; flex-wrap: wrap; padding: 16px 0 20px; }
  .site-nav { width: 100%; gap: 15px; overflow-x: auto; }
  .site-nav a { white-space: nowrap; }
  .hero, .page-hero { border-radius: 26px; }
  .hero { min-height: auto; }
  h1 { font-size: 47px; }
  .feature-list { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone { transform: none; }
}
