:root {
  --navy: #0b2742;
  --navy-2: #123d65;
  --blue: #087ff0;
  --blue-light: #e8f4ff;
  --ink: #10283e;
  --muted: #60758a;
  --line: #dce7f0;
  --surface: #ffffff;
  --background: #f5f9fc;
  --green: #17845d;
  --shadow: 0 18px 50px rgba(13, 52, 84, .09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--background);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--background); }
a { color: inherit; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.topbar { background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(14px); }
.nav { width: min(1120px, calc(100% - 40px)); min-height: 72px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { display: block; width: auto; height: 54px; object-fit: contain; }
.brand-sub { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .12em; padding: 5px 8px; border-radius: 999px; background: var(--blue-light); }
.nav-link { text-decoration: none; font-size: .94rem; font-weight: 700; color: var(--navy-2); }
.nav-link:hover { color: var(--blue); }

.hero { position: relative; overflow: hidden; background: linear-gradient(130deg, #081f35 0%, #0d3558 66%, #087eea 120%); color: #fff; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -160px; top: -275px; box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025); }
.hero-inner { position: relative; z-index: 1; width: min(1120px, calc(100% - 40px)); margin: auto; padding: 78px 0 82px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: #a9d4fa; font-size: .78rem; line-height: 1; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 20px; height: 2px; background: #61b3f5; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.55rem, 6vw, 5rem); line-height: .98; letter-spacing: -.055em; font-weight: 780; }
.hero p { max-width: 650px; margin: 24px 0 0; color: #cfdfec; font-size: clamp(1.03rem, 2vw, 1.2rem); line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 12px; text-decoration: none; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #fff; color: var(--navy); box-shadow: 0 10px 24px rgba(0,0,0,.16); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.07); }

.main { flex: 1; width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 58px 0 76px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-head h2 { margin: 0; color: var(--navy); font-size: clamp(1.7rem, 4vw, 2.35rem); letter-spacing: -.035em; }
.section-head p { max-width: 520px; margin: 8px 0 0; color: var(--muted); line-height: 1.6; }
.count { white-space: nowrap; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: .82rem; font-weight: 700; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.tool-card { display: flex; flex-direction: column; min-height: 300px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.tool-card:hover { transform: translateY(-4px); border-color: #9bc9ee; box-shadow: 0 24px 60px rgba(13,52,84,.14); }
.card-top { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--blue-light); color: var(--blue); }
.icon-box svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: .8rem; font-weight: 750; }
.status::before { content: ""; width: 7px; height: 7px; background: #23aa78; border-radius: 50%; box-shadow: 0 0 0 4px #e5f7f0; }
.tool-card h3 { margin: 26px 0 10px; color: var(--navy); font-size: 1.35rem; letter-spacing: -.02em; }
.tool-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 9px; width: fit-content; margin-top: auto; padding-top: 26px; color: var(--blue); text-decoration: none; font-weight: 800; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }
.note { margin-top: 24px; padding: 20px 22px; background: #edf6fd; border: 1px solid #d5eaf9; border-radius: 16px; color: #385872; line-height: 1.55; }
.upcoming-section { margin-top: 70px; padding-top: 54px; border-top: 1px solid var(--line); }
.upcoming-head { margin-bottom: 24px; }
.eyebrow-dark { color: var(--blue); margin-bottom: 12px; }
.eyebrow-dark::before { background: var(--blue); }
.upcoming-card { min-height: 255px; background: rgba(255,255,255,.62); border-style: dashed; box-shadow: none; }
.upcoming-card:hover { transform: none; border-color: var(--line); box-shadow: none; }
.upcoming-card .icon-box { background: #edf2f6; color: #71869a; }
.development-status { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: #edf2f6; color: #5c7083; font-size: .78rem; font-weight: 750; }
.upcoming-card h3 { color: #314c64; }
.upcoming-card p { color: #728496; }
.footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { width: min(1120px, calc(100% - 40px)); min-height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .88rem; }

.home-hero { min-height: calc(100vh - 72px); display: grid; align-items: center; }
.home-hero .hero-inner { padding-top: 90px; padding-bottom: 110px; }

@media (max-width: 720px) {
  .nav { width: min(100% - 28px, 1120px); min-height: 64px; }
  .brand-logo { height: 42px; }
  .brand-sub { display: none; }
  .hero-inner, .main, .footer-inner { width: min(100% - 28px, 1120px); }
  .hero-inner { padding: 60px 0 64px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.7rem); }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 285px; padding: 24px; }
  .section-head { align-items: start; }
  .count { display: none; }
  .footer-inner { padding: 22px 0; flex-direction: column; align-items: start; justify-content: center; }
}

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