:root {
  color-scheme: light;
  --ink: #071426;
  --navy: #06182f;
  --blue: #0061ff;
  --red: #e9262d;
  --yellow: #ffbf1f;
  --green: #13a55b;
  --pink: #ee4aa6;
  --white: #ffffff;
  --cream: #fff8df;
  --silver: #d7dde7;
  --shadow: 0 20px 55px rgba(6, 24, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 31, 0.28), transparent 26rem),
    linear-gradient(135deg, rgba(0, 97, 255, 0.08), transparent 32rem),
    #f7f9fd;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(6, 24, 47, 0.08) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(233, 38, 45, 0.06) 48% 52%, transparent 52% 100%);
  background-size: 18px 18px, 100% 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 24, 47, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.9rem;
}

nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.nav-button {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: calc(100vh - 74px);
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(6, 24, 47, 0.97), rgba(7, 20, 38, 0.9)),
    conic-gradient(from 210deg at 70% 50%, var(--red), var(--yellow), var(--blue), var(--green), var(--pink), var(--red));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(255, 191, 31, 0.92) 54% 60%, transparent 60%),
    linear-gradient(121deg, transparent 0 61%, rgba(255, 255, 255, 0.18) 61% 63%, transparent 63%);
  opacity: 0.86;
}

.hero-copy,
.hero-badge {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 7.9rem);
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

p {
  line-height: 1.65;
}

.hero-lede {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 7px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--navy);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--navy);
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
  box-shadow: 5px 5px 0 var(--yellow);
}

.hero-badge {
  display: grid;
  place-items: center;
}

.hero-badge img {
  width: min(100%, 440px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.8rem;
  background: var(--white);
  border: 8px solid var(--silver);
  border-radius: 8px;
  box-shadow: var(--shadow), 9px 9px 0 rgba(255, 191, 31, 0.9);
  transform: rotate(1.5deg);
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: var(--navy);
  border-top: 8px solid var(--yellow);
  border-bottom: 8px solid var(--red);
}

.mission-band h2 {
  max-width: 930px;
}

.mission-band p:not(.section-kicker) {
  align-self: end;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  font-weight: 700;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 2rem;
}

.section-heading .section-kicker,
.scanner-copy .section-kicker,
.cta-section .section-kicker {
  color: var(--red);
}

.section-heading p:not(.section-kicker),
.scanner-copy p {
  max-width: 760px;
  color: #4d5d70;
  font-size: 1.08rem;
}

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

.tool-card {
  position: relative;
  min-height: 310px;
  padding: 1.3rem;
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 7px 7px 0 rgba(6, 24, 47, 0.16);
}

.tool-card::before {
  position: absolute;
  top: -40px;
  right: -38px;
  width: 140px;
  height: 140px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(45deg);
}

.tool-card.red {
  background: linear-gradient(155deg, #b80e24, #ef3340);
}

.tool-card.blue {
  background: linear-gradient(155deg, #053b92, #0061ff);
}

.tool-card.yellow {
  color: var(--ink);
  background: linear-gradient(155deg, #ffcf31, #fff0a8);
}

.tool-card.green {
  background: linear-gradient(155deg, #086d3b, #13a55b);
}

.tool-card.pink {
  background: linear-gradient(155deg, #b81774, #ee4aa6);
}

.tool-card.black {
  background: linear-gradient(155deg, #071426, #24354c);
}

.tool-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.tool-card.yellow .tool-number {
  background: var(--navy);
  color: var(--white);
}

.tool-card p {
  margin: 0 0 1rem;
}

.tool-card strong,
.tool-card span:last-child {
  display: block;
}

.tool-card span:last-child {
  margin-top: 0.2rem;
  font-weight: 800;
}

.scanner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  background: linear-gradient(135deg, rgba(255, 191, 31, 0.22), rgba(0, 97, 255, 0.12));
}

.scanner-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.score-ring {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 150px;
  height: 150px;
  border: 12px solid var(--yellow);
  border-radius: 50%;
  color: var(--navy);
  background: radial-gradient(circle, var(--white), #eef5ff);
  box-shadow: inset 0 0 0 7px var(--navy);
}

.score-ring span {
  font-size: 2.15rem;
  font-weight: 900;
}

.score-ring small {
  margin-top: -1.4rem;
  color: #5d6876;
  font-weight: 900;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.8rem;
  border: 1px solid rgba(6, 24, 47, 0.14);
  border-radius: 7px;
  font-weight: 700;
  background: #f8fbff;
}

input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--blue);
}

.recommendation {
  padding: 1rem;
  border-radius: 7px;
  color: var(--white);
  background: var(--navy);
}

.recommendation strong,
.recommendation span {
  display: block;
}

.recommendation span {
  margin-top: 0.25rem;
  color: var(--yellow);
  font-weight: 900;
}

.pitch-section {
  background: var(--white);
}

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

.pitch-grid > div {
  padding: 1.4rem;
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: #f6f8fb;
}

.pitch-grid > div:nth-child(2) {
  border-color: var(--blue);
}

.pitch-grid > div:nth-child(3) {
  border-color: var(--green);
}

.pitch-grid p {
  margin-bottom: 0;
  color: #4d5d70;
}

.cta-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 191, 31, 0.82) 0 14%, transparent 14% 100%),
    linear-gradient(135deg, var(--navy), #0d2d57);
}

.cta-section h2,
.cta-section p {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.cta-section p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.cta-section .button {
  margin-top: 1rem;
}

.secret-section {
  display: flex;
  justify-content: center;
  padding: 0 1rem 2rem;
  background: #020812;
}

.secret-button {
  cursor: pointer;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.42);
  font: inherit;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
}

.secret-button:hover,
.secret-button:focus-visible {
  color: var(--yellow);
  border-color: rgba(255, 191, 31, 0.7);
}

.secret-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at center, rgba(255, 191, 31, 0.34), transparent 18rem),
    rgba(2, 8, 18, 0.88);
}

.secret-overlay.active {
  display: grid;
}

.secret-burst {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding: clamp(2rem, 7vw, 5rem) 1.5rem;
  border: 5px solid var(--white);
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(233, 38, 45, 0.95), rgba(0, 97, 255, 0.94)),
    var(--navy);
  box-shadow:
    0 0 0 12px rgba(255, 191, 31, 0.92),
    0 24px 70px rgba(0, 0, 0, 0.42);
  animation: burstIn 420ms cubic-bezier(.2, 1.55, .45, 1);
}

.secret-burst::before,
.secret-burst::after {
  position: absolute;
  inset: -36px;
  z-index: -1;
  content: "";
  background:
    conic-gradient(from 10deg, var(--yellow), var(--red), var(--blue), var(--green), var(--pink), var(--yellow));
  clip-path: polygon(50% 0, 57% 34%, 91% 18%, 66% 48%, 100% 50%, 66% 58%, 91% 82%, 57% 66%, 50% 100%, 43% 66%, 9% 82%, 34% 58%, 0 50%, 34% 48%, 9% 18%, 43% 34%);
}

.secret-burst::after {
  inset: -18px;
  filter: blur(18px);
  opacity: 0.8;
}

.secret-burst p {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 17vw, 12rem);
  line-height: 0.9;
  text-shadow: 7px 7px 0 rgba(0, 0, 0, 0.42);
}

.secret-burst span {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.secret-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: rgba(2, 8, 18, 0.42);
}

.balloon {
  position: absolute;
  bottom: -140px;
  width: 78px;
  height: 96px;
  border-radius: 50% 50% 46% 46%;
  opacity: 0;
  animation: floatUp 3s ease-in-out infinite;
}

.balloon::after {
  position: absolute;
  left: 50%;
  top: 92px;
  width: 2px;
  height: 90px;
  content: "";
  background: rgba(255, 255, 255, 0.65);
}

.balloon-red {
  left: 8%;
  background: var(--red);
  animation-delay: 0ms;
}

.balloon-blue {
  left: 24%;
  background: var(--blue);
  animation-delay: 280ms;
}

.balloon-yellow {
  left: 50%;
  background: var(--yellow);
  animation-delay: 520ms;
}

.balloon-green {
  right: 24%;
  background: var(--green);
  animation-delay: 160ms;
}

.balloon-pink {
  right: 8%;
  background: var(--pink);
  animation-delay: 420ms;
}

@keyframes burstIn {
  from {
    opacity: 0;
    transform: scale(0.35) rotate(-5deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(-4deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-120vh) rotate(7deg);
  }
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  color: rgba(255, 255, 255, 0.78);
  background: #020812;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 950px) {
  .hero,
  .mission-band,
  .scanner-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-badge {
    justify-content: start;
  }

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

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

  .brand span {
    white-space: normal;
  }

  nav {
    justify-content: flex-start;
  }

  nav a {
    padding: 0.55rem 0.7rem;
  }

  .tool-grid,
  .pitch-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
