:root {
  --bg: #020712;
  --panel: rgba(12, 20, 34, 0.82);
  --panel-strong: #0a111f;
  --line: rgba(151, 184, 255, 0.16);
  --text: #f7fbff;
  --muted: #97a5b9;
  --blue: #0aa8ff;
  --purple: #a53cff;
  --cyan: #20e2ff;
  --green: #23d88a;
  --orange: #ff8a35;
  --shadow: 0 0 48px rgba(16, 137, 255, 0.22), 0 0 70px rgba(151, 46, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 77% 8%, rgba(0, 132, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 72% 32%, rgba(165, 60, 255, 0.14), transparent 25rem),
    radial-gradient(circle at 19% 48%, rgba(0, 169, 255, 0.11), transparent 20rem),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

a {
  color: inherit;
  text-decoration: none;
}

.section-shell,
.navbar,
.footer {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.navbar,
.hero.section-shell {
  width: min(1800px, calc(100% - 120px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 7, 18, 0.72);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 70px;
  display: grid;
  grid-template-columns: 250px 1fr 170px;
  align-items: center;
  gap: 24px;
}

.brand,
.nav-links,
.nav-actions,
.hero-actions,
.hero-features,
.dashboard-top,
.panel-head,
.billing-toggle,
.final-cta,
.footer,
.footer nav,
.socials {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand img {
  display: block;
  width: 225px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(10, 168, 255, 0.16));
}

.brand.mini {
  width: 105px;
  margin-bottom: 12px;
}

.brand.mini img {
  width: 105px;
}

.nav-links {
  justify-content: center;
  gap: 34px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-actions {
  justify-content: end;
  gap: 16px;
  color: #eaf3ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(122, 154, 210, 0.4);
  border-radius: 10px;
  background: rgba(2, 7, 18, 0.58);
  padding: 8px 10px;
}

.language-flag {
  font-size: 1rem;
  line-height: 1;
}

.language-select select {
  min-width: 38px;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.language-select:hover,
.language-select:focus-within {
  border-color: rgba(32, 226, 255, 0.68);
  box-shadow: 0 0 18px rgba(10, 168, 255, 0.18);
}

.nav-links a,
.nav-actions a {
  position: relative;
  padding: 10px 2px;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.login-link {
  min-width: max-content;
  color: #ffffff;
}

.nav-links a::after,
.nav-actions a::after {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 16px rgba(10, 168, 255, 0.45);
  transition: left 200ms ease, right 200ms ease, opacity 180ms ease;
  opacity: 0;
}

.nav-links a:hover,
.nav-actions a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(32, 226, 255, 0.46);
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-actions a:hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.outline-button,
.ghost-button,
.price-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 154, 210, 0.48);
  border-radius: 12px;
  color: #ffffff;
  background:
    linear-gradient(rgba(2, 7, 18, 0.36), rgba(2, 7, 18, 0.36)) padding-box,
    linear-gradient(100deg, rgba(10, 168, 255, 0.4), rgba(168, 61, 255, 0.4)) border-box;
  background-size: 240% 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.outline-button {
  padding: 13px 22px;
  box-shadow: inset 0 0 0 1px rgba(165, 60, 255, 0.18);
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
  background: rgba(12, 20, 34, 0.92);
  font: inherit;
  font-weight: 800;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 530px minmax(860px, 1fr);
  gap: 35px;
  align-items: center;
  padding: 44px 0 42px;
}

.hero-copy {
  margin-left: 0;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 28px;
  border: 1px solid rgba(40, 169, 255, 0.58);
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--cyan);
  background: rgba(7, 30, 72, 0.45);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 3.4vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero h1 span,
.section-heading h2 span,
.device-copy h2 span,
.pricing h2 span,
.pricing h1 span,
.faq-section h2 span {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.tag),
.section-heading > p,
.device-copy > p {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.gradient-button,
.ghost-button,
.price-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 26px;
  color: #ffffff;
  font-weight: 800;
}

.gradient-button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(100deg, #0aa8ff, #6c5cff, #a83dff, #0aa8ff);
  background-size: 240% 100%;
  box-shadow: 0 16px 34px rgba(10, 168, 255, 0.24), 0 16px 34px rgba(168, 61, 255, 0.16);
  animation: aurora-button-flow 4s ease infinite;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.outline-button::before,
.ghost-button::before,
.price-button::before,
.gradient-button::before {
  display: none;
}

.outline-button,
.ghost-button,
.price-button,
.gradient-button {
  isolation: isolate;
}

.outline-button:hover,
.ghost-button:hover,
.price-button:hover,
.gradient-button:hover {
  border-color: rgba(32, 226, 255, 0.72);
  color: #ffffff;
  background: linear-gradient(100deg, #0aa8ff, #6c5cff, #a83dff, #0aa8ff);
  background-size: 240% 100%;
  animation: aurora-button-flow 4s ease infinite;
  box-shadow: 0 14px 34px rgba(10, 168, 255, 0.22), 0 14px 34px rgba(168, 61, 255, 0.18);
  transform: translateY(-2px);
}

.outline-button:hover::before,
.ghost-button:hover::before,
.price-button:hover::before {
  display: none;
}

.gradient-button:hover {
  box-shadow: 0 18px 42px rgba(10, 168, 255, 0.34), 0 18px 42px rgba(168, 61, 255, 0.26);
}

.gradient-button::before {
  display: none;
}

@keyframes aurora-button-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes aurora-button-shine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 520px;
  margin-top: 58px;
}

.hero-features div {
  width: 100%;
  display: grid;
  justify-items: start;
  align-content: start;
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(32, 226, 255, 0.28);
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(4, 22, 40, 0.78);
  box-shadow: 0 0 26px rgba(10, 168, 255, 0.2);
  font-size: 1rem;
  line-height: 1;
}

.hero-features strong,
.hero-features small {
  display: block;
}

.hero-features strong {
  min-height: 20px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.hero-features small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 105px;
}

.dashboard-card {
  width: min(910px, 100%);
  min-height: 492px;
  display: grid;
  grid-template-columns: 142px 1fr;
  border: 1px solid rgba(52, 133, 255, 0.86);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(9, 17, 32, 0.96), rgba(4, 8, 18, 0.98));
  box-shadow:
    0 0 36px rgba(10, 168, 255, 0.28),
    18px 18px 58px rgba(165, 60, 255, 0.34);
  transform: translate(18px, -34px) rotate(1.5deg);
  transform-origin: center;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 16px;
  border-right: 1px solid rgba(122, 154, 210, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-sidebar span {
  border-radius: 8px;
  padding: 7px 10px;
  color: #8190a8;
  font-size: 0.68rem;
  font-weight: 700;
}

.dashboard-sidebar .active {
  color: #eaf7ff;
  background: linear-gradient(90deg, rgba(10, 168, 255, 0.36), rgba(165, 60, 255, 0.14));
}

.dashboard-main {
  padding: 25px 24px 24px;
}

.dashboard-top {
  justify-content: space-between;
  margin-bottom: 16px;
}

.dashboard-top h2,
.panel-head h3,
.funnel-panel h3,
.activity-grid h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.window-dots {
  display: flex;
  gap: 18px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(151, 184, 255, 0.34);
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-grid article,
.chart-panel,
.funnel-panel,
.activity-grid article,
.module-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 29, 48, 0.82), rgba(8, 15, 28, 0.82));
}

.metric-grid article {
  min-height: 82px;
  padding: 12px 14px;
}

.metric-grid small,
.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid small {
  color: var(--muted);
  font-size: 0.66rem;
}

.metric-grid strong {
  margin: 7px 0;
  font-size: 1.15rem;
}

.metric-grid span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.analytics-grid,
.activity-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.analytics-grid {
  grid-template-columns: 1.35fr 1fr;
}

.activity-grid {
  grid-template-columns: 1fr 1fr;
}

.chart-panel,
.funnel-panel,
.activity-grid article {
  padding: 14px 16px;
}

.panel-head {
  justify-content: space-between;
}

.panel-head small {
  border-radius: 7px;
  padding: 5px 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.line-chart {
  position: relative;
  height: 112px;
  margin-top: 12px;
  border-bottom: 1px solid rgba(151, 184, 255, 0.14);
  background: linear-gradient(to top, rgba(10, 168, 255, 0.12), transparent);
}

.line-chart::before {
  position: absolute;
  inset: 10px 0 18px;
  content: "";
  background:
    linear-gradient(135deg, transparent 8%, #177dff 8% 10%, transparent 10% 24%, #177dff 24% 26%, transparent 26% 40%, #177dff 40% 42%, transparent 42% 58%, #177dff 58% 60%, transparent 60% 75%, #177dff 75% 77%, transparent 77%),
    linear-gradient(to top, rgba(20, 128, 255, 0.24), transparent);
  clip-path: polygon(0 72%, 10% 46%, 18% 60%, 28% 36%, 36% 70%, 46% 34%, 55% 57%, 66% 44%, 75% 58%, 88% 38%, 100% 20%, 100% 100%, 0 100%);
}

.line-chart span {
  position: absolute;
  bottom: -22px;
  width: 1px;
  height: 16px;
  background: rgba(151, 184, 255, 0.12);
}

.line-chart span:nth-child(1) { left: 7%; }
.line-chart span:nth-child(2) { left: 24%; }
.line-chart span:nth-child(3) { left: 41%; }
.line-chart span:nth-child(4) { left: 58%; }
.line-chart span:nth-child(5) { left: 75%; }
.line-chart span:nth-child(6) { left: 92%; }

.funnel-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.funnel-panel h3 {
  grid-column: 1 / -1;
}

.funnel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
}

.funnel span {
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(90deg, #1a55ff, #2ce1ff);
  box-shadow: 0 0 26px rgba(10, 168, 255, 0.34);
}

.funnel span:nth-child(1) { width: 126px; }
.funnel span:nth-child(2) { width: 104px; }
.funnel span:nth-child(3) { width: 72px; background: linear-gradient(90deg, #1949d7, #5c4cff); }
.funnel span:nth-child(4) { width: 42px; background: linear-gradient(90deg, #5430c8, #a53cff); }

.funnel-panel ul,
.price-card ul,
.device-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.funnel-panel li,
.activity-grid p {
  color: var(--muted);
  font-size: 0.76rem;
}

.activity-grid p {
  display: flex;
  justify-content: space-between;
  margin: 9px 0 0;
}

.activity-grid b {
  border-radius: 999px;
  padding: 3px 7px;
  color: #fff;
  background: rgba(255, 74, 74, 0.74);
  font-size: 0.66rem;
}

.partners {
  padding: 28px 0 48px;
  border-top: 1px solid rgba(151, 184, 255, 0.13);
  border-bottom: 1px solid rgba(151, 184, 255, 0.13);
  text-align: center;
}

.partners p {
  margin-bottom: 38px;
  color: #8997aa;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-marquee {
  overflow: hidden;
  width: min(760px, 100%);
  margin: 0 auto;
  color: rgba(247, 251, 255, 0.74);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 96px;
  animation: partner-scroll 13s linear infinite;
}

.partner-track img {
  width: 210px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 218, 102, 0.2));
}

@keyframes partner-scroll {
  from {
    transform: translateX(32%);
  }

  to {
    transform: translateX(-50%);
  }
}

.modules,
.pricing {
  padding: 64px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.device-copy h2,
.pricing h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-grid article {
  min-height: 172px;
  padding: 26px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.module-grid article:hover {
  border-color: rgba(32, 226, 255, 0.45);
  transform: translateY(-4px);
}

.module-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 11px;
  color: var(--cyan);
  background: rgba(10, 168, 255, 0.14);
  font-size: 1.2rem;
}

.module-grid article:nth-child(2n) span { color: var(--orange); background: rgba(255, 138, 53, 0.14); }
.module-grid article:nth-child(3n) span { color: #a873ff; background: rgba(165, 60, 255, 0.17); }
.module-grid article:nth-child(5n) span { color: #ffd15c; background: rgba(255, 209, 92, 0.14); }

.module-grid h3 {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.module-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.center-button {
  width: fit-content;
  margin: 34px auto 0;
}

.device-section {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 32px 0 68px;
  border-bottom: 1px solid rgba(151, 184, 255, 0.13);
}

.device-mock {
  position: relative;
  min-height: 360px;
}

.device-mock::after {
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 14px;
  height: 32px;
  content: "";
  background: linear-gradient(90deg, rgba(10, 168, 255, 0.5), rgba(165, 60, 255, 0.58));
  filter: blur(24px);
}

.laptop {
  position: absolute;
  left: 0;
  bottom: 45px;
  width: 82%;
  height: 270px;
  border: 1px solid rgba(52, 133, 255, 0.72);
  border-radius: 16px 16px 4px 4px;
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.98) 0 72px, transparent 72px),
    linear-gradient(145deg, rgba(16, 27, 47, 0.96), rgba(5, 10, 20, 0.98));
  box-shadow: 0 0 34px rgba(10, 168, 255, 0.26);
}

.laptop::after {
  position: absolute;
  left: -36px;
  right: -36px;
  bottom: -20px;
  height: 18px;
  content: "";
  border-radius: 0 0 22px 22px;
  background: linear-gradient(90deg, rgba(151, 184, 255, 0.35), rgba(255, 255, 255, 0.7), rgba(151, 184, 255, 0.35));
}

.mini-sidebar {
  position: absolute;
  top: 44px;
  left: 22px;
  width: 30px;
  height: 174px;
  border-radius: 8px;
  background: repeating-linear-gradient(to bottom, rgba(151, 184, 255, 0.32) 0 6px, transparent 6px 22px);
}

.property-list {
  position: absolute;
  left: 98px;
  top: 58px;
  right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.property-list span {
  height: 55px;
  border: 1px solid rgba(151, 184, 255, 0.13);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(10, 168, 255, 0.14) 0 34%, rgba(255, 255, 255, 0.04) 34%);
}

.phone {
  position: absolute;
  right: 10%;
  bottom: 22px;
  width: 132px;
  height: 255px;
  border: 1px solid rgba(151, 184, 255, 0.44);
  border-radius: 28px;
  padding: 34px 16px;
  background: #060b15;
  box-shadow: 0 0 32px rgba(165, 60, 255, 0.52);
}

.phone span,
.phone div {
  display: block;
  border-radius: 8px;
  background: rgba(10, 168, 255, 0.2);
}

.phone span {
  height: 16px;
  margin-bottom: 20px;
}

.phone div {
  height: 42px;
  margin-top: 14px;
}

.device-copy .tag {
  margin-bottom: 18px;
}

.device-copy h2 {
  margin-bottom: 28px;
}

.device-copy li {
  position: relative;
  margin-top: 22px;
  padding-left: 54px;
  color: #f0f6ff;
  font-weight: 800;
}

.device-copy li::before {
  position: absolute;
  left: 0;
  top: -7px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(10, 168, 255, 0.15);
  content: "W";
}

.device-copy li:nth-child(2)::before,
.device-copy li:nth-child(3)::before {
  color: #a873ff;
  background: rgba(165, 60, 255, 0.15);
}

.pricing-heading {
  text-align: center;
}

.pricing-heading .tag {
  margin-inline: auto;
}

.pricing-subtitle {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-hero,
.legal-content {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-hero {
  padding: 92px 0 42px;
  text-align: center;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-hero p:not(.tag) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 0 0 72px;
}

.legal-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(18, 29, 48, 0.78), rgba(8, 15, 28, 0.82));
  box-shadow: 0 18px 60px rgba(10, 168, 255, 0.08);
}

.legal-panel h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.legal-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.legal-meta span {
  border: 1px solid rgba(151, 184, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cceaff;
  background: rgba(10, 168, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.billing-toggle {
  justify-content: center;
  gap: 11px;
  margin: 34px 0;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  user-select: none;
}

.billing-toggle input {
  position: absolute;
  opacity: 0;
}

.billing-toggle b {
  position: relative;
  width: 48px;
  height: 26px;
  border: 1px solid rgba(151, 184, 255, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) padding-box,
    linear-gradient(100deg, rgba(10, 168, 255, 0.5), rgba(165, 60, 255, 0.5)) border-box;
  background-size: 240% 100%;
  box-shadow: inset 0 0 16px rgba(10, 168, 255, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.billing-toggle b::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, #ffffff, #cbeaff);
  box-shadow: 0 0 14px rgba(32, 226, 255, 0.45);
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 180ms ease;
}

.billing-toggle:hover b {
  border-color: rgba(32, 226, 255, 0.66);
  box-shadow: 0 0 24px rgba(10, 168, 255, 0.2), inset 0 0 16px rgba(165, 60, 255, 0.14);
  transform: translateY(-1px);
  animation: aurora-button-flow 3.6s ease infinite;
}

.billing-toggle:hover b::after {
  box-shadow: 0 0 18px rgba(32, 226, 255, 0.65), 0 0 18px rgba(165, 60, 255, 0.3);
}

.billing-toggle input:focus-visible + b {
  outline: 2px solid rgba(32, 226, 255, 0.8);
  outline-offset: 4px;
}

.billing-toggle input:checked + b::after {
  transform: translateX(20px);
}

.billing-toggle input:checked + b {
  border-color: rgba(32, 226, 255, 0.72);
  background: linear-gradient(100deg, rgba(10, 168, 255, 0.85), rgba(108, 92, 255, 0.85), rgba(168, 61, 255, 0.85));
  background-size: 240% 100%;
  box-shadow: 0 0 24px rgba(10, 168, 255, 0.2), 0 0 24px rgba(165, 60, 255, 0.16);
  animation: aurora-button-flow 4s ease infinite;
}

.billing-toggle em {
  margin-left: 7px;
  border-radius: 999px;
  padding: 5px 8px;
  color: #cceaff;
  background: rgba(10, 168, 255, 0.18);
  font-style: normal;
  font-weight: 800;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  width: min(840px, 100%);
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 30px 28px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  border-color: rgba(10, 168, 255, 0.58);
  box-shadow: 0 18px 55px rgba(10, 168, 255, 0.14), 0 18px 55px rgba(165, 60, 255, 0.12);
  transform: translateY(-8px);
  outline: none;
}

.price-card.featured {
  border-color: rgba(10, 168, 255, 0.78);
  box-shadow: 0 0 45px rgba(10, 168, 255, 0.16);
}

.price-card.featured:hover,
.price-card.featured:focus-visible {
  box-shadow: 0 0 52px rgba(10, 168, 255, 0.24), 0 22px 70px rgba(165, 60, 255, 0.18);
}

.popular {
  position: absolute;
  top: 28px;
  right: 24px;
  border-radius: 999px;
  padding: 7px 13px;
  background: linear-gradient(90deg, #0aa8ff, #a53cff);
  font-size: 0.72rem;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.price-card p,
.price-card > span {
  color: var(--muted);
}

.price-savings {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border: 1px solid rgba(35, 216, 138, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  color: #b9ffde;
  background: rgba(35, 216, 138, 0.1);
  box-shadow: 0 0 22px rgba(35, 216, 138, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-savings[hidden] {
  display: none;
}

.price-card strong {
  display: block;
  margin: 32px 0 6px;
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.price-card small {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.price-card .gradient-button,
.price-button {
  width: 100%;
  margin: 26px 0;
}

.price-card li {
  position: relative;
  margin-top: 16px;
  padding-left: 23px;
  color: #dbe8fb;
  font-size: 0.86rem;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "\\2713";
}

.faq-section {
  padding: 34px 0 74px;
}

.pricing-faq {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 0%, rgba(10, 168, 255, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(18, 29, 48, 0.78), rgba(8, 15, 28, 0.82));
  box-shadow: 0 18px 54px rgba(10, 168, 255, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-grid article:hover {
  border-color: rgba(32, 226, 255, 0.42);
  box-shadow: 0 20px 62px rgba(10, 168, 255, 0.13), 0 18px 58px rgba(165, 60, 255, 0.1);
  transform: translateY(-4px);
}

.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.final-cta {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  border: 1px solid rgba(52, 133, 255, 0.56);
  border-radius: 14px;
  padding: 24px 34px;
  background: linear-gradient(135deg, rgba(7, 24, 43, 0.94), rgba(10, 12, 27, 0.94));
  box-shadow: 0 0 40px rgba(10, 168, 255, 0.12), 0 0 40px rgba(165, 60, 255, 0.12);
}

.final-cta > div {
  flex: 1;
}

.final-cta .brand img {
  width: 210px;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.final-cta p,
.footer {
  color: var(--muted);
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 30px;
  font-size: 0.78rem;
}

.footer nav {
  gap: 34px;
}

.socials {
  gap: 16px;
}

.socials span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(151, 184, 255, 0.22);
  border-radius: 50%;
  font-size: 0.68rem;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2, 7, 18, 0.76);
  backdrop-filter: blur(16px);
}

.auth-modal.is-open {
  display: grid;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-dialog {
  position: relative;
  width: min(620px, 100%);
  border: 1px solid rgba(52, 133, 255, 0.58);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(9, 17, 32, 0.98), rgba(4, 8, 18, 0.98));
  box-shadow: 0 0 48px rgba(10, 168, 255, 0.2), 0 0 60px rgba(165, 60, 255, 0.18);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(151, 184, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.3rem;
  cursor: pointer;
}

.auth-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.auth-header p:not(.tag) {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(151, 184, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-tab {
  border: 0;
  border-radius: 9px;
  padding: 11px 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.active {
  color: #ffffff;
  background: linear-gradient(100deg, rgba(10, 168, 255, 0.8), rgba(165, 60, 255, 0.8));
}

.auth-form {
  display: none;
  gap: 14px;
}

.auth-form.active {
  display: grid;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #dce8fb;
  font-size: 0.86rem;
  font-weight: 800;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  width: 100%;
  border: 1px solid rgba(151, 184, 255, 0.2);
  border-radius: 10px;
  padding: 12px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.auth-form textarea {
  resize: vertical;
}

.auth-form select option {
  color: #0a111f;
}

.auth-note[data-status="success"] {
  color: var(--green);
}

.auth-note[data-status="error"] {
  color: #ff6b6b;
}

.auth-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
  cursor: pointer;
}

.auth-note {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-actions {
    position: absolute;
    left: 24px;
    right: 24px;
    display: none;
    border: 1px solid var(--line);
    background: rgba(8, 14, 27, 0.98);
  }

  .nav-links {
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 14px 14px 0 0;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-actions {
    top: 310px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-top: 0;
    border-radius: 0 0 14px 14px;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    display: flex;
  }

  .hero,
  .device-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero-copy > p:not(.tag) {
    max-width: 760px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .dashboard-card {
    grid-template-columns: 110px 1fr;
    width: 100%;
    transform: none;
  }

  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-marquee {
    width: min(560px, 100%);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .navbar,
  .footer {
    width: min(100% - 28px, 1200px);
  }

  .brand {
    max-width: 160px;
  }

  .brand img {
    width: 158px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-features,
  .final-cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    width: 100%;
  }

  .dashboard-card {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 18px;
  }

  .metric-grid,
  .analytics-grid,
  .activity-grid,
  .module-grid,
  .faq-grid,
  .price-grid,
  .partner-marquee {
    font-size: 1.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .funnel-panel {
    grid-template-columns: 1fr;
  }

  .device-mock {
    min-height: 300px;
  }

  .laptop {
    width: 94%;
    height: 230px;
  }

  .phone {
    right: 0;
    width: 108px;
    height: 218px;
  }

  .final-cta {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
