:root {
  --bg: #0a0f1a;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.76);
  --panel-strong: #111b31;
  --line: rgba(148, 163, 184, 0.16);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #1418eb;
  --accent-strong: #0f13c8;
  --accent-soft: #5c67ff;
  --accent-warm: #e8d4b5;
  --lime: #a3e635;
  --lime-soft: #bef264;
  --shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(129, 140, 248, 0.12), transparent 32%),
    linear-gradient(180deg, #0a0f1a 0%, #0d1424 45%, #090e18 100%);
  font-family: "Manrope", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle 400px at 18% 24%, rgba(129, 140, 248, 0.34) 0%, rgba(129, 140, 248, 0.18) 32%, rgba(129, 140, 248, 0.07) 54%, transparent 74%),
    radial-gradient(circle 420px at 84% 70%, rgba(129, 140, 248, 0.24) 0%, rgba(129, 140, 248, 0.1) 38%, transparent 74%);
  filter: blur(10px);
  mix-blend-mode: screen;
  animation: spotlight-drift 18s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

body::after {
  background:
    radial-gradient(circle 540px at 50% 18%, rgba(129, 140, 248, 0.14) 0%, rgba(129, 140, 248, 0.06) 40%, transparent 74%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.02) 0%, rgba(7, 10, 18, 0.22) 100%);
  opacity: 0.82;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 260px at 18% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 72%),
    radial-gradient(circle 300px at 78% 66%, rgba(255, 255, 255, 0.055) 0%, transparent 74%);
  mix-blend-mode: screen;
  opacity: 0.85;
  z-index: 0;
  animation: spotlight-shimmer 12s ease-in-out infinite alternate;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

a:hover {
  color: var(--accent-soft);
}

.topbar,
.hero,
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--lime-soft));
  box-shadow: 0 0 24px rgba(163, 230, 53, 0.6);
  animation: pulse-brand 2.4s ease-in-out infinite;
}

.topnav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
}

.topnav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.button-with-icon {
  gap: 10px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
  transition: transform 220ms var(--ease-out);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.18) 32%, rgba(255, 255, 255, 0.06) 56%, transparent 72%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    width 320ms var(--ease-out),
    height 320ms var(--ease-out),
    opacity 220ms var(--ease-out);
}

.button:hover::after {
  opacity: 1;
  width: 220px;
  height: 220px;
}

.button-primary {
  color: #f8fbff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(20, 24, 235, 0.3);
}

.button-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #2a2eff, #1418eb);
  box-shadow: 0 20px 46px rgba(20, 24, 235, 0.34);
}

.button-primary:active {
  background: linear-gradient(135deg, var(--accent), #0b0fb3);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.45);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(22, 32, 57, 0.82);
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.08);
}

.button-secondary:active,
.button-ghost:active {
  background: rgba(11, 17, 31, 0.92);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  padding: 42px 0 72px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.brand {
  margin: 0;
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin-top: 18px;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.02;
  max-width: 18ch;
}

h2 {
  max-width: none;
  font-size: clamp(17px, 2.1vw, 25px);
  line-height: 1.1;
}

h3 {
  font-size: 14px;
  line-height: 1.16;
}

.hero-text,
.section-head p,
.feature-card p,
.price-card p,
.setup-card p,
.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.stats li,
.panel,
.feature-card,
.price-card,
.setup-card,
.device-chip,
.faq-item,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.stats li,
.panel,
.feature-card,
.price-card,
.setup-card,
.device-chip,
.faq-item,
.cta-panel {
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    background 260ms var(--ease-out);
}

.stats li:hover,
.panel:hover,
.feature-card:hover,
.setup-card:hover,
.device-chip:hover,
.faq-item:hover,
.cta-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.2);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.5);
}

.stats li {
  padding: 18px 20px;
  border-radius: 24px;
}

.stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.panel {
  position: relative;
  border-radius: 30px;
  padding: 24px;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(232, 212, 181, 0.04) 55%, transparent 72%);
  pointer-events: none;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.live-pill,
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.live-pill {
  color: #f8fbff;
  gap: 8px;
  background: rgba(163, 230, 53, 0.16);
  color: var(--lime-soft);
  border: 1px solid rgba(163, 230, 53, 0.22);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(163, 230, 53, 0.7);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.panel-grid small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.panel-grid strong {
  font-size: 21px;
  line-height: 1.25;
}

.flow-list {
  margin: 26px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: none;
}

.section-head h2 {
  letter-spacing: -0.03em;
  max-width: 100%;
}

.feature-grid,
.plans-grid,
.setup-grid,
.devices-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.feature-card,
.price-card,
.setup-card {
  border-radius: 28px;
  padding: 26px;
}

.feature-index {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.plans-section {
  position: relative;
}

.pricing-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 24px;
}

.pricing-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.plan-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.plan-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--muted);
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: transparent;
  transition:
    color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.plan-tab.is-active {
  color: #f8fbff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.plan-tab:hover {
  color: var(--text);
  background: rgba(96, 165, 250, 0.12);
}

.plan-tab:active {
  transform: scale(0.98);
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(59, 130, 246, 0.08) 0%, rgba(15, 23, 42, 0.92) 58%),
    rgba(15, 23, 42, 0.76);
  isolation: isolate;
}

.price-discount-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.56);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.28), transparent 42%, transparent 62%, rgba(232, 212, 181, 0.12));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
  pointer-events: none;
}

.price-card:hover::before,
.price-card-featured::before {
  opacity: 1;
}

.price-card-top {
  margin-bottom: 24px;
}

.card-badge {
  margin-bottom: 18px;
  color: var(--accent-soft);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.card-badge-lime {
  gap: 8px;
  color: var(--lime-soft);
  background: rgba(163, 230, 53, 0.16);
  border: 1px solid rgba(163, 230, 53, 0.22);
}

.card-badge-lime::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(163, 230, 53, 0.7);
}

.price-card-featured {
  transform: translateY(-10px);
  border-color: rgba(96, 165, 250, 0.32);
  background:
    radial-gradient(120% 120% at 50% 100%, rgba(59, 130, 246, 0.14) 0%, rgba(15, 23, 42, 0.94) 56%),
    rgba(15, 23, 42, 0.82);
  box-shadow:
    0 34px 90px rgba(2, 6, 23, 0.58),
    0 0 0 1px rgba(96, 165, 250, 0.12);
}

.price-card-unavailable .price-value {
  font-size: 28px;
  color: var(--muted);
}

.price-card-unavailable .price-save {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.18);
}

.price-glow {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.24) 0%, transparent 68%);
  opacity: 0.8;
  filter: blur(6px);
  pointer-events: none;
}

.price-display {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.price-original {
  color: var(--muted);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(148, 163, 184, 0.7);
}

.price-display strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-display span {
  color: var(--muted);
  font-size: 14px;
}

.price-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.price-facts {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.price-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.price-fact svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: rgba(129, 140, 248, 0.92);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.price-save {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-soft);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 30px;
}

.price-card ul li::marker {
  color: var(--accent-soft);
}

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

.setup-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(232, 212, 181, 0.12));
}

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

.device-chip {
  display: block;
  position: relative;
  padding: 26px 22px;
  border-radius: 24px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(59, 130, 246, 0.08) 0%, rgba(15, 23, 42, 0.92) 58%),
    rgba(15, 23, 42, 0.76);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.device-chip strong,
.device-chip span {
  display: block;
}

.device-chip strong {
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.device-chip span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.device-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), transparent 40%, transparent 64%, rgba(232, 212, 181, 0.14));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
  pointer-events: none;
}

.device-chip:hover::before {
  opacity: 1;
}

.device-chip:hover .device-icon {
  color: var(--accent-soft);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

.device-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.14);
  transition: color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  flex: 0 0 auto;
  align-self: center;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.device-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  max-height: none;
}

.device-icon-fill {
  fill: currentColor;
  stroke: none;
}

.device-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-support {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 24px;
}

.faq-support p {
  margin: 0;
  color: var(--muted);
}

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out);
}

.faq-question span:first-child {
  font-size: 19px;
  font-family: "Space Grotesk", sans-serif;
}

.faq-toggle {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  transition: transform 220ms var(--ease-out), color 220ms var(--ease-out);
}

.faq-question:hover {
  background: rgba(96, 165, 250, 0.05);
}

.faq-question:active {
  background: rgba(96, 165, 250, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  margin: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 36px;
}

.footer-shell {
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--line);
  border-radius: 32px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 24px;
  padding: 32px;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 16px;
  line-height: 1.2;
}

.footer-column a,
.footer-links a {
  color: var(--muted);
  transition: color 220ms var(--ease-out);
}

.footer-column a:hover,
.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

@keyframes pulse-brand {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.45);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(163, 230, 53, 0.78);
  }
}

@keyframes spotlight-drift {
  0% {
    transform: translate3d(-10%, -8%, 0) scale(0.94);
    opacity: 0.74;
  }

  50% {
    transform: translate3d(8%, 3%, 0) scale(1.02);
    opacity: 1;
  }

  100% {
    transform: translate3d(12%, 11%, 0) scale(1.08);
    opacity: 0.86;
  }
}

@keyframes spotlight-shimmer {
  0% {
    transform: translate3d(-8%, -6%, 0) scale(0.96);
    opacity: 0.52;
  }

  100% {
    transform: translate3d(10%, 8%, 0) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 60px;
  }

  .feature-grid,
  .plans-grid,
  .setup-grid,
  .devices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-intro {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  body::before {
    opacity: 0.62;
    animation-duration: 28s;
  }

  body::after,
  .page-shell::after {
    opacity: 0.55;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 0 8px;
  }

  .topnav {
    order: 3;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.5);
  }

  .topbar > .button {
    margin-left: auto;
  }

  .pricing-intro {
    padding: 18px;
  }

  .stats,
  .feature-grid,
  .plans-grid,
  .setup-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 22px;
    padding: 24px 0 44px;
  }

  .hero-text,
  .section-head p,
  .feature-card p,
  .price-card p,
  .setup-card p,
  .faq-answer p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 22px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .stats li,
  .panel,
  .feature-card,
  .price-card,
  .setup-card,
  .device-chip,
  .faq-item,
  .cta-panel {
    border-radius: 22px;
  }

  .stats li,
  .panel,
  .feature-card,
  .price-card,
  .setup-card {
    padding: 20px;
  }

  .panel-header {
    gap: 12px;
    font-size: 12px;
  }

  h1 {
    max-width: none;
  }

  h2 {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.14;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    gap: 12px;
  }

  .section-head h2 {
    max-width: none;
  }

  .pricing-intro {
    gap: 14px;
    margin-top: 22px;
  }

  .plan-switcher {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 6px;
    scrollbar-width: none;
  }

  .plan-switcher::-webkit-scrollbar {
    display: none;
  }

  .plan-tab {
    flex: 0 0 auto;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .price-card-top {
    margin-bottom: 18px;
  }

  .price-display {
    gap: 4px;
    margin-bottom: 18px;
  }

  .price-display strong {
    font-size: 34px;
  }

  .price-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
  }

  .price-facts {
    gap: 8px 12px;
  }

  .price-card ul {
    margin-bottom: 22px;
    line-height: 1.7;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .panel-grid strong {
    font-size: 18px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-support {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span:first-child {
    font-size: 17px;
    line-height: 1.25;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

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

  .device-chip {
    min-height: 180px;
    padding: 22px 18px;
  }

  .footer-shell {
    border-radius: 24px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    gap: 22px;
    padding: 24px 20px;
  }

  .footer-bottom {
    gap: 10px;
    padding: 16px 20px 20px;
  }
}

@media (max-width: 560px) {
  body::before,
  body::after,
  .page-shell::after {
    animation: none;
  }

  body::after,
  .page-shell::after {
    opacity: 0.35;
  }

  body::before {
    background: radial-gradient(circle 320px at 50% 16%, rgba(129, 140, 248, 0.18) 0%, rgba(129, 140, 248, 0.07) 38%, transparent 74%);
    opacity: 0.5;
  }

  .topbar,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .button {
    width: 100%;
  }

  .topbar {
    gap: 12px;
  }

  .brand {
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .topnav {
    flex-wrap: nowrap;
  }

  .hero-actions {
    flex-direction: column;
  }

  h1 {
    font-size: 22px;
    max-width: none;
  }

  .hero-text {
    margin-top: 18px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats strong {
    font-size: 22px;
  }

  .pricing-intro,
  .price-card,
  .feature-card,
  .setup-card,
  .panel,
  .faq-question,
  .device-chip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .price-display strong {
    font-size: 30px;
  }

  .devices-grid {
    grid-template-columns: 1fr;
  }

  .device-chip {
    min-height: 164px;
  }

  .device-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  .faq-question span:first-child,
  .device-chip strong {
    font-size: 17px;
  }
}
