:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #c8d7e7;
  --cyan: #17aaf4;
  --cyan-deep: #0978c9;
  --navy: #04101f;
  --navy-2: #071b31;
  --line: rgba(23, 170, 244, 0.54);
  --field: #f5f8fc;
  --shadow: rgba(0, 10, 24, 0.66);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Aptos Narrow", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(4, 16, 31, 0.72), rgba(4, 16, 31, 0.42)),
    radial-gradient(circle at 62% 12%, rgba(23, 170, 244, 0.2), transparent 32rem),
    var(--navy);
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 27, 49, 0.86), rgba(4, 16, 31, 0.92)),
    url("/assets/monkey-man-media-landing.png") center / cover no-repeat;
  opacity: 0.24;
}

body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 6px;
  opacity: 0.22;
}

.page-shell,
.success-page {
  position: relative;
  z-index: 1;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 44px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-art {
  width: 86px;
  height: 86px;
  object-fit: cover;
  object-position: 5% 6%;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px var(--shadow);
}

.eyebrow,
.panel-label,
.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  font-weight: 900;
}

.eyebrow {
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.9;
  color: var(--ink);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.24);
}

.brand-line {
  margin: 8px 0 0;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.86rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.hero-copy {
  padding-bottom: 24px;
}

.kicker {
  margin-bottom: 18px;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.9;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 9vw, 8.9rem);
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.26);
}

.intro {
  max-width: 660px;
  margin: 28px 0 0;
  font: 400 clamp(1.15rem, 2vw, 1.55rem) / 1.45 Georgia, serif;
  color: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 42px;
}

.proof-strip div {
  min-height: 110px;
  padding: 18px 16px;
  border-top: 3px solid var(--cyan);
  background: rgba(3, 15, 29, 0.5);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 1.1rem;
}

.proof-strip span {
  margin-top: 10px;
  color: var(--muted);
  font-family: Georgia, serif;
  line-height: 1.35;
}

.lead-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(145deg, rgba(6, 18, 34, 0.96), rgba(3, 12, 25, 0.9));
  box-shadow: 0 28px 70px var(--shadow), inset 0 0 48px rgba(23, 170, 244, 0.07);
}

.lead-panel h2 {
  margin-top: 8px;
  font-size: clamp(3.3rem, 6vw, 5.2rem);
  color: var(--cyan);
}

.panel-copy {
  margin: 14px 0 22px;
  color: var(--ink);
  font: 400 1.1rem / 1.45 Georgia, serif;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1rem;
}

input,
select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 7px;
  padding: 0 16px;
  background: var(--field);
  color: #1c2734;
  font: 400 1rem / 1.2 Georgia, serif;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(23, 170, 244, 0.45);
  outline-offset: 3px;
}

button {
  min-height: 64px;
  margin-top: 10px;
  border: 0;
  border-radius: 7px;
  color: var(--ink);
  background: linear-gradient(180deg, #20b7ff, #0789dc);
  box-shadow: 0 14px 34px rgba(2, 123, 201, 0.32);
  cursor: pointer;
  font: 950 1.35rem / 1 "Aptos Narrow", "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease;
}

button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.privacy {
  margin: 0;
  color: var(--muted);
  font: 400 0.94rem / 1.4 Georgia, serif;
}

.hidden {
  display: none;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.success-card {
  width: min(620px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 48px);
  background: rgba(4, 16, 31, 0.92);
  box-shadow: 0 28px 70px var(--shadow);
}

.success-card h1 {
  margin-top: 12px;
  font-size: clamp(3rem, 9vw, 5.8rem);
}

.success-card p:not(.eyebrow) {
  font: 400 1.2rem / 1.5 Georgia, serif;
  color: var(--muted);
}

.success-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero {
    gap: 30px;
  }

  .brand-art {
    width: 68px;
    height: 68px;
  }

  .brand-line {
    letter-spacing: 0.18em;
  }

  .hero-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.8rem);
  }

  .lead-panel {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 22px;
  }

  .brand {
    align-items: flex-start;
  }

  .eyebrow {
    font-size: 1.8rem;
  }

  .brand-line {
    font-size: 0.72rem;
  }

  .lead-panel h2 {
    font-size: 3rem;
  }

  button {
    font-size: 1.05rem;
  }
}
