:root {
  --navy: #071a35;
  --navy-2: #0c2d59;
  --blue: #1583ff;
  --blue-light: #eaf4ff;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --silver: #d9e2ee;
  --text: #132238;
  --muted: #5e6f84;
  --success: #0f7a4b;
  --error: #b42318;
  --shadow: 0 18px 45px rgba(7, 26, 53, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(7, 26, 53, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong { font-size: 0.98rem; }
.brand-copy small { color: #b8d5f7; font-size: 0.76rem; margin-top: 3px; }

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 64px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(21,131,255,.28), transparent 27%),
    linear-gradient(135deg, rgba(7,26,53,.98), rgba(12,45,89,.95)),
    var(--navy);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -110px;
  height: 220px;
  border-radius: 50%;
  border-top: 3px solid rgba(91,178,255,.42);
  box-shadow: 0 -24px 0 rgba(21,131,255,.07), 0 -48px 0 rgba(21,131,255,.045);
  pointer-events: none;
}

.hero-copy, .season-card { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #69b7ff; }

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 { line-height: 1.2; }

.hero-lead {
  max-width: 720px;
  color: #d7e5f5;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(21,131,255,.28);
}

.secondary {
  color: var(--white);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.24);
}

.microcopy {
  margin: 14px 0 0;
  color: #acc3db;
  font-size: 0.9rem;
}

.season-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.season-logo {
  display: block;
  width: min(250px, 82%);
  max-height: 210px;
  margin: 0 auto 24px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
}

.season-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.season-card-top span { color: #b7cbe0; }
.season-card-top strong { color: #69b7ff; }

.season-card dl { margin: 10px 0 0; }
.season-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.season-card dl div:last-child { border-bottom: 0; }
.season-card dt { color: #a9bed4; }
.season-card dd { margin: 0; font-weight: 800; text-align: right; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -42px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.feature-strip div {
  min-height: 156px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-right: 0;
}

.feature-strip div:first-child { border-radius: 18px 0 0 18px; }
.feature-strip div:last-child { border-right: 1px solid var(--silver); border-radius: 0 18px 18px 0; }
.feature-strip strong, .feature-strip span { display: block; }
.feature-strip strong { color: var(--navy-2); line-height: 1.3; margin-bottom: 8px; }
.feature-strip span { color: var(--muted); font-size: 0.9rem; }

.content-section,
.form-section,
.social-section,
.faq-section,
.pricing-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:last-child, .form-intro > p { color: var(--muted); font-size: 1.06rem; }

.contact-note {
  padding: 15px 17px;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: var(--blue-light);
}

.contact-note a {
  color: var(--navy-2);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.detail-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--silver);
  border-radius: 18px;
  background: var(--off-white);
}

.detail-card .number {
  display: inline-block;
  margin-bottom: 56px;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.8rem;
}

.detail-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.2rem; }
.detail-card p { color: var(--muted); margin-bottom: 0; }

.pricing-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .7fr);
  align-items: center;
  gap: 50px;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: var(--blue-light);
}

.pricing-section > div:first-child { max-width: 690px; }
.pricing-section p { color: var(--muted); }

.pricing-card {
  padding: 32px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.pricing-card span, .pricing-card strong, .pricing-card small { display: block; }
.pricing-card span { color: #a8c4e4; font-weight: 800; }
.pricing-card strong { margin: 9px 0 7px; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; }
.pricing-card small { color: #c7d8ea; }

.form-section {
  display: grid;
  grid-template-columns: .8fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--silver);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.form-card {
  padding: 30px;
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

label > span[aria-hidden="true"] { color: var(--error); }

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bccadb;
  border-radius: 10px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-weight: 500;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,131,255,.12);
}

.full-width { grid-column: 1 / -1; }

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}

.consent input { margin-top: 4px; }

.submit-button {
  width: 100%;
  margin-top: 24px;
}

.form-status {
  min-height: 28px;
  margin: 14px 0 0;
  text-align: center;
  font-weight: 800;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: 56px;
  align-items: center;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy-2);
}

.social-section h2 { max-width: 700px; }
.social-section p { color: #c8d9ec; }
.social-section .eyebrow { color: #69b7ff; }

.social-actions {
  display: grid;
  gap: 13px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  transition: transform .18s ease, background .18s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
}

.social-link span {
  color: #9fc1e6;
  font-weight: 800;
}

.social-link strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.faq-section { padding-top: 40px; }
.compact { margin-bottom: 28px; }

.faq-list {
  border-top: 1px solid var(--silver);
}

details {
  padding: 22px 0;
  border-bottom: 1px solid var(--silver);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.06rem;
}

details p {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--muted);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  padding: 44px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

footer > div:first-child {
  display: flex;
  flex-direction: column;
}

footer span, footer small { color: #a9bfd8; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #d6e8fb; font-weight: 800; }
footer small { grid-column: 1 / -1; }

@media (max-width: 940px) {
  .hero, .form-section, .pricing-section, .social-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 42px; padding-top: 76px; }
  .feature-strip { grid-template-columns: 1fr 1fr; margin-top: 0; padding-top: 24px; }
  .feature-strip div { border-right: 1px solid var(--silver); border-radius: 0 !important; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .form-intro { position: static; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 16px; }
  .brand-copy small { display: none; }
  .brand-copy strong { max-width: 190px; font-size: .82rem; }
  .brand-logo { width: 46px; height: 46px; }
  .header-cta { display: none; }
  .hero { padding: 62px 18px 76px; }
  h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .feature-strip { grid-template-columns: 1fr; padding: 0 18px; }
  .feature-strip div { min-height: auto; }
  .content-section, .form-section, .social-section, .faq-section, .pricing-section { padding: 76px 18px; }
  .details-grid, .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .detail-card { min-height: 220px; }
  .detail-card .number { margin-bottom: 36px; }
  .form-card { padding: 22px 18px; }
  .social-actions { min-width: 0; }
  .social-link { align-items: flex-start; flex-direction: column; gap: 3px; }
  .social-link strong { text-align: left; }
  footer { grid-template-columns: 1fr; padding: 38px 18px; }
  footer small { grid-column: auto; }
}
