:root {
  color-scheme: light;
  --navy: #071f45;
  --navy-soft: #0d4b70;
  --cyan: #51d4ee;
  --mint: #35cfbb;
  --ink: #0b2342;
  --muted: #60758e;
  --canvas: #f3f7fa;
  --line: #dce5eb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(7, 31, 69, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: var(--navy-soft); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(220, 229, 235, .8);
  background: rgba(243, 247, 250, .9);
  backdrop-filter: blur(18px);
}

.site-header .shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a { color: var(--muted); font-size: .94rem; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--navy); }

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(81, 212, 238, .42) 0 12%, transparent 12.2%),
    radial-gradient(circle at 5% 100%, rgba(53, 207, 187, .28) 0 16%, transparent 16.2%),
    linear-gradient(135deg, var(--navy), var(--navy-soft));
}

.hero .shell {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 72px;
  padding-block: 90px;
}

.eyebrow {
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin: 16px 0 22px; font-size: clamp(3rem, 6vw, 5.4rem); }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; }

.hero p {
  max-width: 620px;
  color: #c5d7e6;
  font-size: 1.15rem;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}
.button.primary { border-color: var(--cyan); color: var(--navy); background: var(--cyan); }

.report-card {
  transform: rotate(2deg);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .3);
}

.report-top, .metric-row, .legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.status { padding: 5px 11px; border-radius: 999px; color: #138665; background: #e8f8f1; font-size: .72rem; font-weight: 800; }
.report-card hr { margin: 20px 0; border: 0; border-top: 1px solid var(--line); }
.metric-row > div { flex: 1; padding: 15px 10px; border-radius: 16px; text-align: center; background: #eff8f8; }
.metric-row strong { display: block; color: #149f7a; font-size: 1.75rem; }

.section { padding-block: 96px; }
.section.white { background: var(--white); }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading p, .legal-head p { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 10px 34px rgba(7, 31, 69, .06); }
.card-icon { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; border-radius: 14px; color: var(--navy); background: #ddf7f5; font-size: 1.25rem; font-weight: 800; }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-icon svg path:first-of-type { fill: currentColor; stroke: none; }
.card p { margin-bottom: 0; color: var(--muted); }

.price-card { max-width: 760px; margin-inline: auto; padding: 44px; border-radius: 30px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.price { margin: 12px 0; font-size: clamp(3rem, 7vw, 5rem); font-weight: 850; letter-spacing: -.06em; }
.price span { font-size: 1rem; font-weight: 600; letter-spacing: 0; color: #bed0df; }
.price-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; padding-left: 20px; color: #d2e1ec; }

.legal { max-width: 860px; padding-block: 72px 110px; }
.legal-head { align-items: flex-end; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal article { padding-top: 28px; }
.legal h1 { margin: 0; font-size: clamp(2.5rem, 5vw, 4rem); }
.legal h2 { margin-top: 46px; font-size: 1.55rem; }
.legal h3 { margin-top: 28px; font-size: 1.1rem; }
.legal p, .legal li { color: #3f5570; }
.legal .notice { padding: 18px 20px; border-left: 4px solid var(--cyan); border-radius: 0 14px 14px 0; background: #eaf8fc; }

.support-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; margin-top: 36px; }
.support-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.support-card details { padding: 17px 0; border-bottom: 1px solid var(--line); }
.support-card details:last-child { border-bottom: 0; }
.support-card summary { cursor: pointer; font-weight: 750; }

footer { padding-block: 38px; color: #9fb3c6; background: var(--navy); }
footer .shell { display: flex; justify-content: space-between; gap: 24px; }
footer a { color: #d4e2ed; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 760px) {
  .site-header .shell { min-height: 68px; }
  nav a:not(:last-child) { display: none; }
  .hero .shell { min-height: auto; grid-template-columns: 1fr; gap: 56px; padding-block: 70px; }
  .report-card { transform: none; }
  .grid { grid-template-columns: 1fr; }
  .price-card ul { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .legal-head { display: block; }
  footer .shell { flex-direction: column; }
}
