:root {
  --bg: #0a0e1a;
  --bg-dark: #0d1422;
  --text: #dfe2f3;
  --muted: #d0c5af;
  --gold: #f2ca50;
  --gold-2: #d4af37;
  --gold-dark: #3c2f00;
  --cyan: #22d3ee;
  --cyan-2: #06b6d4;
  --cyan-dark: #083344;
  --green: #50df38;
  --red: #ef4444;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --container: min(1180px, calc(100vw - 48px));
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan-2));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
  z-index: 100;
  transition: width 60ms linear;
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06), rgba(242, 202, 80, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 200ms ease, top 200ms ease, opacity 300ms ease;
  will-change: left, top;
  opacity: 0;
}

/* ── Noise Texture Overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(242, 202, 80, 0.08), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(34, 211, 238, 0.1), transparent 22%),
    radial-gradient(circle at 50% 60%, rgba(6, 182, 212, 0.04), transparent 30%),
    linear-gradient(180deg, #09101d 0%, #0a0e1a 34%, #0b1120 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Focus-visible styles for keyboard accessibility ── */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.button:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(242, 202, 80, 0.25);
}

.faq-item__trigger:focus-visible {
  outline-offset: -2px;
  border-radius: 1rem;
}

button,
input {
  font: inherit;
}

.shell {
  width: var(--container);
  margin: 0 auto;
}

.shell--narrow {
  width: min(760px, calc(100vw - 48px));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.site-glow--left {
  left: -10rem;
  top: 12rem;
  background: rgba(242, 202, 80, 0.24);
}

.site-glow--right {
  right: -10rem;
  top: 5rem;
  background: rgba(34, 211, 238, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8, 12, 23, 0.92), rgba(8, 12, 23, 0.74));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.brand,
.site-nav,
.site-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand__logo {
  height: 2.6rem;
  width: auto;
  display: block;
}

.site-nav {
  gap: 1.4rem;
  color: rgba(223, 226, 243, 0.72);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-actions__link:hover {
  color: var(--cyan);
}

.site-nav a,
.site-actions__link {
  transition: color 200ms ease;
}

.site-actions {
  gap: 1rem;
}

.site-actions__link {
  color: rgba(223, 226, 243, 0.76);
  font-size: 0.95rem;
}

/* ── Mobile hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  padding: 0.8rem 1.2rem;
  font-size: 0.92rem;
}

.button--solid {
  color: var(--gold-dark);
  background: linear-gradient(45deg, var(--gold) 0%, var(--gold-2) 100%);
  box-shadow: 0 0 20px rgba(242, 202, 80, 0.3);
}

.button--ghost {
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  background: rgba(13, 20, 33, 0.35);
  transition: transform 180ms ease, background 200ms ease, border-color 200ms ease;
}

.button--ghost:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.5);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.08), rgba(10, 14, 26, 0.08)),
    url("./assets/hero-bg.png") center / cover no-repeat;
  opacity: 0.4;
}

.hero__overlay--horizontal {
  background: linear-gradient(90deg, #0a0e1a 0%, rgba(10, 14, 26, 0.82) 52%, rgba(10, 14, 26, 0) 100%);
}

.hero__overlay--vertical {
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.45) 0%, rgba(10, 14, 26, 0) 48%, #0a0e1a 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  padding: 6.25rem 0 4rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 40rem;
  position: relative;
  z-index: 2;
}

.hero__visual {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
  width: min(40rem, 42vw);
  z-index: 1;
}

.hero-video-card {
  position: relative;
  width: 100%;
  padding: 0.9rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 24, 39, 0.96), rgba(10, 14, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 35%);
  pointer-events: none;
}

.hero-video-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 1.2rem;
}

.eyebrow,
.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(242, 202, 80, 0.2);
  border-radius: 12px;
  background: rgba(242, 202, 80, 0.05);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__title,
.section-heading h2,
.resources__copy h2,
.footer-cta h2 {
  margin: 0;
  font-family: "Epilogue", sans-serif;
}

.hero__title {
  display: grid;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero__title-highlight {
  color: var(--gold);
}

.hero__copy {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(34rem, 100%);
  padding: 1.1rem 0 0;
  margin: 0;
  list-style: none;
  color: rgba(223, 226, 243, 0.78);
  font-size: 0.9rem;
}

.hero__meta li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
  cursor: default;
}

.hero__meta li span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__meta li:hover {
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.08);
}

/* ── Hero Scroll Indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(34, 211, 238, 0.5);
  text-decoration: none;
  transition: color 300ms ease;
}

.hero__scroll:hover {
  color: var(--cyan);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(18, 24, 39, 0.92), rgba(12, 17, 32, 0.96));
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2.4rem 2rem;
  flex-shrink: 0;
}

.marquee__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(223, 226, 243, 0.5);
  flex-shrink: 0;
  transition: color 300ms ease;
}

.marquee__logo svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.marquee__logo img {
  display: block;
  height: 2rem;
  width: auto;
  object-fit: contain;
  transform: translateY(-7px);
}

.marquee__logo--image {
  justify-content: center;
  color: inherit;
  filter: brightness(0.7);
}

.marquee__logo span {
  font-family: "Epilogue", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__logo--image span {
  transform: translateX(-5px);
}

.marquee__logo:hover {
  color: rgba(223, 226, 243, 0.9);
}

.marquee__group span {
  color: inherit;
}

.marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7rem;
  z-index: 1;
}

.marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section--tight {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.resources__copy h2,
.footer-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-heading p,
.footer-cta p,
.footer-copy {
  margin: 0;
  color: rgba(223, 226, 243, 0.7);
  line-height: 1.7;
}

.proof-desc {
  font-size: calc(1rem - 1px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(10, 14, 26, 0.88));
  box-shadow: var(--shadow);
  cursor: pointer;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 19, 0.08), rgba(6, 10, 19, 0.86) 56%, rgba(6, 10, 19, 0.97));
}

.service-card__media {
  position: absolute;
  inset: 0;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 2rem;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(242, 202, 80, 0.14);
  border: 1px solid rgba(242, 202, 80, 0.32);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card--dark .service-card__icon {
  background: rgba(34, 211, 238, 0.14);
  border-color: rgba(34, 211, 238, 0.32);
  color: var(--cyan);
}

.service-card h3,
.workflow-step h3,
.proof-group__head h3,
.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.service-card p,
.workflow-step p,
.faq-item__panel p {
  margin: 0;
  color: rgba(223, 226, 243, 0.72);
  line-height: 1.7;
}

.resources {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
}

.resources__copy {
  display: grid;
  gap: 1.35rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(223, 226, 243, 0.78);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.86), rgba(6, 182, 212, 0.4));
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.32);
}

.resources__callout {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(34, 211, 238, 0.14);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 1rem;
}

.resources__label {
  color: var(--cyan);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.resource-visual {
  position: relative;
  min-height: 36rem;
  display: grid;
  place-items: center;
}

.resource-visual__halo {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), rgba(242, 202, 80, 0.06), transparent 62%);
  filter: blur(16px);
}

.resource-visual__frame {
  position: relative;
  width: min(34rem, 100%);
  padding: 1rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 24, 39, 0.96), rgba(10, 14, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.resource-visual__frame img {
  width: 100%;
  height: auto;
  border-radius: 1.3rem;
  display: block;
}

/* ── Resource Visual Gallery (2 stacked frames) ── */
.resource-visual__gallery {
  position: relative;
  display: grid;
  gap: 1.25rem;
  width: min(34rem, 100%);
}

.resource-visual__gallery .resource-visual__frame {
  width: 100%;
}

.section--workflow {
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.98) 50%, rgba(11, 22, 34, 0.98) 100%),
    linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.03));
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-grid::before {
  content: "";
  position: absolute;
  top: 2.45rem;
  left: 7.5%;
  right: 7.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.28), rgba(242, 202, 80, 0.2), transparent);
}

.workflow-step {
  position: relative;
  padding: 0 1rem;
  text-align: center;
  cursor: pointer;
}

.workflow-step__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.25rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(242, 202, 80, 0.14), rgba(242, 202, 80, 0.03));
  border: 1px solid rgba(242, 202, 80, 0.28);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.workflow-step:nth-child(even) .workflow-step__icon {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.14), rgba(34, 211, 238, 0.03));
  border-color: rgba(34, 211, 238, 0.28);
}

.workflow-step:hover .workflow-step__icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(242, 202, 80, 0.15);
}

.workflow-step:nth-child(even):hover .workflow-step__icon {
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.15);
}

.workflow-step__icon img {
  width: 3rem;
  height: 3rem;
}

.section--proof {
  padding-top: 6rem;
}

.proof-group + .proof-group {
  margin-top: 4rem;
}

.proof-group__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.proof-group__head h3 {
  white-space: nowrap;
}

.proof-group__head span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  overflow: hidden;
  margin: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 300ms ease;
}

.proof-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform 280ms ease;
}

.proof-card:hover img {
  transform: scale(1.04);
}

/* ── Proof Grid Variants ── */
.proof-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Proof Screenshot Cards ── */
.proof-card--screenshot {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.04), rgba(10, 14, 26, 0.92));
  border-color: rgba(34, 211, 238, 0.12);
}

.proof-card--screenshot:hover {
  border-color: rgba(34, 211, 238, 0.3);
}

.proof-card--screenshot img {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.proof-card--screenshot figcaption {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.proof-card--screenshot figcaption strong {
  color: var(--cyan);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.proof-card--screenshot figcaption span {
  color: rgba(223, 226, 243, 0.55);
  font-size: 0.82rem;
}

.section--faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item:hover {
  border-color: rgba(34, 211, 238, 0.15);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger span:first-child {
  font-weight: 600;
}

.faq-item__icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-item__panel > p {
  overflow: hidden;
  padding: 0 1.5rem;
  margin: 0;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__panel > p {
  padding-bottom: 1.35rem;
}

/* ── Refund Policy Section ── */
.section--refund {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.03), rgba(255, 255, 255, 0.01));
}

.refund-content {
  max-width: 680px;
  margin: 0 auto;
}

.refund-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 1rem;
  background: rgba(34, 211, 238, 0.04);
}

.refund-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--cyan);
}

.refund-card__icon svg {
  width: 100%;
  height: 100%;
}

.refund-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.refund-card strong {
  color: var(--cyan);
}

/* ── Attention Section ── */
.section--attention {
  background: linear-gradient(180deg, rgba(242, 202, 80, 0.03), rgba(255, 255, 255, 0.01));
}

.attention-content {
  max-width: 680px;
  margin: 0 auto;
}

.attention-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(242, 202, 80, 0.2);
  border-radius: 1rem;
  background: rgba(242, 202, 80, 0.04);
}

.attention-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
}

.attention-card__icon svg {
  width: 100%;
  height: 100%;
}

.attention-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.attention-card strong {
  color: var(--gold);
}

.site-footer {
  position: relative;
  padding: 7rem 0 2rem;
  background:
    radial-gradient(circle at center bottom, rgba(34, 211, 238, 0.08), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(242, 202, 80, 0.06), transparent 25%),
    linear-gradient(180deg, #0b1220 0%, #09101b 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px)),
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 62% 32%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: auto, 180px 180px, 220px 220px, 240px 240px;
  opacity: 0.45;
}

.site-footer > .shell {
  position: relative;
  z-index: 1;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: end;
  padding-top: 3rem;
}

.footer-cta > div {
  display: grid;
  gap: 1.2rem;
}

.footer-cta__action {
  justify-self: end;
  display: grid;
  gap: 1rem;
}

.status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  margin-right: 0.45rem;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.footer-cta__note {
  font-size: calc(1rem - 1px);
}

.footer-divider {
  height: 1px;
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
  font-family: "Epilogue", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.footer-copy--small {
  margin-bottom: 1rem;
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: rgba(223, 226, 243, 0.72);
}

.footer-grid ul a {
  transition: color 200ms ease;
}

.footer-grid ul a:hover {
  color: var(--gold);
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.85rem;
  overflow: hidden;
}

.newsletter-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 0;
  color: var(--text);
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(223, 226, 243, 0.46);
}

.newsletter-form button {
  border: 0;
  padding: 0 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  cursor: pointer;
  transition: filter 200ms ease;
}

.newsletter-form button:hover {
  filter: brightness(1.1);
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin: 0.75rem 0 0.5rem;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(223, 226, 243, 0.76);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.socials a:hover {
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.06);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  color: rgba(223, 226, 243, 0.5);
  font-size: 0.9rem;
}

/* ── Problem Section ── */
.section--problem {
  background:
    radial-gradient(circle at 12% 20%, rgba(239, 68, 68, 0.08), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.04), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(239, 68, 68, 0.03), rgba(255, 255, 255, 0.01));
}

.problem-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.problem-intro {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 1.25rem;
}

.problem-intro h2 {
  margin: 0;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.problem-intro__copy {
  margin: 0;
  color: rgba(223, 226, 243, 0.68);
  line-height: 1.75;
  max-width: 34rem;
}

.problem-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.05);
  color: rgba(223, 226, 243, 0.78);
  font-size: 0.88rem;
}

/* ── Problem Proof Screenshot ── */
.problem-proof {
  margin-top: 3rem;
  max-width: 900px;
  margin-inline: auto;
}

.problem-proof__frame {
  position: relative;
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.problem-proof__frame:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 24px 70px rgba(239, 68, 68, 0.08);
}

.problem-proof__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.problem-proof__frame figcaption {
  padding: 1rem 1.5rem;
  text-align: center;
  color: rgba(239, 68, 68, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid rgba(239, 68, 68, 0.1);
  background: rgba(239, 68, 68, 0.02);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.problem-card {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04), rgba(10, 14, 26, 0.9));
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 42%);
  pointer-events: none;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(239, 68, 68, 0.1);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06), rgba(10, 14, 26, 0.94));
}

.problem-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.problem-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(223, 226, 243, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.16);
  color: var(--red);
}

.problem-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.problem-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.26rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.problem-card p {
  margin: 0;
  color: rgba(223, 226, 243, 0.62);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── Stats Section ── */
.section--stats {
  padding: 5rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(circle at 30% 0%, rgba(242, 202, 80, 0.07), transparent 35%),
    radial-gradient(circle at 70% 100%, rgba(34, 211, 238, 0.06), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.stats-heading {
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(10, 14, 26, 0.88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.16);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.stat-card--gold {
  background: linear-gradient(180deg, rgba(242, 202, 80, 0.1), rgba(10, 14, 26, 0.92));
}

.stat-card--dark {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(10, 14, 26, 0.92));
}

.stat-card--dark .stat-card__icon,
.stat-card--dark .stat-card__value {
  color: var(--cyan);
}

.stat-card--green {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(10, 14, 26, 0.92));
}

.stat-card--outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(10, 14, 26, 0.9));
}

.stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.stat-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.stat-card__value,
.stat-item__number {
  display: block;
  font-family: "Epilogue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold);
}

.stat-card--green .stat-card__icon,
.stat-card--green .stat-card__value {
  color: var(--cyan);
}

.stat-card__label {
  display: block;
  margin-top: 0.8rem;
  color: rgba(223, 226, 243, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card__desc {
  margin: 0.9rem 0 0;
  color: rgba(223, 226, 243, 0.58);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ── Comparison Table ── */
.compare-table {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.compare-table__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table__label {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.compare-table__label--bad {
  color: var(--red);
}

.compare-table__label--good {
  color: var(--cyan);
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 200ms ease;
}

.compare-table__row:last-child {
  border-bottom: 0;
}

.compare-table__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.compare-table__feature {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table__cell {
  padding: 1.1rem 1.5rem;
  text-align: center;
  color: rgba(223, 226, 243, 0.7);
  font-size: 0.95rem;
}

.compare-table__cell--bad {
  color: rgba(239, 68, 68, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table__cell--good {
  color: rgba(34, 211, 238, 0.9);
  font-weight: 500;
}

/* ── Benefit Cards ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 14, 26, 0.92));
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.benefit-card:nth-child(odd):hover {
  border-color: rgba(242, 202, 80, 0.3);
  box-shadow: 0 18px 48px rgba(242, 202, 80, 0.08);
}

.benefit-card:nth-child(even):hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 18px 48px rgba(34, 211, 238, 0.08);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.benefit-card:hover .benefit-card__icon {
  transform: translateY(-2px);
}

.benefit-card__icon--gold {
  background: linear-gradient(180deg, rgba(242, 202, 80, 0.16), rgba(242, 202, 80, 0.04));
  border: 1px solid rgba(242, 202, 80, 0.3);
  color: var(--gold);
}

.benefit-card:hover .benefit-card__icon--gold {
  box-shadow: 0 6px 20px rgba(242, 202, 80, 0.2);
}

.benefit-card__icon--cyan {
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.16), rgba(34, 211, 238, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
}

.benefit-card:hover .benefit-card__icon--cyan {
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.2);
}

.benefit-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: rgba(223, 226, 243, 0.65);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.06);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.5rem;
}

.testimonial-card blockquote p {
  margin: 0;
  color: rgba(223, 226, 243, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 202, 80, 0.2), rgba(242, 202, 80, 0.05));
  border: 1px solid rgba(242, 202, 80, 0.25);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card__author span {
  color: rgba(223, 226, 243, 0.5);
  font-size: 0.85rem;
}

/* ── 3D Card Tilt ── */
.service-card {
  transform-style: preserve-3d;
  transition: transform 400ms ease;
}

/* ── Magnetic Button ── */
.button--solid {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button--solid:hover {
  box-shadow: 0 0 30px rgba(242, 202, 80, 0.45);
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 202, 80, 0.3);
}

.lang-switcher__btn svg {
  transition: transform 250ms ease;
}

.lang-switcher.is-open .lang-switcher__btn svg {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  background: rgba(13, 20, 34, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 50;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu a,
.lang-switcher__menu span,
.lang-switcher__menu button {
  display: block;
  width: 100%;
  padding: 8px 14px;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.lang-switcher__menu a:hover,
.lang-switcher__menu button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-switcher__menu .is-active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  font-weight: 600;
  cursor: default;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Products Section ── */
.section--products {
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 202, 80, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 500;
}

.product-highlight svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.product-tab {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 226, 243, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}

.product-tab:hover {
  border-color: rgba(34, 211, 238, 0.2);
  color: var(--text);
}

.product-tab.is-active {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.9), rgba(8, 145, 178, 0.95));
  border-color: rgba(34, 211, 238, 0.5);
  color: #fff;
}

.product-panel {
  display: none;
}

.product-panel.is-active {
  display: block;
}

.product-row-label {
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(223, 226, 243, 0.55);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-row-label:first-child {
  margin-top: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(10, 14, 26, 0.92));
  transition: border-color 200ms ease, transform 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}

.product-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.product-card--gold {
  border-color: rgba(34, 211, 238, 0.2);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(10, 14, 26, 0.92));
}

.product-card--gold:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.08);
}

.product-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(223, 226, 243, 0.65);
  font-size: 0.82rem;
}

.product-card__fb {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.35rem;
  border-radius: 0.4rem;
  background: rgba(34, 211, 238, 0.12);
  box-sizing: content-box;
  color: rgba(34, 211, 238, 0.8);
  flex-shrink: 0;
}

.product-card__limit {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.product-card--gold .product-card__limit {
  color: var(--cyan);
}

.product-card p {
  margin: 0;
  color: rgba(223, 226, 243, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

.product-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(242, 202, 80, 0.12);
  background: rgba(242, 202, 80, 0.04);
  color: rgba(223, 226, 243, 0.7);
  font-size: 0.9rem;
}

.product-note svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Payment Section ── */
.section--payment {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.payment-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 54rem;
  margin: 0 auto;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(10, 14, 26, 0.9));
  transition: border-color 200ms ease, box-shadow 300ms ease;
}

.payment-card:hover {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Left: icon + coin name */
.payment-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 140px;
}

.payment-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.payment-card__icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.payment-card__icon--usdt {
  background: rgba(38, 161, 123, 0.12);
  border-color: rgba(38, 161, 123, 0.25);
  color: #26a17b;
}

.payment-card__icon--btc {
  background: rgba(247, 147, 26, 0.12);
  border-color: rgba(247, 147, 26, 0.25);
  color: #f7931a;
}

.payment-card__icon--eth {
  background: rgba(98, 126, 234, 0.12);
  border-color: rgba(98, 126, 234, 0.25);
  color: #627eea;
}

.payment-card__info {
  display: flex;
  flex-direction: column;
}

.payment-card__info h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.payment-card__info p {
  margin: 0;
  color: rgba(223, 226, 243, 0.5);
  font-size: 0.78rem;
}

/* Right: wallet addresses */
.wallet-addresses {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.wallet-item:hover {
  border-color: rgba(242, 202, 80, 0.3);
}

.wallet-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(242, 202, 80, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 48px;
  text-align: center;
}

.wallet-addr {
  flex: 1;
  min-width: 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}

.wallet-copy {
  flex-shrink: 0;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--gold);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.wallet-copy:hover {
  background: var(--gold-2);
}

.wallet-copy:active {
  transform: scale(0.94);
}

.wallet-copy.is-copied {
  background: var(--green);
}

/* Tablet */
@media (max-width: 768px) {
  .payment-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .payment-card__header {
    min-width: unset;
  }

  .wallet-addr {
    font-size: 0.72rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .payment-card {
    padding: 1rem;
    border-radius: 0.75rem;
  }

  .wallet-item {
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 10px;
  }

  .wallet-addr {
    width: 100%;
    order: 3;
    font-size: 0.68rem;
    white-space: normal;
    word-break: break-all;
    overflow: visible;
  }

  .wallet-copy {
    margin-left: auto;
  }
}

/* ── Service Fees / Pricing Section ── */
.section--pricing {
  background:
    radial-gradient(circle at 50% 30%, rgba(242, 202, 80, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.pricing-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(10, 14, 26, 0.9));
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-badge svg {
  width: 1.1rem;
  height: 1.1rem;
}

.pricing-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: calc(1rem - 1px);
}

/* ── Floating Action Buttons ── */
.fab-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 50;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.fab:hover {
  transform: translateY(-3px);
}

.fab svg {
  flex-shrink: 0;
}

/* ── Contact FAB (Telegram) ── */
.fab--contact {
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow:
    0 4px 20px rgba(34, 211, 238, 0.35),
    0 0 40px rgba(34, 211, 238, 0.1);
  animation: fab-pulse 3s ease-in-out infinite;
}

.fab--contact:hover {
  box-shadow:
    0 8px 30px rgba(34, 211, 238, 0.45),
    0 0 60px rgba(34, 211, 238, 0.15);
}

.fab--contact svg {
  width: 1.15rem;
  height: 1.15rem;
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 211, 238, 0.35), 0 0 40px rgba(34, 211, 238, 0.1); }
  50% { box-shadow: 0 4px 28px rgba(34, 211, 238, 0.5), 0 0 60px rgba(34, 211, 238, 0.2); }
}

/* ── Back to Top FAB ── */
.fab--top {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease, background 200ms ease, border-color 200ms ease;
}

.fab--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab--top:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  transform: translateY(-3px);
}

.fab--top svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(8, 12, 23, 0.97);
    backdrop-filter: blur(20px);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 250ms ease, visibility 250ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-actions {
    display: none;
  }

  /* Show lang switcher on mobile - repositioned near hamburger */
  .lang-switcher {
    position: fixed;
    top: 20px;
    right: 68px;
    z-index: 32;
  }

  .nav-toggle {
    display: flex;
    z-index: 31;
  }

  .service-grid,
  .resources,
  .workflow-grid,
  .proof-grid,
  .proof-grid--3,
  .footer-cta,
  .footer-grid,
  .stats-grid,
  .testimonial-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .problem-intro {
    position: static;
  }

  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .compare-table__head,
  .compare-table__row {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.88rem;
  }

  .cursor-glow {
    display: none;
  }

  .workflow-grid::before {
    display: none;
  }

  .footer-cta__action {
    justify-self: start;
  }

  .resource-visual {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-actions__link {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__inner {
    min-height: 100vh;
    padding: 6.4rem 0 4rem;
  }

  .hero__visual {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }

  .hero-video-card {
    width: min(26rem, 100%);
  }

  .hero__scroll {
    bottom: 1.5rem;
  }

  .hero__title {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .hero__copy {
    font-size: 1.05rem;
  }

  .hero__meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .resources,
  .workflow-grid,
  .proof-grid,
  .proof-grid--2,
  .proof-grid--3,
  .footer-cta,
  .footer-grid,
  .stats-grid,
  .testimonial-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    gap: 0.4rem;
  }

  .product-tab {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-intro__badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .compare-table__head,
  .compare-table__row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .compare-table__feature {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .section {
    padding: 5rem 0;
  }

  .proof-card img {
    aspect-ratio: 1 / 1;
  }

  .footer-brand {
    font-size: 1.75rem;
  }

  .fab-group {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .fab__label {
    display: none;
  }

  .fab--contact {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    justify-content: center;
  }

  .fab--contact svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* ── Respect user motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee__track {
    animation: none;
  }

  .hero__content {
    animation: none;
    opacity: 1;
  }
}

/* ── Image Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

/* Image wrapper for zoom + pan */
.lightbox__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}

.lightbox__img-wrap.is-dragging {
  cursor: grabbing;
}

.lightbox__img-wrap:not(.is-zoomed) {
  cursor: zoom-in;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6), 0 0 120px rgba(34, 211, 238, 0.08);
  transform: scale(0.92);
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox.is-active .lightbox__img {
  transform: scale(1);
}

/* Top toolbar */
.lightbox__toolbar {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.lightbox__btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.lightbox__btn:active {
  transform: scale(0.92);
}

.lightbox__btn--close:hover {
  background: rgba(239, 68, 68, 0.35);
  border-color: rgba(239, 68, 68, 0.6);
}

.lightbox__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Zoom level indicator */
.lightbox__zoom-level {
  position: absolute;
  top: 68px;
  right: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.lightbox__zoom-level.is-visible {
  opacity: 1;
}

/* Navigation arrows */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* Bottom bar */
.lightbox__bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Clickable cursor on previewable images */
.resource-visual__frame img,
.proof-card img {
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.resource-visual__frame img:hover,
.proof-card img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* ── Lightbox Mobile Responsive ── */
@media (max-width: 768px) {
  .lightbox__toolbar {
    top: 12px;
    right: 12px;
    gap: 6px;
  }

  .lightbox__btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox__btn svg {
    width: 18px;
    height: 18px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }

  .lightbox__img {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 8px;
  }

  .lightbox__zoom-level {
    top: 60px;
    right: 14px;
    font-size: 11px;
  }

  .lightbox__bottom {
    bottom: 14px;
    gap: 10px;
  }

  .lightbox__counter {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .lightbox__toolbar {
    top: 8px;
    right: 8px;
    gap: 5px;
  }

  .lightbox__btn {
    width: 36px;
    height: 36px;
  }

  .lightbox__btn svg {
    width: 16px;
    height: 16px;
  }

  .lightbox__nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }

  .lightbox__img {
    max-width: 98vw;
    max-height: 78vh;
    border-radius: 6px;
  }

  .lightbox__bottom {
    bottom: 10px;
  }
}
