:root {
  color-scheme: dark;
  --bg: #0a0b0c;
  --bg-elev: rgba(255, 255, 255, 0.06);
  --bg-elev-strong: rgba(255, 255, 255, 0.12);
  --text: #e7ebf0;
  --muted: #9aa4b2;
  --accent: #b6ff3b;
  --accent-strong: #8dff1f;
  --accent-soft: #c8ff6b;
  --accent-glow: rgba(182, 255, 59, 0.35);
  --stroke: rgba(255, 255, 255, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1160px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.8), rgba(8, 9, 10, 0.95)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 20% 10%, rgba(182, 255, 59, 0.12), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(182, 255, 59, 0.08), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(182, 255, 59, 0.1), transparent 45%);
  opacity: 0.75;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(182, 255, 59, 0.08), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.04), transparent 50%);
  opacity: 0.6;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  animation: drift 18s ease-in-out infinite;
}

.orb-1 {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(182, 255, 59, 0.22), transparent 60%);
  animation-duration: 20s;
}

.orb-2 {
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  animation-duration: 26s;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(13, 15, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.6px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 260px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 26px);
  opacity: 0.25;
  transform: rotate(-6deg);
  animation: slide-lines 16s linear infinite;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-wheel {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -160px;
  background: url("disk1.png") center/contain no-repeat;
  opacity: 0.7;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
  animation: spin 26s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-word {
  position: absolute;
  top: 40px;
  left: 6%;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(64px, 16vw, 260px);
  font-weight: 700;
  letter-spacing: -4px;
  color: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  margin: 0;
}

.subhead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.fact {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0a0b0c;
  box-shadow: 0 16px 40px rgba(182, 255, 59, 0.25);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-ghost:hover {
  border-color: rgba(182, 255, 59, 0.5);
  box-shadow: 0 16px 40px rgba(182, 255, 59, 0.12);
}

.hero-visual {
  position: relative;
}

.triptych {
  position: relative;
  min-height: 420px;
  perspective: 1200px;
}

.glass-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  position: absolute;
  width: min(320px, 42vw);
}

.card-inner {
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.glass-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 25px rgba(182, 255, 59, 0.2);
}

.lift {
  animation: float 7s ease-in-out infinite;
}

.glass-card img {
  display: block;
  width: 100%;
  height: auto;
}

.card-1 {
  top: -70px;
  left: 0;
  transform: rotate(-1deg);
  z-index: 2;
  width: 70%;
}

.card-2 {
  top: 50px;
  right: -110px;
  transform: translateY(-1%) rotate(1deg);
  width: 50%;
  z-index: 3;
}

.card-3 {
  bottom: -72px;
  left: 1%;
  transform: translateX(calc(-50% - 200px)) rotate(-2deg);
  width: 88%;
  z-index: 1;
}

.step-tag {
  position: absolute;
  top: -16px;
  left: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.6px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.step-tag::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -8px;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.step-tag.tilt-left {
  transform: rotate(-6deg);
}

.step-tag.tilt-right {
  transform: rotate(6deg);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-50%);
  opacity: 0.4;
}

.section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 2.3vw, 36px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  margin-top: 0;
  max-width: 620px;
}

.bullets {
  list-style: none;
  margin: 18px 0;
  padding: 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.bullets li::before {
  content: "•";
  margin-right: 10px;
  color: var(--accent);
}

.anchor {
  font-weight: 600;
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.problem {
  background: linear-gradient(180deg, rgba(10, 11, 12, 0.2), rgba(10, 11, 12, 0.7));
}

.how {
  background: linear-gradient(180deg, rgba(10, 11, 12, 0.7), rgba(10, 11, 12, 0.2));
}

.widget-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  margin-top: 32px;
}

.widget-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.widget-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #0a0b0c;
  background: var(--accent);
  font-weight: 600;
}

.chip.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.widget-body {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 18px;
}

.slot {
  border-radius: 18px;
  padding: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  margin-bottom: 12px;
}

.widget-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-card {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, rgba(182, 255, 59, 0.18), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  color: var(--muted);
}

.widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.widget-callout .callout-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(14px);
}

.callout-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.step-card,
.embed-card,
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-card::before,
.embed-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(182, 255, 59, 0.2);
  display: grid;
  place-items: center;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.embed-card .icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 0 16px var(--accent-glow);
}

.wl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.pricing .price-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(182, 255, 59, 0.35);
  box-shadow: 0 40px 100px rgba(20, 30, 10, 0.6);
  background: radial-gradient(circle at top, rgba(182, 255, 59, 0.12), rgba(255, 255, 255, 0.02));
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  margin: 12px 0 18px;
}

.fine {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  text-align: center;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-lines {
  0% {
    transform: translateX(-8%) rotate(-6deg);
  }
  100% {
    transform: translateX(8%) rotate(-6deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-wheel {
    width: 360px;
    height: 360px;
    right: -120px;
    top: -120px;
    opacity: 0.55;
  }

  .steps,
  .embed-grid {
    grid-template-columns: 1fr;
  }

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

  .triptych {
    min-height: 520px;
  }

  .glass-card {
    width: min(340px, 82vw);
  }

  .glass-card img {
    height: 68%;
  }

  .card-1 {
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
  }

  .card-2 {
    top: 160px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
  }

  .card-3 {
    bottom: 0;
    left: 50%;
    width: min(360px, 86vw);
  }

  .hero-word {
    font-size: clamp(56px, 18vw, 160px);
  }

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

  .widget-body {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .lift,
  .bg-orb,
  .hero::before,
  .hero::after {
    animation: none;
  }
}
