:root {
  --navy: #0B2A66;
  --blue: #145BE8;
  --teal: #13C7C2;
  --orange: #FF8500;
  --ink: #061934;
  --muted: #52647d;
  --line: #dbe6f5;
  --surface: #ffffff;
  --soft: #f3f8ff;
  --soft-teal: #effdfb;
  --shadow: 0 22px 70px rgba(11, 42, 102, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(19, 199, 194, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #eef8ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(219, 230, 245, 0.78);
  background: rgba(255, 255, 255, 0.88);
  padding: 12px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(11, 42, 102, 0.12);
  box-shadow: 0 12px 34px rgba(11, 42, 102, 0.1);
}

.brand {
  display: inline-flex;
  width: 142px;
  height: 104px;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 142px;
  height: auto;
  max-width: none;
  transform: translateY(-10px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #213b66;
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.launch-badge {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta {
  border: 1px solid rgba(255, 133, 0, 0.4);
  background: rgba(255, 133, 0, 0.11);
  color: #9b4e00;
  padding: 9px 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(30px, 5vw, 62px) clamp(20px, 6vw, 76px) clamp(36px, 5vw, 56px);
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.02;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.6rem);
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.hero-line {
  max-width: 620px;
  margin: 18px 0 0;
  color: #102c5b;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 900;
  line-height: 1.16;
}

.hero-line span {
  display: block;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  padding: 11px 16px;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(20, 91, 232, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0f4fd4;
}

.button.secondary {
  border-color: rgba(19, 199, 194, 0.42);
  background: var(--soft-teal);
  color: #08716f;
}

.hero-showcase {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  justify-items: center;
  min-height: min(52vw, 520px);
}

.showcase-main {
  width: min(100%, 650px);
  border: 1px solid rgba(11, 42, 102, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.showcase-strip {
  position: absolute;
  right: 2%;
  bottom: 0;
  display: grid;
  width: min(48%, 290px);
  gap: 14px;
}

.showcase-strip img {
  border: 1px solid rgba(11, 42, 102, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(11, 42, 102, 0.15);
}

.showcase-strip img:first-child {
  transform: translateX(-24%);
}

.intro-band {
  margin: 0 clamp(20px, 6vw, 76px);
  border-block: 1px solid rgba(11, 42, 102, 0.12);
  padding: 18px 0;
}

.intro-band p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(60px, 9vw, 112px) clamp(20px, 6vw, 76px);
}

.section-heading {
  display: grid;
  max-width: 800px;
  gap: 16px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card,
.tool-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  box-shadow: 0 14px 40px rgba(11, 42, 102, 0.08);
}

.feature-number {
  display: inline-flex;
  min-width: 44px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.feature-card h3,
.tool-card h3 {
  margin-top: 18px;
}

.feature-card p,
.tool-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.proof-section {
  background: linear-gradient(180deg, rgba(11, 42, 102, 0.04), rgba(19, 199, 194, 0.08));
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  border: 1px solid rgba(11, 42, 102, 0.13);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(11, 42, 102, 0.12);
}

figcaption {
  margin-top: 12px;
  color: #32496d;
  font-size: 0.98rem;
  font-weight: 760;
}

.tools-section {
  background:
    linear-gradient(90deg, rgba(255, 133, 0, 0.09), transparent 36%),
    linear-gradient(180deg, transparent, rgba(20, 91, 232, 0.06));
}

.tool-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.tool-card {
  min-height: 210px;
}

.active-tool {
  border-color: rgba(20, 91, 232, 0.34);
  background: linear-gradient(135deg, rgba(20, 91, 232, 0.12), rgba(19, 199, 194, 0.1)), #ffffff;
}

.tool-status {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 133, 0, 0.13);
  color: #944b00;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 76px) clamp(56px, 8vw, 90px);
  border: 1px solid rgba(11, 42, 102, 0.14);
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.launch-panel .eyebrow,
.launch-panel h2,
.launch-panel p {
  color: #ffffff;
}

.launch-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.launch-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.launch-badge {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--orange);
  color: #ffffff;
  padding: 14px 18px;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(11, 42, 102, 0.12);
  padding: 22px clamp(20px, 6vw, 76px);
}

.footer-logo {
  width: 118px;
}

.footer-logo img {
  width: 118px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
  text-align: right;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 133, 0, 0.42);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-showcase {
    min-height: 0;
  }

  .showcase-main {
    width: min(100%, 720px);
  }

  .showcase-strip {
    position: static;
    grid-template-columns: 1fr 0.72fr;
    width: 100%;
    margin-top: 14px;
  }

  .showcase-strip img:first-child {
    transform: none;
  }

  .feature-grid,
  .proof-grid,
  .tool-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid figure:last-child {
    max-width: 420px;
  }
}

@media (max-width: 660px) {
  .site-header {
    justify-content: center;
    gap: 14px;
    padding-inline: 14px;
  }

  .brand,
  .brand-logo {
    width: 124px;
  }

  .brand {
    height: 92px;
  }

  .brand-logo {
    max-width: none;
    transform: translateY(-8px);
  }

  .nav {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
  }

  .header-cta {
    flex: 1;
    max-width: 146px;
    min-height: 38px;
    padding-inline: 10px;
  }

  .hero {
    gap: 24px;
    overflow: hidden;
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero-line {
    font-size: clamp(1.18rem, 5.4vw, 1.48rem);
  }

  .hero-copy,
  .hero-line,
  .hero-text,
  .hero-actions,
  .showcase-main {
    max-width: 350px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-grid,
  .proof-grid,
  .tool-roadmap,
  .launch-panel {
    grid-template-columns: 1fr;
  }

  .showcase-strip {
    display: none;
  }

  .showcase-main {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
    object-position: top right;
  }

  .proof-grid figure:last-child {
    max-width: none;
  }

  .launch-badge {
    justify-self: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
