:root {
  --bg-dark: #2d353f;
  --bg-dark-2: #232b34;
  --bg-light: #ececef;
  --panel-light: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --line-light: rgba(39, 50, 63, 0.1);
  --text-dark: #313a47;
  --text-muted: #6c7581;
  --text-light: #ffffff;
  --green: #7bd539;
  --green-strong: #45c43a;
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-light: 0 16px 40px rgba(31, 44, 58, 0.08);
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #343d46 0%, #2d353f 55px, #ececef 155px, #ececef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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: 34px 34px;
  opacity: 0.3;
}

body.home-v3 {
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    linear-gradient(180deg, #343d46 0%, #2d353f 480px, #ececef 480px, #ececef 100%);
}

body.home-v3::before {
  opacity: 0.45;
}

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

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(28, 37, 46, 0.88);
  color: var(--text-light);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.primary-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.primary-nav {
  flex: 1;
  justify-content: center;
}

.primary-nav a,
.footer-links a {
  font-weight: 600;
}

.primary-nav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
}

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #6fe24c 0%, #3aba37 100%);
  box-shadow: 0 14px 30px rgba(69, 196, 58, 0.28);
}

.btn-secondary {
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(35, 45, 56, 0.08);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -165%;
  left: -45%;
  width: 62%;
  height: 430%;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(70, 156, 44, 0.26) 0%, rgba(70, 156, 44, 0.08) 58%, transparent 72%);
  transform: translateX(-130%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
}

.btn:hover {
  transform: scale(1.06);
}

.btn:hover::before {
  opacity: 1;
  animation: button-fluid-wave 1350ms ease-out 1;
}

.home-v3-main-cta:hover {
  transform: scale(1.14) rotate(-2deg);
  box-shadow:
    0 0 0 10px rgba(123, 213, 57, 0.14),
    0 0 0 18px rgba(123, 213, 57, 0.05),
    0 20px 40px rgba(69, 196, 58, 0.24);
}

@keyframes button-fluid-wave {
  0% {
    transform: translateX(-130%) rotate(8deg);
  }
  100% {
    transform: translateX(330%) rotate(8deg);
  }
}

.btn-hero {
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  box-shadow:
    0 0 0 10px rgba(123, 213, 57, 0.14),
    0 0 0 18px rgba(123, 213, 57, 0.05),
    0 20px 40px rgba(69, 196, 58, 0.24);
}

.section {
  padding: 48px 0;
}

.page-main.page-surface {
  margin-top: 28px;
  padding: 36px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-light);
}

.page-hero {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #79a345;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.page-hero h1,
.home-v2-section-title h2 {
  margin: 0;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  color: var(--text-dark);
}

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-grid-3,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-grid.two-columns,
.two-columns,
.changelog-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 22px;
}

.info-card,
.pricing-card,
.side-card,
.changelog-item,
.faq-list details {
  padding: 24px;
  border: 1px solid rgba(39, 50, 63, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-light);
}

.info-card h3,
.pricing-card h3,
.changelog-item h3,
.side-card h3 {
  margin: 0 0 12px;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
}

.info-card p,
.side-card p,
.changelog-item p,
.pricing-card p,
.faq-list p,
.faq-list summary {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.info-card p + p,
.side-card p + p,
.changelog-item p + p,
.pricing-card p + p {
  margin-top: 12px;
}

.plan-tag,
.status-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.plan-tag,
.status-label.good {
  color: #2f5f13;
  background: #d5f3bf;
}

.status-label.warning {
  color: #8a5a06;
  background: #ffe2a9;
}

.status-label.danger {
  color: #7b1e1e;
  background: #ffd1d1;
}

.price {
  margin: 8px 0 12px;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price small {
  font-size: 1rem;
}

.pricing-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--text-muted);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-card.featured {
  border-color: rgba(123, 213, 57, 0.4);
  box-shadow: 0 20px 44px rgba(69, 196, 58, 0.14);
}

.pricing-explainer {
  align-items: stretch;
}

.pricing-note-card {
  background: linear-gradient(180deg, rgba(123, 213, 57, 0.12), rgba(255, 255, 255, 0.92));
}

.pricing-table-card {
  display: grid;
  gap: 22px;
}

.pricing-table-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.pricing-filter {
  display: grid;
  gap: 8px;
  min-width: min(100%, 320px);
  color: var(--text-dark);
  font-weight: 700;
}

.pricing-filter input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(39, 50, 63, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-top: 1px solid rgba(39, 50, 63, 0.08);
}

.pricing-table thead th {
  padding-top: 0;
  border-top: 0;
  color: var(--text-dark);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table tbody td {
  color: var(--text-muted);
}

.pricing-table tbody tr[hidden] {
  display: none;
}

.pricing-table-empty {
  margin: 0;
  color: var(--text-muted);
}

.text-link {
  color: #539c2b;
  font-weight: 700;
}

.status-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line-light);
  color: var(--text-muted);
}

.status-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.status-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.changelog-list,
.faq-list.light-faq {
  display: grid;
  gap: 14px;
}

.changelog-date {
  display: inline-flex;
  margin-bottom: 8px;
  color: #79a345;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer.dark-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 0 34px;
  color: #000000;
}

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

.footer-brand + p {
  margin: 0;
  color: #000000;
}

.footer-meta {
  color: #000000;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.screen-topbar {
  display: flex;
  gap: 8px;
  padding: 5px 9px 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.screen-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.discord-column {
  background: rgba(255, 255, 255, 0.04);
}

.screen-main {
  padding: 16px;
}

.screen-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.brand-panel img {
  width: 48px;
  height: 48px;
}

.brand-panel p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.stats-panel {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-line {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.mini-line.green {
  background: linear-gradient(90deg, var(--green), #b7eb75);
}

.mini-line.short {
  width: 70%;
}

.stats-panel button {
  justify-self: end;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #72da49 0%, #48b73d 100%);
  color: white;
  font-weight: 700;
}

/* Homepage v3 */
.home-v3 .primary-nav {
  flex: 1;
  justify-content: center;
}

.home-v3-main {
  position: relative;
}

.home-v3-hero {
  position: relative;
  width: 100vw;
  min-height: 625px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px max(28px, calc((100vw - 1390px) / 2));
  display: grid;
  grid-template-columns: minmax(420px, 530px) minmax(560px, 1fr);
  align-items: center;
  gap: 56px;
  background:
    radial-gradient(circle at 64% 55%, rgba(123, 213, 57, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    linear-gradient(180deg, #343d46 0%, #2d353f 100%);
}

.home-v3-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  align-content: center;
  padding-top: 6px;
}

.home-v3-copy h1 {
  margin: 0;
  max-width: 560px;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: clamp(4.4rem, 5.2vw, 5.9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.home-v3-copy h1 span {
  color: var(--green);
}




.home-v3-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.10rem;
  line-height: 1.55;
}

.home-v3-main-cta {
  min-width: 380px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.home-v3-main-cta img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-v3-main-cta .cta-spawnbot {
  color: #0f141b;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-v3-cta-row {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
  transform: translateY(62px);
}

.home-v3-visual {
  position: relative;
  min-height: 500px;
  perspective: 1100px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.js-parallax-layer {
  --base-transform: translateZ(0px);
  --tx: 0px;
  --ty: 0px;
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  will-change: transform;
  transform: var(--base-transform) translate3d(var(--tx), var(--ty), 0) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-v3-glow {
  position: absolute;
  z-index: -2;
  --base-transform: translateZ(-180px);
  left: 19%;
  right: 10%;
  bottom: -1%;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 213, 57, 0.42), transparent 70%);
}

.home-v3-visual-backdrop {
  position: absolute;
  z-index: -1;
  transform: translateZ(-140px);
  left: 12%;
  right: 12%;
  top: 11%;
  bottom: 4%;
  border-radius: 42% 42% 32% 32%;
  background:
    radial-gradient(circle at center, rgba(167, 235, 124, 0.5), rgba(123, 213, 57, 0.12) 52%, transparent 53%),
    radial-gradient(circle at 30% 62%, rgba(123, 213, 57, 0.18), transparent 28%),
    radial-gradient(circle at 74% 64%, rgba(123, 213, 57, 0.16), transparent 24%);
  filter: blur(2px);
}

.home-v3-device {
  position: absolute;
  z-index: 2;
  left: 8%;
  right: 2%;
  top: 18%;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(29, 35, 42, 0.98), rgba(18, 24, 29, 0.98));
  box-shadow: var(--shadow-dark);
}

.home-v3-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(79, 88, 100, 0.88);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.home-v3 .badge-community {
  top: 26%;
  left: -1%;
}

.home-v3 .badge-fast {
  top: 48%;
  right: -1%;
}

.home-v3-pin {
  position: absolute;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.home-v3-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: white;
}

.home-v3 .pin-green {
  top: 16%;
  left: 10%;
  background: #78d74a;
}

.home-v3 .pin-orange {
  top: 10%;
  right: 12%;
  background: #ea8f35;
}

.home-v3-pickaxe {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 11%;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  --base-transform: rotate(-28deg);
  background: linear-gradient(180deg, #efcb73, #ca8728);
}

.home-v3-pickaxe::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.home-v3-install-zone {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -18px;
  padding: 112px 48px 70px;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.92), rgba(243, 243, 245, 0.98) 54%, #ececef 100%);
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.home-v3-install-inner {
  width: min(calc(100% - 96px), 1280px);
  margin: 0 auto;
}

.home-v3-section-title,
.home-v2-section-title {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.home-v3-section-title h2,
.home-v2-section-title h2 {
  margin: 0;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: clamp(2.9rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  color: var(--text-dark);
}

.home-v3-section-title span,
.home-v2-section-title span {
  color: #76c73e;
}

.home-v3-steps {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(41, 52, 65, 0.08);
  box-shadow: 0 20px 40px rgba(37, 48, 60, 0.08);
  overflow: hidden;
}

.home-v3-step {
  padding: 34px 28px 30px;
  text-align: center;
}

.home-v3-step + .home-v3-step {
  border-left: 1px solid rgba(41, 52, 65, 0.08);
}

.home-v3-step-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f5f6f8, #e5e8ed);
  box-shadow: 0 14px 28px rgba(37, 48, 60, 0.08);
}

.home-v3-step h3 {
  margin: 0;
  font-family: "Rajdhani", "Bahnschrift", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-dark);
}

.home-v3-step p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 1.22rem;
}

.home-v3-links {
  width: min(100%, 960px);
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-v3-links a {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(49, 58, 71, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text-dark);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .page-grid-3,
  .feature-grid,
  .pricing-grid,
  .content-grid.two-columns,
  .two-columns,
  .changelog-layout {
    grid-template-columns: 1fr;
  }

  .site-footer.dark-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-items: start;
  }

  .home-v3-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 110px;
  }

  .home-v3-copy {
    justify-items: center;
    text-align: center;
  }

  .home-v3-copy p {
    margin-inline: auto;
  }

  .home-v3-visual {
    max-width: 820px;
    width: 100%;
    min-height: 470px;
    margin: 0 auto;
  }

  .home-v3-cta-row {
    justify-content: center;
    transform: translateY(42px);
  }

  .home-v3-steps {
    grid-template-columns: 1fr;
  }

  .home-v3-step + .home-v3-step {
    border-left: 0;
    border-top: 1px solid rgba(41, 52, 65, 0.08);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));

  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
    align-items: center;
    gap: 10px 12px;
  }

  .site-header > .brand {
    grid-area: brand;
    min-width: 0;
  }

  .site-header > .menu-toggle {
    grid-area: toggle;
    margin-left: 0;
  }

  .site-header > .primary-nav {
    grid-area: nav;
    justify-content: stretch;
    gap: 8px;
  }

  .site-header > .header-actions {
    grid-area: actions;
    gap: 8px;
  }

  .site-header .primary-nav a,
  .site-header .header-actions .btn {
    width: 100%;
  }


  .home-v3-copy p {
  font-size: 1.38rem;
}

  .site-header {
    top: 10px;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav,
  .header-actions {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .page-main.page-surface {
    padding: 22px 18px;
    border-radius: 28px;
  }

  .home-v3-hero {
    min-height: 0;
    padding: 22px 20px 94px;
  }

  .home-v3-copy {
    gap: 18px;
    padding-top: 0;
  }

  .home-v3-copy h1 {
    font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

  .home-v3-main-cta {
    min-width: 0;
    width: 100%;
  }

  .home-v3-cta-row {
    width: 100%;
    transform: translateY(34px);
  }

  .home-v3-visual {
    min-height: 340px;
  }

  .home-v3-device {
    left: 5%;
    right: 5%;
    top: 22%;
  }

  .home-v3-device .screen-body {
    min-height: 180px;
    grid-template-columns: 48px 1fr;
  }

  .home-v3-device .brand-panel strong {
    font-size: 1.2rem;
  }

  .home-v3-badge,
  .home-v3-pickaxe,
  .home-v3-pin {
    transform: scale(0.8);
  }

  .home-v3 .badge-community {
    left: -2%;
  }

  .home-v3 .badge-fast {
    right: -2%;
  }

  .home-v3-install-zone {
    margin-top: -10px;
    padding: 76px 18px 48px;
    border-top-left-radius: 44px;
    border-top-right-radius: 44px;
  }

  .home-v3-install-inner {
    width: 100%;
  }

  .home-v3-step h3 {
    font-size: 1.6rem;
  }

  .home-v3-step p {
    font-size: 1rem;
  }

  .site-footer.dark-footer {
    padding-bottom: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .pricing-table-header {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-filter {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-parallax-layer {
    transition: none;
    transform: var(--base-transform);
  }
}

.spin-bolt {
  display: inline-block;
  transform-origin: 50% 50%;
  animation: bolt-spin-illusion 1.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes bolt-spin-illusion {
  0% {
    transform: perspective(280px) rotateY(0deg) scaleX(1);
  }
  25% {
    transform: perspective(280px) rotateY(38deg) scaleX(0.72);
  }
  50% {
    transform: perspective(280px) rotateY(84deg) scaleX(0.18);
  }
  75% {
    transform: perspective(280px) rotateY(38deg) scaleX(0.72);
  }
  100% {
    transform: perspective(280px) rotateY(0deg) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spin-bolt {
    animation: none;
  }
}








