:root {
  --bg: #ececec;
  --surface: #f8f8fa;
  --surface-strong: #ffffff;
  --text: #101828;
  --muted: #5c667a;
  --line: rgba(16, 24, 40, 0.1);
  --blue: #182c5b;
  --blue-soft: #243a77;
  --red: #641d28;
  --red-soft: #8d2b39;
  --gray: #8f949f;
  --gray-dark: #2b313d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 25, 40, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(24, 44, 91, 0.08), transparent 26%),
    radial-gradient(circle at left center, rgba(100, 29, 40, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f6f8 0%, #eceff3 100%);
  color: var(--text);
  font-family: "Barlow", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  background: rgba(246, 246, 248, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.05);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(24, 44, 91, 0.95), rgba(31, 35, 45, 0.96));
  box-shadow: var(--shadow);
}

.brand {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: var(--white);
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 92px;
  background:
    linear-gradient(135deg, rgba(12, 17, 28, 0.96), rgba(24, 44, 91, 0.95) 54%, rgba(100, 29, 40, 0.95) 100%);
  color: var(--white);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.35;
}

.hero-orb-left {
  left: -80px;
  top: 100px;
  width: 220px;
  height: 220px;
  background: rgba(141, 43, 57, 0.44);
}

.hero-orb-right {
  right: -90px;
  top: 60px;
  width: 260px;
  height: 260px;
  background: rgba(143, 148, 159, 0.28);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy .eyebrow {
  color: #f0b6bf;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  justify-items: center;
}

.product-stack {
  display: flex;
  align-items: end;
  gap: 18px;
}

.pack {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  width: 150px;
  min-height: 300px;
  padding: 28px 18px 20px;
  border-radius: 18px 18px 28px 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.pack::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.pack::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.pack strong,
.pack small,
.pack-kicker {
  position: relative;
  z-index: 1;
}

.pack strong {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: 0.92;
}

.pack small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.pack-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 800;
}

.pack-blue {
  background: linear-gradient(180deg, #27417f 0%, #182c5b 100%);
}

.pack-red {
  transform: translateY(18px);
  background: linear-gradient(180deg, #8d2b39 0%, #641d28 100%);
}

.pack-silver {
  width: 190px;
  min-height: 360px;
  background: linear-gradient(180deg, #c5c9d1 0%, #8f949f 100%);
  color: #1b2230;
}

.pack-silver small,
.pack-silver .pack-kicker {
  color: rgba(17, 24, 39, 0.85);
}

.section {
  padding: 92px 0;
}

.section-intro {
  padding: 56px 0 28px;
}

.intro-grid,
.benefits-grid,
.cta-box,
.footer-row {
  display: grid;
  gap: 28px;
}

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

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

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.light .eyebrow,
.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.product-grid,
.steps-grid,
.benefits-list {
  display: grid;
  gap: 22px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.step-card,
.benefit-card,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.product-card p,
.benefit-card p,
.step-card p,
.lead-form label,
.faq-list details p {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-card li {
  padding-left: 18px;
  position: relative;
  color: var(--gray-dark);
  font-weight: 600;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.product-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}

.product-card-blue .product-badge,
.product-card-blue li {
  color: var(--blue);
}

.product-card-red .product-badge,
.product-card-red li {
  color: var(--red);
}

.product-card-silver .product-badge,
.product-card-silver li {
  color: #5e6470;
}

.section-dark {
  background:
    radial-gradient(circle at right top, rgba(141, 43, 57, 0.18), transparent 26%),
    linear-gradient(135deg, #121827 0%, #1b2230 100%);
  color: var(--white);
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f0b6bf;
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.steps-grid .step-card p,
.steps-grid .step-card h3 {
  color: var(--white);
}

.benefits-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.benefits-copy {
  display: grid;
  gap: 18px;
}

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

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

.benefit-card {
  padding: 24px;
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.section-cta {
  background:
    linear-gradient(135deg, rgba(100, 29, 40, 0.08), rgba(24, 44, 91, 0.08)),
    linear-gradient(180deg, #f7f8fb, #eceff4);
}

.cta-box {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.cta-box > div {
  display: grid;
  gap: 16px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.5rem;
}

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

.faq-list details p {
  padding: 0 0 22px;
}

.site-footer {
  padding: 38px 0 44px;
  background: #141a24;
  color: rgba(255, 255, 255, 0.86);
}

.footer-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-row strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
}

.footer-row p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1040px) {
  .hero-grid,
  .intro-grid,
  .benefits-grid,
  .cta-box,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(17, 23, 35, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .product-stack {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pack-red {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    padding: 14px 16px;
    border-radius: 28px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 24px;
  }

  .pack,
  .pack-silver {
    width: 100%;
    max-width: 280px;
  }
}
