:root {
  font-family: "Poppins", system-ui, sans-serif;
  font-size:15px;
  color: #0f172a;
  background-color: #fefefe;
  --bg: #fefefe;
  --muted: #5c6471;
  --border: #e6e9ef;
  --shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at 5% 20%, rgba(37, 99, 235, 0.15), transparent 40%),
    radial-gradient(circle at 95% 5%, rgba(245, 158, 11, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}


.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
  perspective: 1400px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.hero--inactive {
  pointer-events: none;
  z-index: 0;
}

.floating-nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 320px;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 20;
}

.floating-nav.visible {
  transform: translate(-50%, 1rem);
  opacity: 1;
  pointer-events: auto;
}

.floating-nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
}

.floating-nav__logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.floating-nav__items {
  display: flex;
  gap: 0.75rem;
}

.floating-nav__items a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
}

.floating-nav__items a i {
  font-size: 1rem;
  color: #111827;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.6;
  animation: glow-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero__glow--one {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 60%);
  top: -120px;
  right: -80px;
}

.hero__glow--two {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 60%);
  bottom: -90px;
  left: -100px;
  animation-duration: 9s;
}

.hero__content {
  max-width: 640px;
  z-index: 1;
  opacity: calc(1 - var(--scroll-progress));
  transform-origin: center;
  transform: translateZ(calc(var(--scroll-progress) * 40px))
      scale(calc(1 + var(--scroll-progress) * 0.6))
      translateY(calc(-10px + var(--scroll-progress) * 60px));
  transition: opacity 0.25s ease, transform 0.25s ease;
}
 
.hero__logo,
.hero__strap,
.hero__heading,
.hero__lead,
.hero__hurricane {
  opacity: 0;
  transform: translateY(-12px);
  animation: hero-sequence 0.5s ease forwards;
  animation-fill-mode: both;
  will-change: opacity, transform;
}

.hero__logo {
  animation-delay: 0s;
}

.hero__strap {
  animation-delay: 0.25s;
}

.hero__heading {
  animation-delay: 0.5s;
}

.hero__hurricane {
  animation-delay: 0.65s;
}

.hero__lead {
  animation-delay: 0.8s;
}

.hero__logo {
  width: 88px;
  margin-bottom: 1.5rem;
}

.hero__strap {
  font-size: 0.95rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero__heading {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
  display: inline-block;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.hero__hurricane {
  font-family: "Hurricane", cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
}

.hero__arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.hero__arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #111827;
  border-right: 2px solid #111827;
  transform: rotate(45deg);
  animation: arrow-pulse 1.5s ease infinite;
}

.pricing {
  padding: 4rem clamp(1.5rem, 4vw, 4rem) 5rem;
  background: #fdfdfd;
  margin-top: 100vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing__intro {
  max-width: 840px;
  margin: 0 auto 4rem;
}

.pricing__intro .eyebrow,
.pricing__intro h2,
.pricing__intro .pricing__sub {
  opacity: 0;
  transform: translateY(-25px);
}

.pricing[data-progress] .pricing__intro .eyebrow {
  opacity: clamp((var(--pricing-progress, 0) - 0.18) * 3, 0, 1);
  transform: translateY(calc(-25px * (1 - clamp((var(--pricing-progress, 0) - 0.18) * 3, 0, 1))));
}

.pricing[data-progress] .pricing__intro h2 {
  opacity: clamp((var(--pricing-progress, 0) - 0.26) * 3, 0, 1);
  transform: translateY(calc(-25px * (1 - clamp((var(--pricing-progress, 0) - 0.26) * 3, 0, 1))));
}

.pricing[data-progress] .pricing__intro .pricing__sub {
  opacity: clamp((var(--pricing-progress, 0) - 0.38) * 3, 0, 1);
  transform: translateY(calc(-25px * (1 - clamp((var(--pricing-progress, 0) - 0.38) * 3, 0, 1))));
}

.pricing__intro h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.pricing__sub {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__card {
  border-radius: 20px;
  background: #fff;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.pricing__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.pricing__card--featured {
  border-color: rgba(15, 23, 42, 0.08);
  background: #fbfbfd;
}

.pricing__card--accent {
  border-color: rgba(15, 23, 42, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  position: relative;
}

.pricing__details {
  display: grid;
  font-size: 0.95rem;
  color: #0f172a;
}

.pricing__details {
  opacity: 0;
  transition: opacity 0.35s ease;
  transition-delay: 1s;
}
.pricing__details p {
  margin:0 !important;
}
.section-load.is-visible .pricing__details {
  opacity: 1;
}

.pricing__details strong {
  font-weight: 600;
}

.primary,
.ghost {
  border-radius: 999px;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  font-family: "Poppins", system-ui, sans-serif;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: #111827;
  color: #fff;
}

.ghost {
  background: #f4f5f7;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.primary:hover,
.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.2);
}

.pricing__button {
  margin-top: 0.75rem;
}

.pricing[data-progress] .pricing__card {
  --card-offset: calc(1 - var(--card-threshold, 0.6));
  --card-progress: clamp(
    (var(--pricing-progress, 0) - var(--card-threshold, 0.6)) / var(--card-offset),
    0,
    1
  );
  --label-progress: clamp((var(--card-progress, 0) - 0.55) * 3, 0, 1);
  --value-progress: clamp((var(--card-progress, 0) - 0.68) * 3, 0, 1);
  --meta-progress: clamp((var(--card-progress, 0) - 0.73) * 3, 0, 1);
  --details-progress: clamp((var(--card-progress, 0) - 0.78) * 4, 0, 1);
  --button-progress: clamp((var(--card-progress, 0) - 0.83) * 4, 0, 1);
  opacity: var(--card-progress);
  transform: translateY(calc(30px * (1 - var(--card-progress))));
}

.pricing__card > *:not(.pricing__label):not(.pricing__tag) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pricing__heading {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing__value {
  opacity: 0;
  transform: translateY(10px);
}

.pricing__meta {
  opacity: 0;
  transform: translateY(10px);
}

.pricing__details {
  opacity: 0;
  transform: translateY(10px);
}

.pricing__button {
  opacity: 0;
  transform: translateY(10px);
}

.pricing[data-progress] .pricing__card .pricing__heading {
  opacity: var(--label-progress);
  transform: translateY(calc(8px * (1 - var(--label-progress))));
}

.pricing[data-progress] .pricing__card .pricing__value {
  opacity: var(--value-progress);
  transform: translateY(calc(10px * (1 - var(--value-progress))));
}

.pricing[data-progress] .pricing__card .pricing__meta {
  opacity: var(--meta-progress);
  transform: translateY(calc(10px * (1 - var(--meta-progress))));
}

.pricing[data-progress] .pricing__card .pricing__details {
  opacity: var(--details-progress);
  transform: translateY(calc(10px * (1 - var(--details-progress))));
}

.pricing[data-progress] .pricing__card .pricing__button {
  opacity: var(--button-progress);
  transform: translateY(calc(10px * (1 - var(--button-progress))));
}

.pricing__card:nth-child(1) {
  --card-threshold: 0.6;
}

.pricing__card:nth-child(2) {
  --card-threshold: 0.72;
}

.pricing__card:nth-child(3) {
  --card-threshold: 0.84;
}


.section-load {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing__card--ghost {
  background: #f7f8fb;
  border-style: dashed;
  color: var(--muted);
}

.pricing__label {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  margin:0 !important;
}

.pricing__tag {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  line-height: 1;
  margin:0 !important;
  margin-top:8px !important;
}

.pricing__tag--pill {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  color: #0f172a;
  letter-spacing: 0.1rem;
}

.pricing__value {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
}

.pricing__value span {
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 0.35rem;
  color: #6b7280;
}

.pricing__meta {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.pricing__button {
  margin-top: 0.75rem;
  width: 100%;
}

.pricing__details {
  padding-top: 0.25rem;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: #0f172a;
}

.pricing__list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.pricing__list li::before {
  content: "\e182";
  font-family: "Phosphor";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  position: absolute;
  left: 0.25rem;
  top: 0.05rem;
  font-size: 1.05rem;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.persona {
  padding: 4rem clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 255, 0.6));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.persona__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 1.25rem;
}

.persona__label {
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  margin: 0;
}

.persona__content h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.persona__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.persona__grid article {
  background: rgba(15, 23, 42, 0.02);
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.persona__grid h4 {
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.65rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.persona__grid ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.persona__outcome {
  font-weight: 600;
  color: #0f111b;
  margin: 0;
}

.persona__plan {
  margin: 0;
  color: var(--muted);
}
.persona__plan a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.4);
}
.persona__plan a:hover {
  border-bottom-color: #2563eb;
}

.legacy {
  padding: 4rem clamp(1.5rem, 4vw, 4rem);
  background: #f6f7fb;
}

.legacy__intro {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.legacy__intro h2 {
  margin: 0.35rem 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.legacy__intro p {
  color: var(--muted);
  line-height: 1.7;
}

.legacy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.legacy {
  position: relative;
}

.legacy__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.legacy[data-progress] .legacy__card {
  --legacy-progress-adjusted: clamp(
    (var(--legacy-progress, 0) - var(--card-threshold, 0.4)) * 2.5,
    0,
    1
  );
  opacity: var(--legacy-progress-adjusted);
  transform: translateY(calc(30px * (1 - var(--legacy-progress-adjusted))));
}

.legacy__card:nth-child(1) {
  --card-threshold: 0.4;
}

.legacy__card:nth-child(2) {
  --card-threshold: 0.52;
}

.legacy__card:nth-child(3) {
  --card-threshold: 0.64;
}
.legacy__card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.legacy__card h3 {
  font-size: 1.1rem;
  margin-top: 0;
}

.legacy__card p {
  color: var(--muted);
  line-height: 1.6;
}

.legacy__card ul,
.legacy__card ol {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
  color: #0f172a;
  line-height: 1.7;
}

.legacy__card ol {
  counter-reset: steps;
}

.legacy__card ol li {
  margin-bottom: 0.35rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 1rem 0.75rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

th {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

td:nth-child(n + 2) {
  font-weight: 500;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: none;
}

@keyframes hero-sequence {
  0% {
    opacity: 0;
    transform: translateY(-14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrow-pulse {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(10px) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
}

@keyframes glow-drift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    transform: translateY(-20px) translateX(15px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .hero__content {
    max-width: 90vw;
  }

  .hero__glow--one,
  .hero__glow--two {
    width: 220px;
    height: 220px;
  }

  .hero__glow--one {
    top: -70px;
    right: -40px;
  }

  .hero__glow--two {
    bottom: -70px;
    left: -60px;
  }

  th,
  td {
    padding: 0.9rem 0.6rem;
  }

  .bundles__table {
    padding: 1.25rem;
  }
}
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #111827;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 22;
}

.back-to-top i {
  font-size: 1.4rem;
  color: #fff;
  display: block;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


.cta {
  padding: 4rem clamp(1.5rem, 4vw, 4rem) 4.5rem;
  background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #0f172a;
  color: #fff;
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

.cta__copy h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.cta__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta__actions {
  display: grid;
  align-items: center;
  justify-content: start;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cta__button {
  text-align: center;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cta__inner {
    grid-template-columns: 1fr;
  }
}
