:root {
  color-scheme: light;
  --ink: #10243e;
  --muted: #5e7087;
  --blue: #0877e8;
  --blue-dark: #075bb4;
  --line: #dbe7f3;
  --surface: #f4f9ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-dark); text-underline-offset: 3px; }
a:hover { color: var(--blue); }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 750; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: 0 7px 20px rgba(7, 91, 180, .2); }
.links { display: flex; flex-wrap: wrap; gap: 18px; }
.links a { color: var(--muted); text-decoration: none; font-size: .94rem; font-weight: 600; }
.hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  padding: 72px 0 90px;
}
.eyebrow { color: var(--blue-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1 { margin: 12px 0 20px; max-width: 760px; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.065em; }
.lead { color: var(--muted); max-width: 620px; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 34px;
  border: 1px solid #bcdcff;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(148deg, #7fd4ff 0%, #168ced 42%, #0759b8 100%);
  box-shadow: 0 24px 70px rgba(7, 91, 180, .23);
}
.hero-card:after { content: ""; position: absolute; width: 340px; height: 340px; right: -155px; bottom: -175px; border: 48px solid rgba(255,255,255,.13); border-radius: 50%; }
.window-label { opacity: .82; font-weight: 650; }
.window-time { margin-top: 58px; font-size: clamp(2.45rem, 5vw, 4.4rem); font-weight: 760; line-height: 1; letter-spacing: -.055em; }
.window-copy { margin-top: 15px; max-width: 310px; font-size: 1.02rem; }
.match { display: inline-block; margin-top: 76px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: .85rem; font-weight: 700; backdrop-filter: blur(8px); }
.section { padding: 80px 0; border-top: 1px solid var(--line); }
.section h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.section-intro { max-width: 650px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.card strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); }
.notice { margin-top: 30px; padding: 18px 20px; border-left: 4px solid var(--blue); background: var(--surface); color: var(--muted); }
.legal { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 68px 0 100px; }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
.legal h2 { margin-top: 44px; font-size: 1.45rem; letter-spacing: -.025em; }
.legal li { margin: 9px 0; }
.meta { color: var(--muted); }
footer { padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 22px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1080px); }
  .nav { align-items: flex-start; padding: 16px 0; }
  .links { justify-content: flex-end; gap: 10px 14px; }
  .hero { grid-template-columns: 1fr; gap: 42px; padding: 54px 0 70px; }
  .hero-card { min-height: 355px; }
  .grid { grid-template-columns: 1fr; }
  .legal { width: min(100% - 28px, 760px); padding-top: 46px; }
}
