@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --navy: #1d2440;
  --navy-700: #161b30;
  --navy-500: #2a3358;
  --navy-300: #485174;
  --cyan: #2986e4;
  --cyan-700: #1f6bb8;
  --cyan-50: #e8f2fc;
  --gray-100: #f2f4f5;
  --gray-200: #e4e7e9;
  --gray-300: #d1d5d8;
  --gray-500: #8a9094;
  --gray-700: #545a5e;
  --white: #ffffff;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-100);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 2px solid var(--white);
  box-shadow: 0 0 0 4px var(--cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-200);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--cyan);
  transform: rotate(-28deg);
}

.brand-mark span:nth-child(1) {
  top: 9px;
}

.brand-mark span:nth-child(2) {
  width: 18px;
}

.brand-mark span:nth-child(3) {
  bottom: 9px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.brand-text small,
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--cyan);
}

.header-cta,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 120ms var(--ease), color 120ms var(--ease), transform 120ms var(--ease);
}

.header-cta {
  justify-self: end;
  padding: 8px 18px;
  color: var(--white);
  background: var(--cyan);
}

.button-primary {
  padding: 12px 22px;
  color: var(--white);
  background: var(--cyan);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--cyan-700);
}

.header-cta:active,
.button-primary:active,
.button-secondary:active {
  transform: translateY(1px);
}

.button-secondary {
  padding: 11px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.surface-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  min-height: calc(100vh - 64px);
  padding: 96px 48px 80px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: 6vh;
  width: 52vw;
  height: 34vw;
  border: 1.5px solid rgba(41, 134, 228, 0.35);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-wave {
  position: absolute;
  right: -80px;
  bottom: 80px;
  width: 620px;
  height: 160px;
  border-top: 2px solid rgba(41, 134, 228, 0.35);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #b8c2de;
  font-size: 19px;
}

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

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 20px;
  border: 1px solid var(--navy-500);
  border-radius: 16px;
  background: rgba(42, 51, 88, 0.86);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #b8c2de;
  font-family: var(--font-mono);
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  animation: pulse 2s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 1; }
}

.hero-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--navy-500);
}

.hero-panel dt {
  color: #b8c2de;
}

.hero-panel dd {
  margin: 0;
  font-family: var(--font-mono);
}

.section,
.records,
.proof,
.site-footer {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 96px 48px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 240px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

.card p,
.section-copy,
.proof p {
  color: var(--gray-700);
}

.card-index {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.section-copy {
  max-width: 560px;
  margin-top: 20px;
  font-size: 17px;
}

.method-list {
  display: grid;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

.method-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 20px;
}

.method-row + .method-row {
  border-top: 1px solid var(--gray-200);
}

.method-row span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
}

.records {
  padding: 96px 48px 0;
}

.records-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

th {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.pill.active {
  color: #1f8a5b;
  background: #e3f2eb;
}

.pill.review {
  color: #94631d;
  background: #fbf1dd;
}

.pill.filed {
  color: var(--navy);
  background: var(--cyan-50);
}

.proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 96px;
  padding: 40px;
  border-radius: 16px;
}

.proof p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #b8c2de;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 48px 48px;
  color: var(--gray-700);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .split,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px 24px 56px;
  }

  .hero-panel {
    align-self: stretch;
  }

  .section,
  .records {
    padding: 72px 24px 0;
  }

  .records-head,
  .proof,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof {
    margin: 72px 24px 0;
    padding: 28px;
  }

  .site-footer {
    padding: 32px 24px 40px;
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
