:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #596574;
  --line: #d8dee7;
  --paper: #f6f4ef;
  --panel: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b554f;
  --blue: #244f8f;
  --clay: #a7442f;
  --gold: #b4842f;
  --green: #286a43;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

.brand,
.site-footer a,
h1 {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(17, 24, 39, 0.58);
  backdrop-filter: blur(16px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: 220px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  font-size: 0.8rem;
}

.site-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.site-header nav a:hover {
  color: #fff;
}

.site-header nav a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, 82vh);
  overflow: hidden;
  color: #fff;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.88), rgba(8, 13, 22, 0.5) 50%, rgba(8, 13, 22, 0.18)),
    linear-gradient(180deg, rgba(8, 13, 22, 0.18), rgba(8, 13, 22, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(840px, calc(100% - 32px));
  margin-left: clamp(16px, 6vw, 84px);
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.hero-content > p {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
button {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 830;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button.primary {
  border-color: var(--teal);
  color: #fff;
  background: var(--teal);
}

.button.primary:hover,
button.primary:hover {
  background: var(--teal-dark);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button.subtle {
  border-color: #c5d5d1;
  color: var(--teal-dark);
  background: #edf7f5;
}

.hero-status {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(420px, calc(100% - 32px));
  margin: 0 clamp(16px, 4vw, 48px) 26px 16px;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
}

.hero-status span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(620px, 72vh);
  overflow: hidden;
  color: #fff;
}

.page-hero picture,
.page-hero img {
  position: absolute;
  inset: 0;
}

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

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-band article {
  min-height: 188px;
  border-right: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band span {
  color: var(--clay);
  font-weight: 900;
}

.proof-band h2,
.section-heading h2,
.desk-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.proof-band p,
.service-card p,
.readiness p,
.desk-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.section-shell,
.desk-band {
  padding: clamp(48px, 8vw, 86px) clamp(16px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 410px) minmax(0, 1fr);
  gap: clamp(18px, 5vw, 64px);
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  max-width: 820px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card h3,
.readiness h3 {
  margin-bottom: 9px;
  font-size: 1.2rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: #334155;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal-dark);
  font-weight: 900;
}

.desk-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  color: #fff;
  background: #13222e;
}

.page-desk {
  min-height: 100vh;
  padding-top: 132px;
}

.page-desk h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.desk-copy {
  position: sticky;
  top: 96px;
}

.desk-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.desk-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 86px) clamp(16px, 5vw, 72px);
  background: #fff;
}

.split-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list article,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
}

.detail-list p,
.contact-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

form,
.score-panel,
.readiness article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

form {
  display: grid;
  gap: 15px;
  padding: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.form-grid,
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.check-grid label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 720;
}

.check-grid input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.score-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
}

.score-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.score-panel strong {
  font-size: 4rem;
  line-height: 0.95;
}

.score-panel p {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.score-panel ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.readiness-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.readiness article {
  min-height: 220px;
  padding: 22px;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 18px;
  border-radius: 999px;
}

.status-dot.pending {
  background: var(--gold);
}

.status-dot.waiting {
  background: var(--blue);
}

.status-dot.active {
  background: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(16px, 5vw, 72px);
  background: #fff;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .proof-band,
  .section-heading,
  .service-grid,
  .desk-band,
  .desk-tool,
  .readiness-grid,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .desk-copy {
    position: static;
  }

  .page-desk {
    min-height: auto;
    padding-top: 154px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .site-header nav {
    gap: 10px 14px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 172px;
  }

  h1 {
    font-size: clamp(2.35rem, 16vw, 4rem);
  }

  .hero-status {
    justify-self: start;
  }

  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
