:root {
  color-scheme: light;
  --navy: #10233f;
  --navy-deep: #08182d;
  --ink: #172235;
  --muted: #667286;
  --orange: #f28c28;
  --orange-soft: #fff1df;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line: #dfe4ea;
  --blue-soft: #e8eef5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(16, 35, 63, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--orange);
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background: rgba(8, 24, 45, 0.28);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 138px 0 100px;
  color: var(--white);
}

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

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 575px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button-light {
  background: var(--orange);
  color: var(--navy);
}

.button-light:hover {
  background: #ff9f3b;
}

.text-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange);
}

.hero-meta {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.6fr 1.45fr 1fr;
  gap: 38px;
  align-items: start;
}

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

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.intro-copy p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.company-facts {
  display: grid;
  gap: 18px;
  margin: 0;
}

.company-facts div {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 700;
}

.section-band {
  background: var(--navy);
  color: var(--white);
}

.section-band h2,
.section-band h3 {
  color: var(--white);
}

.section-band .lead,
.section-band p {
  color: rgba(255, 255, 255, 0.72);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.operation-list {
  display: grid;
  gap: 0;
}

.operation-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.operation-list article:last-child {
  margin-bottom: 0;
}

.operation-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.api {
  padding-bottom: 104px;
}

.api-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
}

.api-layout p:not(.lead) {
  max-width: 650px;
  color: var(--muted);
}

.scope-panel {
  padding: 28px;
  border: 1px solid rgba(16, 35, 63, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.scope-panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.scope-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.scope-panel li::before {
  content: "—";
  position: absolute;
  margin-left: -22px;
  color: var(--orange);
  font-weight: 800;
}

.scope-note {
  margin: 24px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-size: 13px;
  font-weight: 700;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: end;
}

address {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

address strong {
  color: var(--white);
  font-size: 18px;
}

address a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.site-footer a {
  color: var(--orange);
  text-decoration: none;
}

.policy-heading {
  padding-bottom: 42px;
}

.policy-heading h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.policy-date {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.policy {
  max-width: 840px;
  padding-top: 0;
}

.policy > p:first-child {
  padding: 24px 26px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  color: var(--navy);
}

.policy h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-size: 27px;
  letter-spacing: 0;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.policy a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
  .intro,
  .section-grid,
  .api-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro {
    gap: 30px;
  }

  .section-grid,
  .api-layout,
  .contact-inner {
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-block: 14px;
  }

  .nav {
    width: 100%;
    gap: 12px 17px;
    font-size: 13px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: rgba(8, 24, 45, 0.56);
  }

  .hero-content {
    width: min(100% - 40px, 1180px);
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-meta {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .section {
    width: min(100% - 40px, 1180px);
    padding-block: 68px;
  }

  .policy-heading h1 {
    font-size: 48px;
  }

  .site-footer {
    padding-inline: 20px;
  }
}
