:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6876;
  --line: #d9e0e9;
  --paper: #f7f9fb;
  --white: #ffffff;
  --accent: #0e7490;
  --accent-dark: #155e75;
  --warm: #c68b3c;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(8, 18, 29, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.site-header.solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--warm));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: min(56vw, 520px);
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: currentColor;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  margin-top: -76px;
  padding: 128px clamp(20px, 5vw, 64px) 56px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 13, 21, 0.86) 0%, rgba(5, 13, 21, 0.66) 42%, rgba(5, 13, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 13, 21, 0.42), rgba(5, 13, 21, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding-top: 32px;
  animation: riseIn 720ms ease-out both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #74d3e6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(18px, 2.4vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 32px);
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro-grid h2,
.services-section h2,
.verification-head h2,
.contact-section h2,
.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy,
.verification-head p,
.contact-section p,
.legal-hero p,
.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

.services-section {
  max-width: none;
  background: var(--white);
}

.services-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list article {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.service-list article:hover {
  background: #f4fbfd;
  transform: translateY(-4px);
}

.service-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--warm);
  font-weight: 900;
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-list p {
  color: var(--muted);
}

.verification-section {
  max-width: none;
  background: #101820;
  color: var(--white);
}

.verification-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.verification-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.verification-head p {
  color: rgba(255, 255, 255, 0.72);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.company-facts div {
  min-height: 112px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.company-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.company-facts a {
  color: #9be4f2;
}

.contact-section {
  align-items: center;
}

.contact-block {
  display: grid;
  gap: 12px;
  padding: 30px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-block strong {
  font-size: 22px;
  line-height: 1.25;
}

.contact-block span,
.contact-block a {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: #071018;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

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

.legal-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 92px clamp(20px, 5vw, 32px) 40px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 44px clamp(20px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-content h2 {
  margin: 32px 0 8px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }
  to {
    transform: scale(1.07) translateX(1.2%);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    color: var(--ink);
    background: var(--white);
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    margin-top: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 13, 21, 0.9) 0%, rgba(5, 13, 21, 0.72) 100%),
      linear-gradient(0deg, rgba(5, 13, 21, 0.35), rgba(5, 13, 21, 0.08));
  }

  .brand strong {
    white-space: normal;
  }

  .intro-grid,
  .verification-head,
  .contact-section,
  .service-list,
  .company-facts {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: 210px;
  }

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

@media (max-width: 520px) {
  .nav {
    gap: 16px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .company-facts div {
    padding: 20px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 8px;
  }
}
