:root {
  --bg: #f6f2ff;
  --surface: #ffffff;
  --surface-strong: #17092f;
  --surface-soft: #efe6ff;
  --text: #211333;
  --muted: #6f6387;
  --line: rgba(90, 49, 155, 0.16);
  --primary: #8a36a8;
  --primary-dark: #6f2b87;
  --primary-soft: rgba(138, 54, 168, 0.14);
  --accent: #b85ecf;
  --shadow: 0 30px 80px rgba(89, 28, 104, 0.18);
  --radius: 28px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 94, 207, 0.28), transparent 22%),
    linear-gradient(180deg, #fbf9ff 0%, #f3edff 45%, #f6f2ff 100%);
  color: var(--text);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(246, 242, 255, 0.82);
  border-bottom: 1px solid rgba(90, 49, 155, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.brand-logo-full {
  width: 220px;
}

.brand-logo-mark {
  display: none;
  width: 42px;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(138, 54, 168, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-ghost {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(90, 33, 182, 0.2);
  box-shadow: none;
}

.button-secondary {
  background: linear-gradient(135deg, #20103f, #4c1d95);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid,
.showcase-grid,
.footer-grid,
.split-card,
.coverage-card {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-carousel {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  max-width: 11ch;
  font-weight: 400;
}

.section h2 {
  font-weight: 400;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text,
.showcase-copy p,
.split-card p,
.benefit p,
.plan-copy,
.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-highlights div,
.benefit,
.plan-card,
.split-card,
.coverage-card,
.signal-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 18px;
  border-radius: 20px;
}

.hero-highlights strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.hero-highlights span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.signal-card {
  position: absolute;
  left: -24px;
  bottom: 28px;
  z-index: 1;
  max-width: 280px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,230,255,0.96));
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > .hero-text,
.hero-animated {
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.hero-carousel.is-transitioning .hero-copy > .eyebrow,
.hero-carousel.is-transitioning .hero-copy > h1,
.hero-carousel.is-transitioning .hero-copy > .hero-text,
.hero-carousel.is-transitioning .hero-animated {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}

.signal-card p,
.signal-card span {
  margin: 0;
  color: var(--muted);
}

.signal-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.section {
  padding: 52px 0;
}

.split-card,
.coverage-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.benefits-grid,
.plan-grid {
  display: grid;
  gap: 22px;
}

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

.benefit {
  padding: 24px;
  border-radius: 26px;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}

.benefit h3,
.plan-card h3,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

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

.plan-card {
  padding: 28px;
  border-radius: 30px;
}

.featured {
  background: linear-gradient(180deg, rgba(138,54,168,0.98), rgba(111,43,135,0.98));
  color: white;
  transform: translateY(-10px);
}

.featured .plan-copy,
.featured .price small,
.featured .plan-badge {
  color: rgba(255, 255, 255, 0.82);
}

.featured .price {
  color: white;
}

.featured li {
  color: white;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-badge {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
}

.price {
  margin: 18px 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.price small {
  font-size: 1rem;
  color: var(--muted);
}

.plan-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.plan-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(90, 49, 155, 0.12);
  color: var(--muted);
}

.plan-card.featured li {
  color: white;
}

.featured li {
  border-color: rgba(255, 255, 255, 0.18);
}

.showcase-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.showcase-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}


.coverage-card {
  background: linear-gradient(135deg, #1b0f33, #4c1d95);
  border: 0;
}

.coverage-card h2,
.coverage-card .eyebrow {
  color: white;
}

.site-footer {
  padding: 22px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.7fr) minmax(220px, 0.85fr);
  align-items: start;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(90, 49, 155, 0.1);
}

.footer-grid > div {
  display: grid;
  gap: 10px;
}

.footer-nav,
.footer-contact {
  justify-content: start;
  align-content: start;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-logo-mark {
  width: 112px;
}

.footer-company {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.footer-company strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

.footer-company span {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero-grid,
  .benefits-grid,
  .plan-grid,
  .showcase-grid,
  .reverse,
  .split-card,
  .coverage-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual img {
    height: 480px;
  }

  .signal-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

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

  .brand-logo-mark {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .showcase-image img {
    height: 360px;
  }

  .split-card,
  .coverage-card,
  .plan-card,
  .benefit {
    padding: 22px;
  }
}
