:root {
  --ink: #071f30;
  --muted: #667985;
  --paper: #f7fbfd;
  --white: #ffffff;
  --line: #dce8ef;
  --cyan: #24b7ea;
  --blue: #1479cf;
  --purple: #6848c7;
  --gold: #c59b42;
  --shadow: 0 28px 90px rgba(7, 31, 48, 0.16);
  --page-gutter: clamp(1rem, 4vw, 4rem);
  --section-space: clamp(3rem, 6vw, 5.5rem);
  --card-radius: clamp(20px, 2vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 0%, rgba(36, 183, 234, 0.22), transparent 30rem),
    radial-gradient(circle at 90% 10%, rgba(104, 72, 199, 0.16), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--paper) 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--page-gutter);
  border-bottom: 1px solid rgba(7, 31, 48, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(150px, 18vw, 190px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.header-link,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.header-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.hero,
.pitch-section,
.value-section,
.package-section,
.closing-section,
.contact-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  max-width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: var(--section-space) 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.22;
}

.hero-text,
.section-heading p,
.pitch-card p,
.benefit-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 68ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  max-width: 100%;
}

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--purple));
  box-shadow: 0 18px 44px rgba(20, 121, 207, 0.28);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.wide {
  width: 100%;
}

.direct-note {
  color: #385665;
  font-weight: 800;
}

.hero-visual {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 48, 0.1);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 900;
  object-fit: contain;
  object-position: center center;
}

.video-shell {
  overflow: hidden;
  border: 1px solid rgba(7, 31, 48, 0.1);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  padding: clamp(0.6rem, 1.2vw, 0.9rem);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--blue), var(--purple)) border-box;
}

.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  object-fit: contain;
  background: #071f30;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(68px, 10vw, 96px);
  height: clamp(68px, 10vw, 96px);
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(36, 183, 234, 0.94), rgba(20, 121, 207, 0.94) 48%, rgba(104, 72, 199, 0.94));
  box-shadow: 0 20px 52px rgba(7, 31, 48, 0.32);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.play-button:hover,
.play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 0.45rem;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid currentColor;
}

.video-shell.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.video-shell:not(.is-playing) .pitch-video {
  filter: saturate(1.04) contrast(1.02);
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: var(--muted);
}

.video-caption strong {
  color: var(--ink);
}

.value-section,
.pitch-section,
.package-section,
.closing-section,
.contact-section {
  padding: var(--section-space) 0;
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-grid article,
.package-card,
.pitch-card {
  border: 1px solid rgba(7, 31, 48, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(7, 31, 48, 0.08);
}

.benefit-grid article {
  padding: 1.25rem;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.package-card {
  padding: clamp(1.4rem, 4vw, 3rem);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 183, 234, 0.55), transparent 28rem),
    linear-gradient(135deg, #061d2d 0%, #0c3856 48%, #342278 100%);
}

.package-card .eyebrow {
  color: #a3eaff;
}

.package-card ul {
  margin: 0 0 2rem;
  padding-left: 1.2rem;
}

.package-card li + li {
  margin-top: 0.65rem;
}

.pitch-card,
.contact-form {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.mini-list span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #365764;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.closing-section {
  text-align: center;
}

.closing-section h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(7, 31, 48, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(7, 31, 48, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: #264858;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 183, 234, 0.22);
  border-color: var(--cyan);
}

.turnstile-wrap {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.turnstile-wrap .cf-turnstile {
  width: 100%;
}

.hidden-field {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--page-gutter);
  border-top: 1px solid rgba(7, 31, 48, 0.08);
  background: var(--white);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(7, 31, 48, 0.09);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card img {
  width: min(260px, 72vw);
  margin: 0 auto 2rem;
}

.thank-you-card h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.96;
}

.center-actions {
  justify-content: center;
}

@media (max-width: 960px) {
  .hero,
  .package-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: clamp(1.5rem, 5vw, 2.5rem);
  }

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

@media (max-width: 640px) {
  :root {
    --page-gutter: 1rem;
    --section-space: clamp(2.5rem, 12vw, 4rem);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }

  .brand img {
    width: clamp(190px, 62vw, 260px);
    max-width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.55rem;
  }

  .header-link,
  .header-cta {
    min-height: 48px;
    min-width: 0;
    padding: 0.65rem 0.75rem;
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    white-space: nowrap;
  }

  .header-cta,
  .header-link {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    letter-spacing: -0.04em;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-text,
  .direct-note {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-copy,
  .hero-text,
  .direct-note {
    min-width: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    border-radius: 24px;
  }

  .hero-visual img {
    object-fit: contain;
    object-position: center center;
  }

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

  .video-caption {
    display: block;
  }

  .video-frame {
    padding: 0.55rem;
  }

  .video-frame video {
    border-radius: 18px;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: min(230px, 100%);
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2rem);
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2rem);
  }
}
