:root {
  --blue: #182e84;
  --blue-deep: #0c194c;
  --orange: #ff6729;
  --ink: #101528;
  --muted: #60677d;
  --line: rgba(24, 46, 132, 0.12);
  --paper: #f7f8fc;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(24, 46, 132, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 46, 132, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
}

.site-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: clamp(28px, 4vw, 58px) clamp(24px, 7vw, 112px) 30px;
  overflow: hidden;
  isolation: isolate;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: start;
  width: clamp(158px, 15vw, 190px);
}

.brand__mark {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2.48 / 1;
  overflow: hidden;
}

.brand__mark img {
  position: absolute;
  width: 161%;
  max-width: none;
  height: auto;
  left: -31%;
  top: -126%;
  mix-blend-mode: multiply;
}

.brand__tagline {
  margin-top: 5px;
  color: #343238;
  font-size: clamp(0.58rem, 0.7vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(780px, 100%);
  padding: 48px 0 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 103, 41, 0.13);
  animation: pulse 2.4s ease-in-out infinite;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 6.3vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 10px 17px 10px 10px;
  color: #343b54;
  font-size: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(18, 38, 112, 0.07);
  backdrop-filter: blur(12px);
}

.status__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border-radius: 50%;
  background: var(--blue);
}

.status svg {
  width: 19px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient--orange {
  right: -12vw;
  top: -22vw;
  width: 55vw;
  height: 55vw;
  min-width: 600px;
  min-height: 600px;
  background: radial-gradient(circle at 35% 60%, rgba(255, 103, 41, 0.23), rgba(255, 103, 41, 0) 67%);
}

.ambient--blue {
  right: 5vw;
  bottom: -28vw;
  width: 58vw;
  height: 58vw;
  min-width: 620px;
  min-height: 620px;
  background: radial-gradient(circle, rgba(24, 46, 132, 0.16), rgba(24, 46, 132, 0) 67%);
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  color: #73798d;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255, 103, 41, 0.1); }
  50% { box-shadow: 0 0 0 10px rgba(255, 103, 41, 0); }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 28px 22px 24px;
  }

  .hero {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .intro {
    margin-top: 24px;
    line-height: 1.6;
  }

  .status {
    align-items: flex-start;
    border-radius: 20px;
  }

  .status span:last-child {
    max-width: 180px;
    line-height: 1.5;
  }

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

@media (prefers-reduced-motion: reduce) {
  .eyebrow span {
    animation: none;
  }
}
