:root {
  --ink: #0b1220;
  --ink-muted: #535963;
  --ink-subtle: #6b7280;
  --surface: #ffffff;
  --surface-muted: #f6f7fb;
  --border: #e6e8f0;
  --primary: #1e3a8a;
  --primary-dark: #172554;
  --primary-light: #eff6ff;
  --accent: #166534;
  --accent-light: #f0fdf4;
  --shadow-card: 0 1px 3px rgb(0 0 0 / 0.04), 0 4px 6px rgb(0 0 0 / 0.02);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: var(--primary);
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.nav {
  width: min(100% - 48px, 1400px);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-weight: 700;
}

.brand span {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 5px;
  color: rgb(255 255 255 / 0.72);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-button,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 7px;
  background: white;
  color: var(--primary);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--primary-dark);
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(11 18 32 / 0.94) 0%, rgb(23 37 84 / 0.82) 44%, rgb(23 37 84 / 0.48) 100%),
    linear-gradient(0deg, rgb(23 37 84 / 0.92) 0%, transparent 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1400px);
  min-height: 760px;
  margin: 0 auto;
  padding: 160px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 84px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow-light {
  display: inline-flex;
  padding: 4px 13px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.78);
  backdrop-filter: blur(8px);
}

.eyebrow.blue {
  color: var(--primary);
}

.eyebrow.muted {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgb(255 255 255 / 0.54);
}

h1,
h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 920px;
  margin-top: 30px;
  color: white;
  font-size: clamp(52px, 7vw, 88px);
}

h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 21px;
  line-height: 1.7;
}

.status-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px;
  background: rgb(255 255 255 / 0.08);
  border-left: 1px solid rgb(255 255 255 / 0.2);
  backdrop-filter: blur(12px);
}

.status-panel p {
  margin: 0;
  color: rgb(255 255 255 / 0.86);
  font-size: 16px;
  line-height: 1.75;
}

.status-panel .panel-label {
  margin-bottom: 10px;
  color: rgb(255 255 255 / 0.6);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 5px;
  border: 2px solid #6ee7a1;
  border-radius: 50%;
  color: #6ee7a1;
}

.check-icon svg {
  width: 13px;
  height: 13px;
}

.section {
  padding: 92px 0;
}

.section-grid,
.review-grid,
.closing-grid,
.container {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 90px;
}

.context h2,
.pillars-section h2,
.review-section h2 {
  margin-top: 14px;
}

.body-copy,
.section-intro,
.review-section p,
.pillars p,
.steps p,
.closing p,
.process-panel p {
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.75;
}

.body-copy {
  max-width: 880px;
  margin-top: 26px;
}

.body-copy p {
  margin: 0 0 22px;
}

.process-panel {
  align-self: start;
  padding: 34px;
  border-top: 4px solid var(--accent);
  background: var(--surface-muted);
  box-shadow: var(--shadow-card);
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}

.panel-heading p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.panel-heading svg {
  width: 19px;
  height: 19px;
}

.pillars-section {
  background: var(--surface-muted);
}

.section-intro {
  max-width: 830px;
  margin: 24px 0 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.pillars article {
  min-height: 265px;
  padding: 34px;
  background: white;
  box-shadow: var(--shadow-card);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 7px;
  background: var(--primary-light);
  color: var(--primary);
}

.pillars p {
  margin: 18px 0 0;
  font-size: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 78px;
}

.review-grid > div:first-child p:last-child {
  margin-top: 26px;
}

.steps article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.steps article:last-child {
  border-bottom: 1px solid var(--border);
}

.steps span {
  color: rgb(30 58 138 / 0.26);
  font-family: "Lora", Georgia, serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 1;
}

.steps p {
  margin: 8px 0 0;
  font-size: 16px;
}

.closing {
  padding: 64px 0;
  background: var(--primary-dark);
  color: white;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.closing h2 {
  max-width: 780px;
  margin-top: 20px;
  color: white;
  font-size: clamp(32px, 4vw, 48px);
}

.closing p {
  max-width: 920px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.7);
  font-size: 16px;
}

.email-link {
  min-width: 250px;
}

@media (max-width: 980px) {
  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .section-grid,
  .review-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 138px 0 64px;
    gap: 40px;
  }

  .status-panel {
    max-width: 560px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .review-grid {
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .nav,
  .section-grid,
  .review-grid,
  .closing-grid,
  .container,
  .hero-inner {
    width: min(100% - 32px, 1400px);
  }

  .nav {
    min-height: 66px;
  }

  .brand small {
    font-size: 8px;
  }

  .contact-button {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .status-panel,
  .process-panel,
  .pillars article {
    padding: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .steps article {
    grid-template-columns: 1fr;
  }
}
