@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/ArchivoBlack-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/Manrope-300.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/Manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/Manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Manrope-700.ttf") format("truetype");
}

:root {
  --so-bg: #d7dbe3;
  --so-surface: #eef0f5;
  --so-surface-muted: #e2e6ee;
  --so-border: rgba(15, 23, 42, 0.16);
  --so-border-strong: rgba(15, 23, 42, 0.32);
  --so-text-primary: #0b1224;
  --so-text-secondary: #303b52;
  --so-accent: #1f4aad;
  --so-accent-strong: #163a8f;
  --so-warning: #f97316;
  --so-overlay: rgba(31, 74, 173, 0.14);
  --so-card-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
  --so-panel-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
  --radius-lg: 24px;
  --radius-md: 16px;
  --tone-a-start: rgba(238, 244, 255, 0.93);
  --tone-a-end: rgba(223, 232, 247, 0.93);
  --tone-b-start: rgba(235, 245, 242, 0.93);
  --tone-b-end: rgba(219, 234, 230, 0.93);
  --tone-c-start: rgba(245, 239, 252, 0.93);
  --tone-c-end: rgba(232, 225, 245, 0.93);
  --tone-d-start: rgba(252, 245, 234, 0.93);
  --tone-d-end: rgba(246, 235, 219, 0.93);
  --tone-e-start: rgba(238, 246, 251, 0.93);
  --tone-e-end: rgba(223, 235, 243, 0.93);
  --tone-f-start: rgba(247, 243, 236, 0.93);
  --tone-f-end: rgba(238, 231, 221, 0.93);
  --tone-g-start: rgba(240, 244, 248, 0.95);
  --tone-g-end: rgba(226, 234, 240, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", "Archivo Black", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Display", sans-serif;
  color: var(--so-text-primary);
  background: var(--so-bg);
  line-height: 1.45;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 74, 173, 0.22), transparent 42%),
    radial-gradient(circle at 88% 14%, rgba(59, 130, 246, 0.18), transparent 38%),
    radial-gradient(circle at 76% 92%, rgba(22, 58, 143, 0.14), transparent 46%),
    linear-gradient(160deg, #f7f9fc 0%, #e5eaf2 42%, #d2d8e2 100%);
  z-index: -2;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.33;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(238, 240, 245, 0.82);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  text-decoration: none;
  color: var(--so-text-primary);
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 1.38rem;
  letter-spacing: 0.1em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.nav a {
  color: var(--so-text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--so-accent-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid var(--so-border-strong);
  font-weight: 700;
  text-decoration: none;
  color: var(--so-text-primary);
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease,
    color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  border-color: var(--so-accent);
  color: var(--so-accent-strong);
  background: transparent;
}

.btn-outline {
  border-color: var(--so-border-strong);
  background: transparent;
}

.btn-ghost {
  border-color: var(--so-border);
  background: transparent;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--so-accent-strong);
  background: rgba(37, 99, 235, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(15, 23, 42, 0.05);
}

.btn-wide {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: clamp(42px, 6vw, 88px) 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background:
    radial-gradient(circle at 82% 14%, rgba(37, 99, 235, 0.14), transparent 36%),
    linear-gradient(150deg, rgba(246, 249, 255, 0.56), rgba(228, 236, 246, 0.5));
}

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

.hero-kicker,
.section-kicker,
.request-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--so-warning);
  margin: 0 0 16px;
}

.hero-title {
  margin: 0;
  font-family: "Archivo Black", "Manrope", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.7vw, 5.9rem);
  letter-spacing: 0.013em;
  line-height: 0.93;
  color: var(--so-text-primary);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  margin: 24px 0 8px;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--so-text-primary);
  overflow-wrap: anywhere;
}

.hero-text {
  margin: 0;
  color: var(--so-text-secondary);
  max-width: 64ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.request-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 245, 251, 0.93) 100%);
  border: 1px solid var(--so-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--so-card-shadow);
  padding: clamp(18px, 3vw, 30px);
}

.request-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.26rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.request-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.26rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.request-card p {
  margin: 0 0 16px;
  color: var(--so-text-secondary);
}

.request-section .section-head {
  max-width: 920px;
  margin: 0 auto 28px;
}

.request-section .request-card {
  max-width: 920px;
  margin: 0 auto;
}

.request-card form {
  display: grid;
  gap: 11px;
}

.request-card label {
  display: grid;
  gap: 6px;
  color: var(--so-text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.request-card input,
.request-card textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: rgba(255, 255, 255, 0.72);
  padding: 11px 12px;
  color: var(--so-text-primary);
  font: inherit;
}

.request-card input::placeholder,
.request-card textarea::placeholder {
  color: rgba(48, 59, 82, 0.75);
}

.request-card input:focus,
.request-card textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.38);
  outline-offset: 1px;
}

.consent {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--so-text-secondary);
}

.consent a {
  color: var(--so-accent);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.request-status {
  min-height: 1.2em;
  margin: 2px 0 0;
  font-size: 0.88rem;
  color: var(--so-text-secondary);
}

.request-status.is-success {
  color: #0f766e;
}

.request-status.is-error {
  color: #b91c1c;
}

.section {
  position: relative;
  isolation: isolate;
  padding: clamp(52px, 8vw, 92px) 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: var(--section-bg, linear-gradient(145deg, rgba(237, 242, 249, 0.46), rgba(224, 231, 241, 0.42)));
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(15, 23, 42, 0.08);
}

.section-tone-a {
  --section-bg: linear-gradient(145deg, var(--tone-a-start), var(--tone-a-end));
}

.section-tone-b {
  --section-bg: linear-gradient(145deg, var(--tone-b-start), var(--tone-b-end));
}

.section-tone-c {
  --section-bg: linear-gradient(145deg, var(--tone-c-start), var(--tone-c-end));
}

.section-tone-d {
  --section-bg: linear-gradient(145deg, var(--tone-d-start), var(--tone-d-end));
}

.section-tone-e {
  --section-bg: linear-gradient(145deg, var(--tone-e-start), var(--tone-e-end));
}

.section-tone-f {
  --section-bg: linear-gradient(145deg, var(--tone-f-start), var(--tone-f-end));
}

.section-tone-g {
  --section-bg: linear-gradient(145deg, var(--tone-g-start), var(--tone-g-end));
}

.section-head {
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-family: "Archivo Black", "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.03;
  font-size: clamp(1.45rem, 2.9vw, 2.65rem);
  color: var(--so-text-primary);
}

.simplify-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--so-border);
  padding: 18px;
  min-height: 172px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.feature-card p {
  margin: 0;
  color: var(--so-text-secondary);
}

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

.strength-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--so-border);
  padding: 20px;
}

.strength-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.strength-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.strength-card li {
  color: var(--so-text-secondary);
  position: relative;
  padding-left: 18px;
}

.strength-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--so-accent);
  position: absolute;
  left: 0;
  top: 0.55em;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--so-border);
}

.step-num {
  margin: 0 0 10px;
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 1.5rem;
  color: var(--so-accent-strong);
}

.flow-step h3 {
  margin: 0 0 9px;
  font-size: 1.02rem;
}

.flow-step p {
  margin: 0;
  color: var(--so-text-secondary);
}

.deploy-block {
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(238, 243, 251, 0.93));
  border: 1px solid var(--so-border);
  padding: clamp(22px, 4.5vw, 52px);
  box-shadow: var(--so-card-shadow);
}

.deploy-block h2 {
  margin: 0 0 12px;
  font-family: "Archivo Black", "Manrope", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(1.42rem, 3.7vw, 3.3rem);
}

.deploy-block p {
  color: var(--so-text-secondary);
  margin: 0 0 18px;
  max-width: 70ch;
}

.standards-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.83);
  border: 1px solid var(--so-border);
  padding: clamp(18px, 2.8vw, 26px);
}

.standards-card p {
  margin: 0 0 12px;
  color: var(--so-text-secondary);
}

.inline-link {
  color: var(--so-accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

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

.resource-card {
  display: block;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--so-border);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: var(--so-text-primary);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(214, 224, 246, 0.8);
}

.resource-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.resource-card p {
  margin: 0;
  color: var(--so-text-secondary);
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  margin-top: 40px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0 36px;
  color: var(--so-text-secondary);
}

.footer p {
  margin: 0;
}

.footer-wrap p:last-child {
  max-width: 32ch;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.2s;
}

.reveal-delay-3 {
  animation-delay: 0.32s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .simplify-grid,
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .nav {
    display: none;
  }

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

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

@media (max-width: 980px) and (orientation: landscape) and (pointer: coarse),
  (max-height: 500px) and (pointer: coarse) {
  .header {
    position: static;
  }

  .nav-wrap {
    padding: 8px 0;
    gap: 10px;
    min-height: 0;
  }

  .logo {
    font-size: 1.02rem;
    letter-spacing: 0.08em;
  }

  .nav-wrap .btn-ghost {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1220px, 94vw);
  }

  .header {
    position: static;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
  }

  .btn {
    width: auto;
    padding: 11px 18px;
    font-size: 0.94rem;
  }

  .hero-title {
    font-size: clamp(1.48rem, 9.8vw, 2.48rem);
    letter-spacing: 0.008em;
    line-height: 0.96;
  }

  .simplify-grid,
  .resources-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .resource-card,
  .reveal {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}
