:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5f6879;
  --paper: #f8f6f2;
  --card: rgba(255, 255, 255, 0.82);
  --teal: #5a8a82;
  --teal-dark: #315f5a;
  --peach: #edc0a6;
  --line: rgba(23, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(23, 32, 51, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(237, 192, 166, 0.65), transparent 30rem),
    radial-gradient(circle at 5% 28%, rgba(127, 175, 170, 0.42), transparent 34rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--teal-dark); }
a:hover { color: var(--ink); }

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.mark { position: relative; width: 42px; height: 34px; display: inline-block; }
.mark::before, .mark::after { content: ""; position: absolute; border-radius: 50%; }
.mark::before { width: 32px; height: 32px; left: 0; top: 0; background: #c8dfdc; }
.mark::after { width: 22px; height: 22px; right: 0; bottom: 0; background: var(--peach); border: 3px solid #fff; }

nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
nav a { color: var(--muted); font-size: 0.92rem; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }

.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: 70px 0 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; }
h1 { margin: 0; font-size: clamp(3.4rem, 8vw, 7.3rem); max-width: 9ch; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); margin: 0 0 20px; }
h3 { font-size: 1.3rem; margin: 0 0 10px; }

.lede { max-width: 620px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; background: var(--teal-dark); color: #fff; font-weight: 700; text-decoration: none; }
.button.secondary { background: rgba(255,255,255,0.7); color: var(--ink); border: 1px solid var(--line); }

.phone {
  width: min(350px, 90%);
  justify-self: center;
  padding: 18px;
  border-radius: 44px;
  background: #0d2740;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-screen { min-height: 560px; padding: 46px 24px 28px; border-radius: 30px; color: #fff; background: linear-gradient(165deg, #123f61 0%, #466a86 48%, #bd8f78 100%); }
.phone-screen small { color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .15em; }
.phone-screen h2 { margin-top: 12px; font-size: 2.5rem; }
.mini-card { margin-top: 24px; padding: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: rgba(255,255,255,.13); backdrop-filter: blur(14px); }
.mini-card strong { display: block; font-size: 1.15rem; }
.mini-card span { color: rgba(255,255,255,.75); }

.section { padding: 90px 0; border-top: 1px solid var(--line); }
.section-intro { max-width: 690px; color: var(--muted); font-size: 1.12rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: 0 12px 32px rgba(23,32,51,.05); }
.card p { margin: 0; color: var(--muted); }

.legal { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.legal h1 { max-width: none; font-size: clamp(3rem, 7vw, 5.5rem); }
.legal .summary { margin: 24px 0 50px; padding: 24px; border-left: 4px solid var(--teal); background: rgba(255,255,255,.65); border-radius: 0 18px 18px 0; color: var(--muted); }
.legal section { margin-top: 42px; }
.legal h2 { font-size: 1.7rem; margin-bottom: 14px; }
.legal p, .legal li { color: #424b5b; }
.legal li + li { margin-top: 8px; }
.meta { color: var(--muted); font-size: .92rem; }

.notice { margin-top: 30px; padding: 20px 22px; border-radius: 18px; background: #3b2527; color: #fff7f5; }
.notice strong { color: #ffb0a7; }

footer { border-top: 1px solid var(--line); padding: 36px 0 48px; }
.footer-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.fine { color: var(--muted); font-size: .86rem; max-width: 560px; }

@media (max-width: 760px) {
  .site-header, .footer-row { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .phone { margin-top: 20px; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

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