:root {
  --orange: #ff7a1a;
  --orange-dark: #d85b00;
  --navy: #071633;
  --navy-soft: #10264d;
  --white: #ffffff;
  --light: #f8f9fb;
  --ink: #101827;
  --muted: #566176;
  --line: rgba(7, 22, 51, 0.14);
  --shadow: 0 22px 50px rgba(7, 22, 51, 0.18);
  font-family: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border: 2px solid var(--orange);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--navy);
  border: 3px solid var(--white);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.18);
}

.brand-name {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-weight: 800;
  font-size: 0.96rem;
}

.top-nav a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.58fr);
  grid-template-areas:
    "copy form"
    "prize prize";
  gap: clamp(1.1rem, 3vw, 2.2rem);
  min-height: 100svh;
  padding: clamp(6rem, 12vh, 8rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(7, 22, 51, 0.98) 0%, rgba(7, 22, 51, 0.93) 50%, rgba(255, 122, 26, 0.9) 100%),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 64px, var(--white) 64px 80px, var(--navy) 80px 144px);
}

.hero-copy {
  grid-area: copy;
  align-self: center;
  max-width: 840px;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 750px;
  margin: 0 0 1.1rem;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-text {
  max-width: 700px;
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.5vw, 1.26rem);
  font-weight: 600;
}

.hero-text.compact {
  color: rgba(255, 255, 255, 0.78);
}

.signup-panel {
  grid-area: form;
  align-self: center;
  background: var(--white);
  color: var(--navy);
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 4px solid var(--orange);
  box-shadow: 14px 14px 0 rgba(255, 122, 26, 0.24), var(--shadow);
}

.signup-panel h2,
.final-form h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.signup-form {
  display: grid;
  gap: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  border: 2px solid rgba(7, 22, 51, 0.22);
  border-radius: 0;
  padding: 0.8rem 0.85rem;
  color: var(--navy);
  background: #fbfcff;
  font: inherit;
  font-weight: 700;
}

input:focus {
  outline: 3px solid rgba(255, 122, 26, 0.35);
  border-color: var(--orange);
}

.cta-button {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  padding: 0.95rem 1rem;
  color: var(--navy);
  background: var(--orange);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 -4px 0 rgba(7, 22, 51, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  background: #ff8d3b;
  box-shadow: inset 0 -4px 0 rgba(7, 22, 51, 0.2), 0 12px 24px rgba(7, 22, 51, 0.18);
}

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

.navy-button:hover,
.navy-button:focus-visible {
  background: var(--navy-soft);
}

.form-note,
.legal-note,
.form-status {
  margin: 0;
}

.form-note {
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 900;
}

.legal-note {
  color: #4d596d;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.legal-note a {
  color: var(--navy);
  font-weight: 900;
}

.form-status {
  min-height: 1.2rem;
  color: #0b6b3a;
  font-size: 0.9rem;
  font-weight: 900;
}

.prize-showcase {
  grid-area: prize;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 0.8rem;
  height: clamp(250px, 28vh, 330px);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.prize-heading {
  display: grid;
  align-content: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--orange);
  border-right: 8px solid var(--navy);
}

.prize-heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.03;
}

.prize-heading p {
  margin: 0;
  font-weight: 800;
}

.prize-showcase img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center 72%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy);
}

.trust-strip p {
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  text-align: center;
}

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

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.section-heading h2,
.disclaimer h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.split-band {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps article,
.why-grid article,
.faq-list details {
  background: var(--white);
}

.steps article {
  min-height: 250px;
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.steps span {
  display: block;
  color: var(--orange);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 900;
}

.steps h3,
.why-grid h3 {
  margin: 1rem 0 0.7rem;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.steps p,
.why-grid p,
.faq-list p,
.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.disclaimer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  background: var(--navy);
}

.disclaimer h2,
.disclaimer p {
  color: var(--white);
}

.disclaimer p {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.benefits-band {
  background: var(--orange);
}

.benefits-band .kicker,
.final-cta .kicker {
  color: var(--navy);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(7, 22, 51, 0.22);
  border: 1px solid rgba(7, 22, 51, 0.22);
}

.benefit-list li {
  min-height: 110px;
  display: grid;
  align-content: center;
  padding: 1.3rem;
  background: var(--orange);
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
}

.why-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-grid article {
  min-height: 240px;
  padding: 1.35rem;
}

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

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 980px;
}

.faq-list details {
  border: 2px solid var(--line);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.8rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 1.2rem 1.2rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--orange);
}

.final-copy p:not(.kicker) {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
}

.final-form {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 14px 14px 0 rgba(7, 22, 51, 0.2);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1fr 0.8fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: var(--navy);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: var(--navy);
  }

  .top-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "prize";
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy {
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.6rem);
  }

  .hero-text.compact {
    display: none;
  }

  .signup-panel {
    align-self: start;
  }

  .prize-showcase,
  .disclaimer,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .prize-showcase {
    height: auto;
  }

  .prize-heading {
    border-right: 0;
    border-bottom: 8px solid var(--navy);
  }

  .steps,
  .benefit-list,
  .why-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    gap: 1rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .signup-panel,
  .final-form {
    box-shadow: 8px 8px 0 rgba(255, 122, 26, 0.24);
  }

  .final-form {
    box-shadow: 8px 8px 0 rgba(7, 22, 51, 0.2);
  }

  .legal-note {
    font-size: 0.7rem;
  }

  .prize-showcase img {
    min-height: 220px;
  }
}

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