:root {
  --ink: #0b1f33;
  --ink-2: #18324b;
  --muted: #6f8294;
  --muted-2: #8fa1b1;
  --line: #dfe8ee;
  --line-2: #edf3f6;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --teal: #24a7a5;
  --teal-2: #45b9b6;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.10);
  --shadow-soft: 0 12px 34px rgba(11, 31, 51, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.site-shell { min-height: 100vh; overflow: hidden; }
.site-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand-mark { width: 46px; height: 46px; }
.brand-word { font-size: 36px; font-weight: 720; letter-spacing: -0.045em; }
.nav { display: flex; gap: 42px; font-size: 15px; color: var(--ink-2); }
.nav a, .nav-cta { transition: opacity .2s ease, transform .2s ease; }
.nav a:hover, .nav-cta:hover { opacity: .66; }
.nav-cta { justify-self: end; padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 650; }

.hero {
  max-width: 1500px;
  margin: 0 auto;
  padding: 88px 48px 52px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(640px, 1.08fr);
  gap: 54px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.eyebrow span { font-size: 12px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; color: var(--teal); }
.eyebrow i { width: 76px; height: 1px; background: linear-gradient(90deg, var(--teal), transparent); }
h1 { margin: 0; max-width: 780px; font-size: clamp(54px, 5.3vw, 88px); line-height: .98; letter-spacing: -0.055em; font-weight: 760; }
h1 span { color: var(--teal); }
.hero-lede { max-width: 720px; margin: 30px 0 34px; color: #5f7386; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.55; }

.access-form { display: grid; grid-template-columns: 1fr auto; max-width: 760px; border: 1px solid #cfdbe3; border-radius: 14px; background: #fff; overflow: hidden; box-shadow: 0 8px 26px rgba(14, 39, 62, .05); }
.email-field { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 0 18px; }
.email-field svg { width: 22px; fill: #9badbb; flex: 0 0 auto; }
.email-field input { width: 100%; border: 0; outline: 0; padding: 20px 0; color: var(--ink); font-size: 16px; background: transparent; }
.email-field input::placeholder { color: #91a2b1; }
.access-form button { border: 0; padding: 0 30px; min-height: 62px; border-radius: 12px; margin: 4px; background: linear-gradient(135deg, #18324b, #0b1f33); color: #fff; font-weight: 700; box-shadow: 0 10px 28px rgba(11, 31, 51, .16); }
.access-form button span { margin-left: 14px; }
.form-status { min-height: 20px; margin: 10px 0 0; color: var(--teal); font-size: 14px; }
.contact-link { display: inline-flex; gap: 14px; align-items: center; margin-top: 4px; font-size: 14px; font-weight: 700; border-bottom: 2px solid var(--teal); padding-bottom: 8px; }

.hero-visual { position: relative; min-height: 625px; }
.visual-grid { position: absolute; inset: 0 -5% 0 5%; opacity: .64; background-image: linear-gradient(#edf3f6 1px, transparent 1px), linear-gradient(90deg, #edf3f6 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%); }
.halo { position: absolute; border-radius: 50%; filter: blur(2px); border: 1px solid rgba(36, 167, 165, .15); }
.halo-a { width: 520px; height: 520px; right: 70px; top: 40px; }
.halo-b { width: 310px; height: 310px; right: 235px; top: 150px; }
.data-card, .sec-sheet { position: absolute; background: rgba(255,255,255,.94); border: 1px solid rgba(216,228,235,.9); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.main-card { width: 74%; left: 3%; top: 180px; border-radius: 20px; padding: 24px; z-index: 4; }
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mini-brand { display: flex; align-items: center; gap: 10px; }
.mini-brand svg { width: 30px; height: 30px; }
.mini-brand strong { font-size: 18px; }
.period-chip { font-size: 12px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-soft); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { text-align: left; padding: 14px 10px; border-bottom: 1px solid var(--line-2); font-size: 12px; white-space: nowrap; }
th { color: #667b8e; font-weight: 650; }
td { color: #20384f; }
.status { display: inline-flex; align-items: center; gap: 7px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.status.busy::before { background: #2d82ff; }
.stat-card { width: 250px; right: 0; top: 85px; border-radius: 18px; padding: 22px; z-index: 6; }
.stat-card span, .chart-title span { display: block; color: #5e7183; font-size: 13px; }
.stat-card strong { display: block; margin-top: 6px; font-size: 34px; letter-spacing: -.04em; }
.stat-card small { color: var(--teal); font-weight: 700; }
.bars { height: 68px; display: flex; gap: 7px; align-items: end; margin: 12px 0 8px; }
.bars i { width: 12px; background: linear-gradient(#d7e4ea, #a9bec8); border-radius: 3px 3px 0 0; }
.chart-card { width: 390px; right: 32px; bottom: 12px; border-radius: 18px; padding: 20px; z-index: 7; }
.chart-title { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.chart-title small { color: #9aaab7; }
.sec-sheet { width: 260px; height: 220px; left: 32%; top: 56px; border-radius: 18px; padding: 24px; opacity: .62; transform: rotate(.8deg); z-index: 1; }
.sec-sheet span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid #9fb1bf; color: #71879a; font-size: 11px; }
.sec-sheet strong { display: block; margin: 16px 0; color: #71879a; }
.sec-sheet i { display: block; width: 72%; height: 8px; margin: 10px 0; border-radius: 999px; background: #e4ecef; }
.sec-sheet i:nth-of-type(2) { width: 48%; }
.sec-sheet i:nth-of-type(3) { width: 83%; }
.sec-sheet i:nth-of-type(4) { width: 64%; }

.trust-strip { max-width: 1500px; margin: 22px auto 0; padding: 30px 48px 44px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-2); }
.trust-strip article { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 0 34px; min-height: 82px; }
.trust-strip article + article { border-left: 1px solid var(--line); }
.icon-box { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #cddae2; border-radius: 11px; font-size: 22px; color: var(--ink); }
.trust-strip strong { display: block; margin-bottom: 5px; font-size: 14px; }
.trust-strip span { display: block; color: #7d90a0; font-size: 13px; line-height: 1.35; }

.about { max-width: 1500px; margin: 0 auto; padding: 88px 48px 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: linear-gradient(180deg, #fff 0%, #f8fbfc 100%); border-top: 1px solid var(--line-2); }
.section-kicker { display: block; margin-bottom: 18px; color: var(--teal); text-transform: uppercase; letter-spacing: .22em; font-size: 11px; font-weight: 800; }
.about h2 { margin: 0; font-size: clamp(34px, 3vw, 54px); line-height: 1.03; letter-spacing: -.045em; }
.about p { margin: 0; align-self: end; color: #64788a; font-size: 19px; line-height: 1.65; }

.site-footer { max-width: 1500px; margin: 0 auto; padding: 24px 48px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #8798a6; border-top: 1px solid var(--line); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.site-footer p { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1180px) {
  .site-header, .hero, .trust-strip, .about, .site-footer { padding-left: 28px; padding-right: 28px; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-copy { max-width: 880px; }
  .hero-visual { min-height: 590px; }
  .main-card { width: 72%; left: 4%; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; padding-top: 20px; padding-bottom: 20px; }
  .brand-word { font-size: 30px; }
  .brand-mark { width: 40px; height: 40px; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .hero { padding-top: 36px; gap: 28px; }
  h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-lede { font-size: 18px; }
  .access-form { grid-template-columns: 1fr; border: 0; box-shadow: none; gap: 10px; background: transparent; }
  .email-field { border: 1px solid #cfdbe3; border-radius: 12px; background: #fff; }
  .access-form button { margin: 0; min-height: 58px; }
  .hero-visual { min-height: 500px; transform: scale(.9); transform-origin: top left; width: 111%; }
  .main-card { width: 94%; left: 0; top: 150px; }
  .stat-card { right: 0; top: 20px; }
  .chart-card { width: 78%; right: 0; bottom: -12px; }
  .sec-sheet { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { justify-content: flex-start; padding: 22px 0; }
  .trust-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .about { grid-template-columns: 1fr; gap: 24px; padding-top: 58px; padding-bottom: 58px; }
  .site-footer { align-items: flex-start; flex-direction: column; line-height: 1.6; }
}

@media (max-width: 520px) {
  .hero { padding-left: 20px; padding-right: 20px; }
  .site-header, .trust-strip, .about, .site-footer { padding-left: 20px; padding-right: 20px; }
  .hero-visual { min-height: 430px; transform: none; width: auto; }
  .visual-grid, .halo, .stat-card, .sec-sheet { display: none; }
  .main-card { position: relative; width: 100%; left: 0; top: 0; padding: 16px; }
  .chart-card { position: relative; width: 92%; margin: -10px 0 0 auto; right: auto; bottom: auto; }
  .card-head { align-items: flex-start; gap: 12px; }
  .period-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
