:root {
  color-scheme: light dark;
  --bg: #f5f8fb;
  --text: #0c1522;
  --muted: #536171;
  --line: rgba(12, 21, 34, 0.12);
  --panel: rgba(255, 255, 255, 0.78);
  --blue: #0d72d9;
  --teal: #00a99a;
  --coral: #f07345;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(13, 114, 217, 0.20), transparent 34rem),
    radial-gradient(circle at 100% 70%, rgba(0, 169, 154, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
}
a { color: inherit; }
.page { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 24px 0 72px; }
.narrow { width: min(760px, calc(100% - 32px)); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0 48px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--teal)); position: relative; box-shadow: 0 12px 30px rgba(13, 114, 217, 0.25); }
.mark::after { content: ""; position: absolute; left: 13px; top: 9px; border-left: 10px solid white; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.links { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.links a { text-decoration: none; }
.hero { min-height: 620px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
h1 { margin: 0; font-size: clamp(44px, 7vw, 82px); line-height: 0.98; letter-spacing: -0.03em; }
.lede { color: var(--muted); font-size: 19px; line-height: 1.7; max-width: 34rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 750; background: rgba(255,255,255,.58); }
.button.primary { color: white; border-color: transparent; background: linear-gradient(135deg, var(--blue), var(--teal)); }
.phone { justify-self: center; width: min(320px, 78vw); aspect-ratio: 9/16; border-radius: 42px; padding: 16px; background: #121923; box-shadow: 0 32px 80px rgba(12, 21, 34, .30); }
.screen { height: 100%; border-radius: 30px; padding: 22px; background: linear-gradient(180deg, #dff0ff, #f7fffd); display: flex; flex-direction: column; justify-content: end; gap: 18px; }
.clip { flex: 1; border-radius: 24px; background: linear-gradient(135deg, rgba(13,114,217,.90), rgba(0,169,154,.85)); position: relative; }
.clip::after { content: ""; position: absolute; left: calc(50% - 12px); top: calc(50% - 18px); border-left: 30px solid white; border-top: 18px solid transparent; border-bottom: 18px solid transparent; }
.timeline { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 8px; }
.timeline span { height: 30px; border-radius: 10px; background: rgba(13,114,217,.20); }
.caption { color: white; font-weight: 800; text-align: center; padding: 10px; border-radius: 999px; background: rgba(12, 21, 34, .72); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
article, .document { background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 24px; backdrop-filter: blur(20px); }
h2 { margin-top: 0; }
p, li { color: var(--muted); line-height: 1.7; }

@media (max-width: 780px) {
  .hero, .grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 20px 0 48px; }
  .links { display: none; }
}
