:root {
  color-scheme: light;
  --ink: #12374f;
  --muted: #6c777d;
  --line: #d7e3ea;
  --paper: #f7f8f6;
  --white: #ffffff;
  --teal: #008ec5;
  --teal-dark: #0a4471;
  --amber: #f2a316;
  --charcoal: #081c2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 26, 30, 0.76), rgba(17, 26, 30, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  display: block;
  width: clamp(188px, 22vw, 282px);
  height: auto;
}

.nav {
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  opacity: 0.9;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 28, 44, 0.96) 0%, rgba(8, 28, 44, 0.82) 38%, rgba(8, 28, 44, 0.18) 76%),
    linear-gradient(0deg, rgba(8, 28, 44, 0.56), rgba(238, 96, 11, 0.1));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin: 0 0 0 clamp(20px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-logo {
  display: block;
  width: min(560px, 88vw);
  height: auto;
  margin: 0 0 22px;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.14;
}

.lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.verification-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(42px, 7vw, 76px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--teal-dark);
}

.verification-band h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.verification-band p:not(.section-kicker) {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.section {
  padding: clamp(60px, 9vw, 112px) clamp(20px, 6vw, 76px);
}

.section.muted {
  background: #edf3f6;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 68px);
  max-width: 1040px;
}

.text-grid p {
  color: var(--muted);
  font-size: 20px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.project-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.project-card p {
  color: var(--muted);
}

.project-card a {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.status {
  margin-bottom: 24px;
  border: 1px solid rgba(0, 142, 197, 0.24);
  padding: 5px 8px;
  color: var(--teal-dark);
  background: rgba(0, 142, 197, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status.pending {
  border-color: rgba(238, 96, 11, 0.26);
  color: #b34307;
  background: rgba(238, 96, 11, 0.08);
}

.verification-card {
  background:
    linear-gradient(135deg, rgba(0, 142, 197, 0.08), rgba(242, 163, 22, 0.08)),
    var(--white);
}

.domains {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
}

.domain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.domain-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.domain-list span {
  font-size: 20px;
  font-weight: 800;
}

.domain-list small {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--charcoal);
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.contact-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 76px);
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.inner-page {
  background: var(--paper);
}

.inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.inner-brand img {
  width: clamp(210px, 24vw, 320px);
}

.inner-nav {
  color: var(--ink);
}

.simple-main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.simple-hero {
  padding: clamp(58px, 8vw, 104px) 0 clamp(36px, 6vw, 72px);
}

.simple-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
}

.simple-hero p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
}

.simple-section {
  padding: clamp(34px, 6vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.simple-section h2 {
  max-width: 820px;
  font-size: clamp(28px, 4vw, 46px);
}

.simple-section p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.simple-section a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.steps strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--teal-dark);
}

.callout {
  margin-bottom: clamp(50px, 8vw, 90px);
  border: 1px solid rgba(0, 142, 197, 0.18);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(0, 142, 197, 0.08), rgba(242, 163, 22, 0.08)),
    var(--white);
}

.legal-copy .simple-section h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-copy .simple-section h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .verification-band,
  .text-grid,
  .project-list,
  .domains,
  .contact,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 28, 44, 0.94), rgba(8, 28, 44, 0.72));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 132px;
  }

  .hero-logo {
    width: min(420px, 94vw);
  }

  h1 {
    font-size: 52px;
  }

  .button,
  .contact-link {
    width: 100%;
  }

  .inner-header,
  .domain-list li,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }
}
