:root {
  --azul-profundo: #0a2e5d;
  --azul-claro: #1f5ca8;
  --oro: #d4af37;
  --app-height: 100dvh;
  --oro-suave: #f0d987;
  --blanco: #f8fafc;
  --texto: #10223a;
  --sombra: 0 18px 45px rgba(10, 46, 93, 0.2);
  --radio: 20px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  background: #ecf4ff;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100svh;
  min-height: var(--app-height, 100dvh);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--texto);
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 175, 55, 0.22) 0, transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(31, 92, 168, 0.24) 0, transparent 35%),
    linear-gradient(160deg, #ffffff 0%, #f6faff 45%, #ecf4ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.35;
}

.shape-gold {
  width: 290px;
  height: 290px;
  background: var(--oro-suave);
  top: 5%;
  left: -75px;
  animation: floatY 11s ease-in-out infinite;
}

.shape-blue {
  width: 360px;
  height: 360px;
  background: #8ab5f0;
  right: -120px;
  top: 18%;
  animation: floatY 13s ease-in-out infinite reverse;
}

.shape-light {
  width: 230px;
  height: 230px;
  background: #ffffff;
  right: 20%;
  bottom: 4%;
  animation: floatY 10s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 46, 93, 0.09);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--azul-profundo);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-logo {
  width: 132px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  padding: 4px 6px;
  background: linear-gradient(145deg, rgba(6, 25, 58, 0.9), rgba(10, 36, 80, 0.82));
  border: 1px solid rgba(120, 177, 255, 0.42);
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--azul-profundo);
  font-weight: 600;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--oro);
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--azul-profundo);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.hero {
  min-height: var(--app-height, 100dvh);
  padding: 88px 0 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: var(--azul-claro);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  line-height: 1.15;
  color: var(--azul-profundo);
}

.hero h1 span {
  color: #0d4f99;
}

.hero-copy p {
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.85);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--azul-profundo), var(--azul-claro));
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 46, 93, 0.28);
}

.btn-outline {
  border: 1px solid rgba(10, 46, 93, 0.25);
  color: var(--azul-profundo);
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(31, 92, 168, 0.2);
  border-radius: var(--radio);
  padding: 26px 24px;
  box-shadow: var(--sombra);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--azul-profundo);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.4rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--azul-claro);
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding: 76px 0;
}

.section-heading h2,
.method h2,
.deep h2 {
  margin-top: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  color: var(--azul-profundo);
}

.route {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(214, 230, 251, 0.48) 100%
  );
}

.steps-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10, 46, 93, 0.1);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(9, 42, 84, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--oro), #e5c154);
  color: #fff;
  font-weight: 700;
}

.step-card h3 {
  margin: 14px 0 8px;
  color: var(--azul-profundo);
}

.method-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: linear-gradient(130deg, var(--oro), #f2dc95);
}

.stats {
  display: grid;
  gap: 14px;
}

.stat-item {
  border-radius: 15px;
  background: #fff;
  border: 1px solid rgba(31, 92, 168, 0.14);
  padding: 22px;
  box-shadow: 0 9px 22px rgba(10, 46, 93, 0.08);
}

.stat-item strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.05rem;
  color: var(--azul-profundo);
}

.deep {
  position: relative;
}

.deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 46, 93, 0.92), rgba(25, 88, 157, 0.9));
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  z-index: -1;
}

.deep-content {
  color: #fff;
  text-align: center;
}

.deep-content .eyebrow {
  color: var(--oro-suave);
}

.deep-content h2 {
  color: #fff;
}

.deep-content p {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.site-footer {
  background: #081f3e;
  color: #d8e6ff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.site-footer h3 {
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-size: 0.9rem;
}

.contact-form input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form input::placeholder {
  color: rgba(226, 236, 255, 0.75);
}

.contact-form .btn {
  margin-top: 8px;
  width: fit-content;
}

.copyright {
  margin: 36px 0 0;
  padding: 16px 10px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(227, 237, 255, 0.82);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 980px) {
  .hero,
  .method-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 68px;
  }

  .brand span {
    font-size: 0.87rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    right: 4%;
    top: 78px;
    width: min(280px, 90vw);
    background: #ffffff;
    border: 1px solid rgba(10, 46, 93, 0.12);
    border-radius: 12px;
    box-shadow: var(--sombra);
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu li + li {
    border-top: 1px solid rgba(10, 46, 93, 0.08);
  }

  .menu a {
    display: block;
    padding: 13px 14px;
  }

  .menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 58px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Brutal visual upgrade: azul dominante, brillo dorado y efecto premium */
:root {
  --azul-noche: #030a17;
  --azul-electrico: #1b74ff;
  --azul-brillo: #64acff;
}

body {
  color: #d7e8ff;
  background:
    radial-gradient(circle at 12% 0%, rgba(27, 116, 255, 0.32) 0, transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(100, 172, 255, 0.24) 0, transparent 36%),
    linear-gradient(155deg, #01040b 0%, #041027 38%, #061734 70%, #051125 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent 95%, rgba(116, 168, 255, 0.08) 100%),
    linear-gradient(90deg, transparent 95%, rgba(116, 168, 255, 0.08) 100%);
  background-size: 60px 60px;
  opacity: 0.2;
  z-index: -2;
  animation: gridMove 24s linear infinite;
}

.site-header {
  background: rgba(2, 8, 24, 0.7);
  border-bottom: 1px solid rgba(87, 153, 255, 0.28);
}

.brand {
  color: #e7f0ff;
}

.brand-logo {
  box-shadow:
    0 0 0 1px rgba(255, 217, 138, 0.3),
    0 0 22px rgba(67, 142, 255, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.42);
}

.menu a {
  color: #deecff;
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn-nav {
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.btn-login {
  border: 1px solid rgba(116, 168, 255, 0.48);
  background: rgba(8, 25, 56, 0.65);
  color: #dbeafe;
}

.btn-register {
  background: linear-gradient(120deg, #c49428, #f0cf73);
  color: #20283a;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.hero {
  position: relative;
  min-height: 78vh;
  align-items: stretch;
}

.hero::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 12%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 145, 255, 0.34) 0, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero h1 {
  color: #f6f9ff;
  text-shadow: 0 6px 30px rgba(26, 104, 230, 0.35);
}

.hero h1 span {
  color: #8ec5ff;
}

.hero-copy p {
  color: #bfd9ff;
}

.hero-tags {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tags span {
  border: 1px solid rgba(116, 168, 255, 0.35);
  background: rgba(7, 27, 61, 0.58);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(120deg, #0f43a6, #2f8cff);
  box-shadow: 0 12px 30px rgba(43, 127, 255, 0.38);
}

.btn-outline {
  border: 1px solid rgba(130, 180, 255, 0.48);
  color: #deedff;
  background: rgba(9, 24, 50, 0.58);
}

.btn-glow {
  background: linear-gradient(120deg, #d4a11f, #ffdf8a);
  color: #19243a;
  box-shadow: 0 0 0 1px rgba(255, 226, 157, 0.4), 0 12px 24px rgba(231, 177, 40, 0.4);
}

.btn-glow:hover,
.btn-glow:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 230, 170, 0.55), 0 0 36px rgba(240, 197, 89, 0.45);
}

.hero-card {
  position: relative;
  background: linear-gradient(170deg, rgba(5, 20, 48, 0.9), rgba(7, 31, 72, 0.88));
  border: 1px solid rgba(109, 164, 255, 0.36);
  box-shadow: 0 24px 60px rgba(1, 8, 22, 0.6);
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.hero-card h2,
.hero-card li,
.hero-card-sub {
  color: #ecf4ff;
}

.hero-card-sub {
  margin-top: -3px;
  margin-bottom: 13px;
  font-size: 0.96rem;
  color: #9dc9ff;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(111, 168, 255, 0.7), rgba(212, 175, 55, 0.65));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-pills span {
  background: rgba(101, 163, 255, 0.2);
  color: #cde4ff;
  border: 1px solid rgba(133, 184, 255, 0.35);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.77rem;
}

.hero-audio {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(133, 184, 255, 0.34);
  background: rgba(8, 27, 60, 0.55);
}

.hero-audio-label {
  margin: 0 0 8px;
  font-weight: 700;
  color: #d7e9ff;
  letter-spacing: 0.02em;
}

.hero-audio audio {
  width: 100%;
}

.text-link {
  color: #8ec5ff;
}

.impact-band {
  margin: 8px 0 24px;
}

.impact-grid {
  border-radius: 22px;
  border: 1px solid rgba(103, 163, 255, 0.3);
  background: linear-gradient(130deg, rgba(3, 18, 44, 0.95), rgba(6, 36, 87, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.impact-grid article {
  border-radius: 14px;
  background: rgba(10, 45, 102, 0.45);
  border: 1px solid rgba(119, 173, 255, 0.28);
  padding: 16px;
}

.impact-grid h3 {
  color: #ecf4ff;
  margin: 0 0 8px;
}

.impact-grid p {
  color: #bdd9ff;
  margin: 0;
}

.testimonials-grid {
  margin-top: 8px;
}

.testimonials-grid .testimonial-card {
  position: relative;
  padding: 18px 18px 20px;
  background:
    radial-gradient(circle at 88% 14%, rgba(251, 216, 136, 0.14) 0, transparent 32%),
    linear-gradient(150deg, rgba(8, 33, 76, 0.72), rgba(10, 47, 106, 0.48));
}

.testimonials-grid .testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.5rem;
  color: rgba(240, 205, 122, 0.5);
  line-height: 1;
}

.testimonials-grid .testimonial-card h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.testimonial-origin {
  color: #8fc5ff;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonial-quote {
  color: #d4e8ff;
  line-height: 1.72;
  font-size: 0.98rem;
}

.resource-pro-card {
  margin: 8px 0 24px;
  border-radius: 24px;
  border: 1px solid rgba(116, 174, 255, 0.34);
  background:
    radial-gradient(circle at 10% 10%, rgba(119, 178, 255, 0.22) 0, transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(241, 206, 120, 0.16) 0, transparent 36%),
    linear-gradient(140deg, rgba(4, 19, 46, 0.96), rgba(7, 39, 92, 0.9));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
  padding: clamp(1rem, 2.4vw, 2rem);
  text-align: center;
}

.resource-pro-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  color: #8fc5ff;
  font-weight: 700;
}

.resource-pro-card h3 {
  margin: 10px auto 12px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.14;
  color: #f2f7ff;
  max-width: 20ch;
}

.resource-pro-card p {
  margin: 0 auto;
  max-width: 66ch;
  color: #c5defe;
  line-height: 1.8;
  font-size: clamp(0.98rem, 1.4vw, 1.14rem);
}

.resource-pro-card .btn {
  margin-top: 18px;
  min-width: 240px;
  min-height: 50px;
}

.route,
.method {
  background: transparent;
}

.section-heading h2,
.method h2,
.deep h2,
.step-card h3,
.stat-item strong {
  color: #eef5ff;
}

.step-card,
.stat-item {
  background: linear-gradient(150deg, rgba(6, 22, 53, 0.92), rgba(8, 36, 82, 0.84));
  border: 1px solid rgba(96, 154, 245, 0.3);
  color: #cae2ff;
  box-shadow: 0 12px 28px rgba(1, 8, 22, 0.35);
}

.step-card p,
.method-copy p,
.feature-list li,
.stat-item span {
  color: #b7d5fb;
}

.deep::before {
  background:
    radial-gradient(circle at 16% 22%, rgba(88, 159, 255, 0.35) 0, transparent 25%),
    linear-gradient(135deg, rgba(2, 17, 44, 0.95), rgba(10, 59, 134, 0.96));
}

.deep-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: linear-gradient(180deg, #031025 0%, #020a17 100%);
  border-top: 1px solid rgba(109, 164, 255, 0.24);
}

.site-footer .footer-grid {
  align-items: start;
}

.impact-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.impact-badges span {
  border: 1px solid rgba(137, 188, 255, 0.3);
  background: rgba(9, 30, 67, 0.58);
  color: #cfe4ff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.impact-stage {
  border: 1px solid rgba(122, 179, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(6, 21, 48, 0.92), rgba(8, 31, 72, 0.88));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.impact-visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
  padding: 12px;
}

.impact-visual-card {
  min-height: 134px;
  border-radius: 14px;
  border: 1px solid rgba(132, 185, 255, 0.35);
  background:
    radial-gradient(circle at 20% 20%, rgba(117, 177, 255, 0.28) 0, transparent 48%),
    linear-gradient(140deg, rgba(5, 27, 61, 0.95), rgba(9, 45, 101, 0.86));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.impact-visual-card-main {
  min-height: 180px;
}

.impact-visual-card img {
  width: min(100%, 260px);
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.impact-visual-card-main img {
  max-height: 132px;
}

.impact-cta-panel {
  padding: 6px 16px 16px;
}

.impact-kicker {
  margin: 0;
  color: #8fc5ff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  font-weight: 700;
}

.impact-cta-panel h4 {
  margin: 8px 0 10px;
  font-size: 1.2rem;
  color: #f3f8ff;
  font-family: "Cinzel", Georgia, serif;
}

.impact-cta-panel p {
  margin: 0;
  color: #bddcff;
  line-height: 1.6;
}

.impact-cta-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.impact-return-link {
  margin-top: 14px;
  display: inline-block;
  color: #9fd0ff;
}

.final-access-screen {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: max(84px, env(safe-area-inset-top)) 0 max(34px, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 20% 12%, rgba(93, 162, 255, 0.28) 0, transparent 38%),
    radial-gradient(circle at 80% 16%, rgba(240, 202, 115, 0.22) 0, transparent 44%),
    linear-gradient(180deg, #020a17 0%, #04112a 60%, #020914 100%);
}

.final-access-wrap {
  text-align: center;
  max-width: 1040px;
  padding: clamp(1.3rem, 2vw, 2rem);
  border-radius: 28px;
  border: 1px solid rgba(124, 182, 255, 0.3);
  background:
    radial-gradient(circle at 50% -10%, rgba(137, 188, 255, 0.2) 0, transparent 45%),
    linear-gradient(160deg, rgba(4, 16, 39, 0.9), rgba(4, 20, 48, 0.82));
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(188, 221, 255, 0.18);
}

.final-access-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.final-logo {
  width: min(52vw, 230px);
  max-height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.52));
}

.final-logo-main {
  width: min(66vw, 380px);
  max-height: 148px;
}

.final-access-kicker {
  margin: 0;
  color: #8fc5ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
}

.final-access-wrap h3 {
  margin: 12px auto 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.95rem, 4.6vw, 3.3rem);
  color: #f2f7ff;
  line-height: 1.12;
  max-width: 18ch;
  text-shadow: 0 10px 24px rgba(26, 101, 211, 0.28);
}

.final-access-copy {
  margin: 0 auto;
  color: #c2ddff;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  max-width: 58ch;
  line-height: 1.8;
}

.final-access-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.final-access-actions .btn {
  min-width: 220px;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 0.95rem;
}

.contact-form input {
  border: 1px solid rgba(138, 186, 255, 0.28);
  background: rgba(8, 30, 69, 0.62);
}

.shape-blue-2 {
  width: 240px;
  height: 240px;
  background: rgba(32, 127, 255, 0.5);
  left: 24%;
  top: 64%;
  animation: floatY 14s ease-in-out infinite;
}

.shape-gold-2 {
  width: 180px;
  height: 180px;
  background: rgba(240, 209, 126, 0.35);
  right: 12%;
  top: 58%;
  animation: floatY 12s ease-in-out infinite reverse;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}

@media (max-width: 980px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 104px;
    height: 44px;
  }

  .nav-cta {
    display: none;
  }

  .final-access-wrap {
    max-width: 900px;
  }

  .final-logo-main {
    width: min(72vw, 330px);
    max-height: 128px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero::after {
    width: 220px;
    height: 220px;
    right: -40px;
    top: 8%;
  }
}

.verse-card {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(120, 176, 255, 0.35);
  background: linear-gradient(135deg, rgba(5, 21, 50, 0.74), rgba(9, 35, 79, 0.64));
}

.verse-card p {
  margin: 0;
  color: #e8f2ff;
  font-weight: 600;
  line-height: 1.6;
}

.verse-card cite {
  display: block;
  margin-top: 8px;
  color: #bcd8ff;
  font-size: 0.92rem;
  font-style: normal;
}

.verse-card-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(239, 219, 159, 0.45);
}

.section-heading > p:not(.eyebrow) {
  color: #bfd9ff;
  max-width: 74ch;
  line-height: 1.75;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  min-width: 42px;
  width: auto;
  padding: 0 10px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(96%, 640px);
  }

  .hero {
    text-align: center;
    gap: 20px;
    padding: 54px 0 44px;
  }

  .hero-copy p,
  .section-heading > p:not(.eyebrow),
  .deep-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-tags,
  .hero-actions,
  .deep-actions {
    justify-content: center;
  }

  .hero-card,
  .step-card,
  .stat-item,
  .impact-grid article {
    text-align: center;
  }

  .hero-card ul,
  .feature-list,
  .contact-form {
    text-align: left;
  }

  .impact-grid {
    padding: 14px;
    border-radius: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .menu {
    width: min(340px, 92vw);
    right: 4%;
  }

  .contact-form .btn {
    width: 100%;
  }

  .impact-visual-grid {
    grid-template-columns: 1fr;
  }

  .impact-visual-card,
  .impact-visual-card-main {
    min-height: 118px;
  }

  .impact-cta-actions .btn {
    width: 100%;
  }

  .resource-pro-card {
    border-radius: 18px;
    padding: 1rem 0.9rem;
  }

  .resource-pro-card h3 {
    font-size: clamp(1.4rem, 7vw, 1.95rem);
    max-width: 16ch;
  }

  .resource-pro-card p {
    max-width: 34ch;
    line-height: 1.7;
  }

  .resource-pro-card .btn {
    width: 100%;
    min-width: 0;
  }

  .testimonial-quote {
    font-size: 0.96rem;
  }

  .final-access-screen {
    min-height: 92vh;
    padding-top: max(64px, env(safe-area-inset-top));
  }

  .final-access-wrap {
    border-radius: 22px;
    padding: 1.15rem 1rem;
  }

  .final-logo-main {
    width: min(78vw, 300px);
    max-height: 116px;
  }

  .final-access-wrap h3 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .final-access-copy {
    font-size: 1rem;
    max-width: 34ch;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 92px;
    height: 40px;
  }

  .brand span {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .btn,
  .btn-nav {
    padding: 11px 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .step-card,
  .hero-card,
  .stat-item {
    padding: 16px;
  }

  .copyright {
    font-size: 0.84rem;
  }

  .final-access-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 0.92rem;
  }

  .final-access-wrap {
    border-radius: 18px;
    padding: 1rem 0.78rem;
  }

  .final-logo-main {
    width: min(88vw, 280px);
    max-height: 108px;
  }

  .final-access-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .final-access-wrap h3 {
    font-size: clamp(1.45rem, 8.6vw, 1.9rem);
    max-width: 16ch;
  }

  .final-access-copy {
    font-size: 0.96rem;
    line-height: 1.68;
    max-width: 31ch;
  }

  .resource-pro-kicker {
    font-size: 0.7rem;
  }

  .testimonials-grid .testimonial-card {
    padding: 15px 14px 16px;
  }
}
