:root {
  color-scheme: light;
  --ink: #082f49;
  --muted: #466477;
  --aqua: #08b6c9;
  --blue: #1976d2;
  --mint: #dff8f1;
  --paper: #f7fcff;
  --line: #cfe6e5;
  --shadow: 0 18px 50px rgba(8, 47, 73, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; }
a { color: #086f9a; text-underline-offset: .2em; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: auto; }
header { padding: 22px 0; border-bottom: 1px solid var(--line); background: rgba(247,252,255,.94); }
nav { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 800; letter-spacing: -.03em; font-size: 1.2rem; }
.mark { display: grid; place-items: center; width: 34px; height: 42px; border-radius: 55% 55% 60% 60%; background: linear-gradient(150deg, #45e4d0, #1684d4); color: white; font-size: 1.25rem; transform: rotate(2deg); }
nav ul { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; list-style: none; }
nav a { color: var(--muted); text-decoration: none; font-size: .95rem; }
nav a:hover, nav a:focus-visible { color: var(--ink); text-decoration: underline; }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding: 76px 0 84px; }
.eyebrow { color: #087d91; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.045em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.9rem); margin: 14px 0 22px; max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 0 0 16px; }
h3 { font-size: 1.25rem; margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 650px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); color: var(--muted); font-size: .88rem; font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; background: var(--ink); color: white; text-decoration: none; font-weight: 750; }
.button.alt { background: var(--mint); color: var(--ink); }
.button:hover, .button:focus-visible { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(8,47,73,.16); }
.hero-shot { margin: 0; padding: 14px 14px 18px; border: 1px solid var(--line); border-radius: 34px; background: white; box-shadow: var(--shadow); }
.hero-shot img { display: block; width: min(100%, 390px); height: auto; margin: auto; border-radius: 24px; }
figure figcaption { color: var(--muted); font-size: .9rem; line-height: 1.4; padding: 12px 4px 0; }
section { padding: 82px 0; }
.soft { background: var(--mint); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; }
.section-note { max-width: 340px; color: var(--muted); margin: 0 0 18px; }
.shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; align-items: start; }
.shot { margin: 0; padding: 10px 10px 14px; border: 1px solid rgba(8,47,73,.12); border-radius: 24px; background: rgba(255,255,255,.78); box-shadow: 0 10px 30px rgba(8,47,73,.08); }
.shot img { display: block; width: 100%; height: auto; border-radius: 16px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid { margin-top: 28px; }
.card { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: 0 8px 24px rgba(8,47,73,.05); }
.card p, .muted { color: var(--muted); }
.number { color: var(--aqua); font-size: 1.7rem; font-weight: 850; }
.split-copy { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: start; }
.split-copy .card { max-width: 720px; }
.page { max-width: 800px; padding: 70px 0 100px; }
.page h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page h2 { margin-top: 44px; font-size: 1.8rem; }
.page li { margin: 8px 0; }
footer { padding: 28px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 42px; }
  .hero-shot { max-width: 560px; }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .split-copy { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 640px); }
  nav { align-items: flex-start; flex-direction: column; }
  nav ul { gap: 12px 16px; }
  .hero { padding-top: 56px; }
  .section-head { display: block; }
  .section-note { margin-top: 10px; }
  .grid, .shot-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover, .button:focus-visible { transform: none; }
}
