:root {
  --purple: #af62e7;
  --purple-deep: #7412f4;
  --purple-soft: #f4e6ff;
  --line: #ead9f5;
  --ink: #080808;
  --muted: #1f1b25;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Mulish", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: clamp(16px, 4vw, 54px);
  left: 50%;
  z-index: 20;
  width: min(78vw, 1120px);
  min-height: 72px;
  display: grid;
  grid-template-columns: 180px 1fr 56px 210px;
  align-items: center;
  padding: 8px clamp(20px, 3.5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 60px rgba(87, 26, 146, 0.06);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 64px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}

.brand-logo-dark {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  font-size: clamp(0.9rem, 1.05vw, 1.18rem);
  font-weight: 500;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(87, 26, 146, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown a {
  padding: 11px 14px;
  border-radius: 12px;
  color: #17131c;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--purple-deep);
  background: #f8efff;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.contact-button,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple));
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(125, 29, 242, 0.15);
}

.contact-button {
  justify-self: end;
  width: 150px;
  min-height: 46px;
  font-size: clamp(0.9rem, 1.05vw, 1.1rem);
  transform: translateX(-24px);
}

main {
  overflow: hidden;
}

.saving-hero {
  width: min(1280px, calc(100% - 86px));
  display: grid;
  grid-template-columns: minmax(610px, 1fr) minmax(360px, 0.55fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  margin: clamp(165px, 12vw, 205px) auto 98px;
}

.saving-copy h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.25rem);
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: 0;
}

.saving-copy h1 span,
.saving-copy em {
  color: var(--purple);
}

.saving-copy p {
  max-width: 740px;
  margin: 54px 0 54px;
  color: #111;
  font-size: clamp(1.28rem, 2vw, 1.84rem);
  line-height: 1.55;
  font-weight: 500;
}

.saving-copy em {
  font-style: italic;
  font-weight: 400;
}

.saving-copy .primary-action {
  width: 335px;
  min-height: 58px;
  font-size: 1.23rem;
}

.hero-phone-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-wrap::before {
  position: absolute;
  inset: 11% -14% 8% -24%;
  z-index: -1;
  border-radius: 8px;
  /* background: linear-gradient(90deg, #fff 0 20%, #f5ecfb 52%, #dcb8f2 100%); */
  content: "";
}

.hero-phone-wrap img {
  display: block;
  width: min(360px, 34vw);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.18));
}

.ladder-section {
  width: min(1180px, calc(100% - 86px));
  margin: 0 auto 136px;
}

.ladder-section h2 {
  margin: 0 0 72px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 950;
}

.saving-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 7vw, 82px);
  align-items: center;
  min-height: 585px;
  padding: clamp(54px, 6vw, 68px);
  border: 1px solid #eee6f5;
  border-radius: 8px;
}

.level-list {
  display: grid;
  gap: 38px;
}

.saving-level {
  min-height: 92px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 20px 24px;
  border: 0;
  border-radius: 8px;
  color: #080808;
  background: var(--purple-soft);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: min-height 260ms ease, background 260ms ease, color 260ms ease;
}

.saving-level.is-active {
  min-height: 178px;
  color: #fff;
  background: var(--purple);
}

.level-number {
  width: 80px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #070707;
  font-size: 1.9rem;
  font-weight: 900;
}

.saving-level:not(.is-active) .level-number {
  color: #fff;
  background: var(--purple);
}

.level-content {
  display: grid;
  gap: 20px;
}

.level-content strong {
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
  line-height: 1.2;
}

.level-content small {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: currentColor;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.55;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.saving-level.is-active .level-content small {
  max-height: 80px;
  opacity: 1;
}

.saving-visual {
  min-height: 420px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff 0 16%, #f7f1fb 38%, #dab4f3 100%);
}

.saving-visual img {
  width: min(58%, 315px);
  margin-bottom: -2px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
  transition: opacity 260ms ease, transform 260ms ease;
}

.saving-visual img.is-changing {
  opacity: 0;
  transform: translateY(18px);
}

.network-band {
  position: relative;
  width: min(1180px, calc(100% - 86px));
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(440px, 1.08fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto 130px;
  padding: clamp(42px, 6vw, 62px);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(108deg, #fff 0 39%, #f3e8ff 57%, #7d1df2 100%);
}

.network-band h2 {
  margin: 0 0 30px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.network-band p {
  max-width: 470px;
  margin: 0;
  color: #433e49;
  font-size: clamp(1rem, 1.5vw, 1.36rem);
  line-height: 1.6;
  font-weight: 500;
}

.network-band .primary-action {
  width: 190px;
  min-height: 54px;
  margin-top: 34px;
  font-size: 1.15rem;
}

.network-phones {
  position: relative;
  align-self: stretch;
  min-height: 360px;
}

.network-phone {
  position: absolute;
  width: min(300px, 40vw);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.24));
}

.network-phone-left {
  left: 10%;
  z-index: 1;
  bottom: -75px;
  transform: rotate(-14deg);
}

.network-phone-right {
  right: 5%;
  z-index: 4;
  bottom: -75px;
  transform: rotate(9deg);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(64px, 7vw, 86px) max(58px, calc((100vw - 1280px) / 2));
  color: #fff;
  background: #000;
}

.site-footer h2 {
  margin: 0 0 34px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
}

.site-footer p {
  margin: 0 0 22px;
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer-column {
  min-width: 0;
}

.social-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-links a {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #d7a4ff;
  border-radius: 50%;
  color: #f4dcff;
}

.social-links svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.footer-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  color: #fff;
}

.footer-row a,
.footer-links a {
  color: #fff;
}

.footer-icon {
  display: block;
  width: 28px;
  height: 28px;
  color: #d8d8d8;
}

.footer-links {
  display: grid;
  gap: 22px;
  font-size: 1.08rem;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    width: calc(100% - 28px);
    min-height: 58px;
    padding: 7px 14px;
  }

  .brand {
    width: 46px;
  }

  .nav-links {
    display: none;
  }

  .contact-button {
    width: auto;
    min-height: 40px;
    padding: 0 22px;
  }

  .saving-hero,
  .saving-panel,
  .network-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .saving-hero,
  .ladder-section,
  .network-band {
    width: calc(100% - 32px);
  }

  .saving-hero {
    margin-top: 90px;
  }

  .hero-phone-wrap {
    min-height: 430px;
  }

  .hero-phone-wrap img {
    width: min(310px, 72vw);
  }

  .saving-visual {
    min-height: 430px;
  }

  .network-band {
    min-height: 720px;
  }

  .network-phones {
    min-height: 350px;
  }

  .network-phone {
    width: min(240px, 58vw);
  }

  .network-phone-left {
    left: 16%;
    bottom: 8px;
  }

  .network-phone-right {
    right: 10%;
    bottom: 12px;
  }

  .site-footer {
    padding-inline: 32px;
  }
}

@media (max-width: 560px) {
  .saving-copy h1 {
    font-size: 2.55rem;
  }

  .saving-copy p {
    font-size: 1.08rem;
  }

  .saving-copy .primary-action {
    width: 100%;
  }

  .saving-panel {
    padding: 28px 22px;
  }

  .saving-level {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .level-number {
    width: 58px;
    font-size: 1.35rem;
  }
}
