:root {
  --background: #020103;
  --foreground: #f8f8f8;
  --card: #08040b;
  --card-foreground: #f8f8f8;
  --primary: #b726ed;
  --primary-foreground: #f8f8f8;
  --secondary: #1a1220;
  --accent: #9420c4;
  --muted-foreground: #8f8f8f;
  --border: #261e2c;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-mono: "Consolas", "Courier New", monospace;
  --max-width: 80rem;
  --nav-height: 4.5rem;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 0.5rem);
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid rgba(248, 248, 248, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.5rem 0.75rem;
  background: #fff;
  color: #111;
  border-radius: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.fa-solid,
.fa-regular,
.install-icon-wrap i,
.install-btn-icon i,
.install-btn-action i,
.install-note i,
.help-icon i {
  font-style: normal;
}

.fa-regular,
.install-btn-action .fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fa-solid,
.install-icon-wrap i,
.install-btn-icon i,
.install-note i,
.help-icon i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(2, 1, 3, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  flex-shrink: 0;
  z-index: 2;
}

.nav-logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.55);
  transition: color 0.15s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--foreground);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--foreground);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
}

.nav-toggle {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  background: rgba(248, 248, 248, 0.05);
  border: 1px solid rgba(248, 248, 248, 0.1);
  border-radius: 0.5rem;
  color: var(--foreground);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(248, 248, 248, 0.09);
}

.nav-toggle i {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: min(18rem, 85vw);
  height: 100vh;
  padding: calc(var(--nav-height) + 1rem) 1.25rem 1.5rem;
  background: rgba(8, 4, 11, 0.98);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer-links a {
  padding: 0.875rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.7);
  transition: background 0.2s, color 0.2s;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  background: rgba(248, 248, 248, 0.06);
  color: var(--foreground);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(2, 1, 3, 0.8), rgba(2, 1, 3, 0.5));
}

.hero-overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent, rgba(2, 1, 3, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }

  .hero-text {
    grid-column: span 6;
  }

  .hero-image {
    grid-column: span 6;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .hero-text {
    gap: 1.5rem;
  }
}

.hero-eyebrow {
  width: fit-content;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.55);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--foreground);
}

.hero-title-line {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(248, 248, 248, 0.72);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: rgba(248, 248, 248, 0.62);
  max-width: 30rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .hero-desc {
    font-size: 1rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-buttons .btn {
  min-height: 2.25rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.8125rem;
}

.hero-buttons .btn i {
  font-size: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.btn i {
  font-size: 0.875rem;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 18%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), transparent);
  transform: rotate(30deg);
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after {
  left: 140%;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.btn-discord {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-discord::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 18%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), transparent);
  transform: rotate(30deg);
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-discord:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.2);
}

.btn-discord:hover::after {
  left: 140%;
}

.btn-discord i {
  color: inherit;
}

.hero-image {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image {
    justify-content: flex-end;
  }
}

.hero-image img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1024px) {
  .hero-image img {
    max-height: 500px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(183, 38, 237, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: var(--primary);
}

.section-desc {
  color: rgba(248, 248, 248, 0.6);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .section-desc {
    font-size: 1.125rem;
  }
}

.install {
  position: relative;
  z-index: 1;
  padding: 5rem 0 0;
}

@media (min-width: 1024px) {
  .install {
    padding: 6rem 0 0;
  }
}

.install-inner {
  max-width: 64rem;
}

.install-header {
  margin-bottom: 3.5rem;
}

.install-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.install-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #71717a;
  margin: 0.5rem 0 0;
  max-width: 32rem;
  line-height: 1.5;
}

.install-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .install-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
}

.install-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-sans);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.install-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.install-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.install-card:hover::before {
  opacity: 1;
}

.install-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.install-icon i {
  font-size: 0.875rem;
  color: #71717a;
  transition: color 0.3s ease;
}

.install-card:hover .install-icon i {
  color: #d4d4d8;
}

.install-step {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
}

.install-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.install-card > p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.625;
  color: #71717a;
  flex: 1;
}

.install-card-foot {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.25rem;
  min-height: 5rem;
  flex-shrink: 0;
}

.install-note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #a1a1aa;
  box-sizing: border-box;
}

.install-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.install-btn i {
  font-size: 0.6875rem;
  flex-shrink: 0;
}

.install-btn,
.install-btn-sec {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
}

.install-btn:hover,
.install-btn-sec:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.install-btn-pri {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.install-btn-pri::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 18%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), transparent);
  transform: rotate(30deg);
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.install-btn-pri:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #000;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.2);
}

.install-btn-pri:hover::after {
  left: 140%;
}

.help-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  overflow: hidden;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.5rem;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.help-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.help-box:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.5);
}

.help-box:hover::before {
  opacity: 1;
}

@media (min-width: 640px) {
  .help-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.help-text h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.help-text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .install-card {
    transition: none;
  }

  .install-card:hover {
    transform: none;
  }
}

.features {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .features {
    padding: 6rem 0;
  }
}

.features-inner {
  max-width: 64rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  padding: 0.2rem 0.625rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
}

.section-tag i {
  font-size: 0.5625rem;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.features-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #71717a;
  margin: 0.5rem 0 0;
  max-width: 32rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-icon i {
  font-size: 0.875rem;
  color: #71717a;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: #d4d4d8;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.feature-card > p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.625;
  color: #71717a;
}

.card-hover-reveal .card-hover-reveal-inner {
  opacity: 0.9;
  transform: translateY(6px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;
}

.card-hover-reveal:hover .card-hover-reveal-inner {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-reveal:hover .card-hover-reveal-inner:nth-child(1) {
  transition-delay: 0s;
}

.card-hover-reveal:hover .card-hover-reveal-inner:nth-child(2) {
  transition-delay: 0.04s;
}

.card-hover-reveal:hover .card-hover-reveal-inner:nth-child(3) {
  transition-delay: 0.08s;
}

.card-hover-reveal:hover .card-hover-reveal-inner:nth-child(4) {
  transition-delay: 0.12s;
}

.card-hover-reveal:hover .card-hover-reveal-inner:nth-child(5) {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .install-card,
  .help-box,
  .card-hover-reveal .card-hover-reveal-inner {
    transition: none;
  }

  .feature-card:hover,
  .install-card:hover {
    transform: none;
  }

  .card-hover-reveal .card-hover-reveal-inner {
    opacity: 1;
    transform: none;
  }
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
}

.footer-inner {
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
  }
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-brand:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-links button {
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #52525b;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #d4d4d8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
  opacity: 1;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.18s; }
.stagger-4 { transition-delay: 0.24s; }
.stagger-5 { transition-delay: 0.3s; }
.stagger-6 { transition-delay: 0.36s; }

.install-card.reveal-scale.revealed:hover,
.feature-card.reveal-scale.revealed:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-fade,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
