/* index.css */

:root {
  --bg-1: #050816;
  --bg-2: #0a1030;
  --bg-3: #12092d;

  --brand-logo: #22c55e;

  --text: #f7fbff;
  --muted: #c8d4f3;

  --cyan: #58f3ff;
  --blue: #5f8dff;
  --pink: #ff57d2;
  --lime: #8dff8a;
  --orange: #ffb25e;

  --border: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 243, 255, 0.10), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(255, 87, 210, 0.10), transparent 20%),
    radial-gradient(circle at 78% 78%, rgba(95, 141, 255, 0.08), transparent 24%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

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

/* ================= HEADER ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 12, 26, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brand-logo);
  font-weight: 700;
}

.site-mark {
  width: 36px;
  height: 36px;
  display: block;
  image-rendering: pixelated;
  filter:
    drop-shadow(0 0 8px rgba(88, 243, 255, 0.35))
    drop-shadow(0 0 18px rgba(255, 87, 210, 0.15));
}

.brand-text {
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 28px rgba(0,0,0,0.18);
}

.site-nav a {
  position: relative;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.14s ease,
    box-shadow 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 20px rgba(88, 243, 255, 0.08);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.hero-gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  will-change: transform;
}

.hero-gradient-1 {
  width: 360px;
  height: 360px;
  top: 8%;
  left: 8%;
  background: rgba(88, 243, 255, 0.30);
}

.hero-gradient-2 {
  width: 320px;
  height: 320px;
  top: 12%;
  right: 10%;
  background: rgba(255, 87, 210, 0.26);
}

.hero-gradient-3 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(95, 141, 255, 0.22);
}

.hero-rings {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  transform: translate(-50%, -50%);
  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 60px rgba(255,255,255,0.03),
    0 0 0 120px rgba(255,255,255,0.02),
    0 0 0 180px rgba(255,255,255,0.012);

  opacity: 1;
  animation: ringPulse 7s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,255,255,0));
  opacity: 0.7;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translate3d(0, 18px, 0) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, -110px, 0) scale(1.2);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  margin: 0;
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 850;
  color: var(--text);
  text-shadow: 0 0 30px rgba(88, 243, 255, 0.08);
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.typing-wrap {
  margin-top: 1.35rem;
  min-height: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 6px;
  vertical-align: -0.1em;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(88, 243, 255, 0.65);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ================= BUTTONS ================= */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255,255,255,0.22) 50%,
    transparent 80%
  );
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #08111f;
  box-shadow:
    0 12px 28px rgba(88, 243, 255, 0.18),
    0 6px 20px rgba(95, 141, 255, 0.14);
}

.btn-primary:hover {
  box-shadow:
    0 16px 34px rgba(88, 243, 255, 0.24),
    0 10px 26px rgba(95, 141, 255, 0.18);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #14091f;
  box-shadow:
    0 12px 28px rgba(255, 87, 210, 0.14),
    0 6px 18px rgba(255, 178, 94, 0.12);
}

.btn-secondary:hover {
  box-shadow:
    0 16px 34px rgba(255, 87, 210, 0.20),
    0 10px 24px rgba(255, 178, 94, 0.16);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.btn-ghost:hover {
  border-color: rgba(88, 243, 255, 0.28);
  background: rgba(255,255,255,0.08);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.18),
    0 0 22px rgba(88, 243, 255, 0.08);
}

/* ================= FOOTER ================= */

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(8, 13, 28, 0.82), rgba(5, 9, 20, 0.94));
  backdrop-filter: blur(12px);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2.25rem 0;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-left { min-width: 0; }

.footer-brand {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-copy {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.18s ease, opacity 0.18s ease;
}

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

.footer-socials {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  transition:
    transform 0.14s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 243, 255, 0.28);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 18px rgba(88, 243, 255, 0.08);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }

  .footer-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links,
  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .brand {
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 0.4rem;
    padding: 0.3rem;
  }

  .site-nav a {
    padding: 0.58rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ================= HOW TO GET STARTED ================= */

.cta-steps {
  position: relative;
  padding: 5rem 1.5rem 6rem;
  margin-top: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 18, 36, 0.18) 0%,
      rgba(9, 20, 40, 0.48) 28%,
      rgba(9, 20, 40, 0.76) 56%,
      rgba(10, 22, 44, 0.96) 100%);
}

.cta-steps::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 243, 255, 0.14),
    rgba(255, 255, 255, 0.08),
    rgba(88, 243, 255, 0.14),
    transparent
  );
  pointer-events: none;
  z-index: 2;
}


.cta-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(106, 227, 255, 0.08), transparent 22%),
    radial-gradient(circle at 82% 30%, rgba(79, 140, 255, 0.08), transparent 20%);
}

.cta-steps-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.cta-steps-heading {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.cta-steps-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
}

.cta-steps-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--text);
}

.cta-steps-heading p {
  margin: 0.9rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cta-step-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 40px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.04);
  text-align: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.cta-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 227, 255, 0.24);
  box-shadow:
    0 24px 48px var(--shadow),
    0 0 22px rgba(106, 227, 255, 0.08);
}

.cta-step-orb {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), transparent 45%),
    linear-gradient(135deg, rgba(106, 227, 255, 0.16), rgba(79, 140, 255, 0.08));
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 0 24px rgba(106, 227, 255, 0.08);
  overflow: hidden;
}

.cta-step-orb::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(106, 227, 255, 0.35),
    transparent,
    rgba(255, 184, 107, 0.22),
    transparent
  );
  animation: ctaSpin 7s linear infinite;
}

.cta-step-orb::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: rgba(9, 18, 36, 0.88);
  border: 1px solid rgba(255,255,255,0.04);
}

.cta-step-number {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

@keyframes ctaSpin {
  to {
    transform: rotate(360deg);
  }
}

.cta-step-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--text);
}

.cta-step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.cta-steps-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

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

@media (max-width: 640px) {
  .cta-steps {
    padding: 4.5rem 1rem 5rem;
  }

  .cta-step-card {
    padding: 1.3rem;
  }

  .cta-step-orb {
    width: 66px;
    height: 66px;
  }
}

/* ================= REVIEWS ================= */

.reviews {
  position: relative;
  padding: 5rem 1.5rem 5.5rem;
  background:
    linear-gradient(180deg,
      rgba(10, 22, 44, 0.96) 0%,
      rgba(8, 18, 36, 0.92) 45%,
      rgba(8, 13, 28, 0.88) 100%);
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(88, 243, 255, 0.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 87, 210, 0.08), transparent 26%),
    radial-gradient(circle at 60% 85%, rgba(95, 141, 255, 0.08), transparent 30%);
}

.reviews-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reviews-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.reviews-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.reviews-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.reviews-heading p {
  margin: 0.9rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-carousel {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 0.9rem;
  align-items: center;
}

.reviews-stage {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.reviews-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.review-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, calc(100% - 180px));
  min-height: 250px;
  padding: 1.55rem 1.45rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at top right, rgba(88, 243, 255, 0.06), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.02);
  box-shadow:
    0 18px 45px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transform: translate(-50%, -50%);
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    filter 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(88,243,255,0.12),
    transparent,
    rgba(255,87,210,0.09),
    transparent
  );
  filter: blur(24px);
  animation: reviewAuraSpin 12s linear infinite;
  opacity: 0.8;
}

@keyframes reviewAuraSpin {
  to { transform: rotate(360deg); }
}

.review-card > * {
  position: relative;
  z-index: 1;
}

/* center */
.review-card.pos-center {
  opacity: 1;
  z-index: 5;
  filter: brightness(1);
  border-color: rgba(88, 243, 255, 0.22);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.42),
    0 0 26px rgba(88,243,255,0.10);
  transform: translate(-50%, -50%) translateX(0) scale(1);
}

/* sides */
.review-card.pos-left,
.review-card.pos-right {
  opacity: 0.55;
  z-index: 3;
  filter: brightness(0.45) saturate(0.8);
}

.review-card.pos-left {
  transform: translate(-50%, -50%) translateX(-72%) scale(0.84);
}

.review-card.pos-right {
  transform: translate(-50%, -50%) translateX(72%) scale(0.84);
}

/* hidden */
.review-card.pos-hidden-left,
.review-card.pos-hidden-right {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.35);
}

.review-card.pos-hidden-left {
  transform: translate(-50%, -50%) translateX(-124%) scale(0.72);
}

.review-card.pos-hidden-right {
  transform: translate(-50%, -50%) translateX(124%) scale(0.72);
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.review-stars {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  color: #ffd98a;
  text-shadow:
    0 0 8px rgba(255, 217, 138, 0.45),
    0 0 18px rgba(255, 217, 138, 0.18);
  filter: drop-shadow(0 0 6px rgba(255, 217, 138, 0.2));
}

.review-quote {
  margin: 0;
  position: relative;
  padding-left: 1rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
  color: rgba(247, 251, 255, 0.96);
  font-weight: 500;
  max-width: 32ch;
  text-wrap: balance;
}

.review-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 3px;
  height: calc(100% - 0.6rem);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(255,255,255,0.08));
  box-shadow: 0 0 10px rgba(88, 243, 255, 0.16);
}

.review-meta {
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-person {
  display: grid;
  gap: 0.18rem;
}

.review-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
}

.review-role {
  font-size: 0.86rem;
  color: rgba(200, 212, 243, 0.78);
  letter-spacing: 0.02em;
}

/* darker side-card content */
.review-card.pos-left .review-quote,
.review-card.pos-right .review-quote {
  color: rgba(247, 251, 255, 0.52);
}

.review-card.pos-left .review-name,
.review-card.pos-right .review-name {
  color: rgba(247, 251, 255, 0.62);
}

.review-card.pos-left .review-role,
.review-card.pos-right .review-role {
  color: rgba(200, 212, 243, 0.45);
}

.review-card.pos-left .review-stars,
.review-card.pos-right .review-stars {
  opacity: 0.45;
}

/* buttons */
.reviews-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  line-height: 1;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.reviews-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(88,243,255,0.28);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 22px rgba(88,243,255,0.10);
}

/* ===== Reviews: better mobile layout (card full width, arrows below) ===== */
@media (max-width: 760px) {

  .reviews-carousel{
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "controls";
    gap: 0.9rem;
    align-items: stretch;
  }

  .reviews-stage{
    grid-area: stage;
    height: 380px; /* adjust if you want more/less */
    overflow: hidden;
  }

  /* make the center card use the full available width */
  .review-card{
    width: min(520px, calc(100% - 24px));
    /* the above leaves a small side gutter so it doesn't kiss the edges */
  }

  /* keep side cards off-screen so they don’t compress the main one */
  .review-card.pos-left,
  .review-card.pos-right,
  .review-card.pos-hidden-left,
  .review-card.pos-hidden-right{
    opacity: 0;
    pointer-events: none;
  }

  /* put buttons on separate grid cells (no overlap) */
  .reviews-carousel{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "stage stage"
      "prev  next";
  }

  .reviews-prev{
    grid-area: prev;
    justify-self: end;
  }

  .reviews-next{
    grid-area: next;
    justify-self: start;
  }

  /* make the buttons slightly smaller on mobile */
  .reviews-btn{
    width: 46px;
    height: 46px;
    font-size: 1.6rem;
  }

  /* optional: tighten quote text a bit for smaller screens */
  .review-quote{
    max-width: 38ch;
    font-size: 1rem;
  }
}

/* ================= FEATURED SITE SHOWCASE ================= */

.featured-sites {
  position: relative;
  padding: 5.25rem 1.5rem 5.75rem;
  background:
    linear-gradient(180deg,
      rgba(8, 13, 28, 0.92) 0%,
      rgba(7, 16, 34, 0.94) 48%,
      rgba(8, 18, 36, 0.98) 100%);
}

.featured-sites::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 243, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(255, 87, 210, 0.07), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(95, 141, 255, 0.08), transparent 28%);
}

.featured-sites-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.featured-sites-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.featured-sites-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.featured-sites-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.featured-sites-heading p {
  margin: 0.9rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.featured-showcase {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
  max-width: 1040px;
  margin: 2.2rem auto 0;
}

/* left side buttons */

.featured-rail {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.85rem;
  min-height: 100%;
}

.featured-rail-item {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 1rem 1rem 0.95rem 1rem;
  border-radius: 1.05rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  overflow: hidden;

  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;

  box-shadow:
    0 16px 34px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.03);

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.featured-rail-item:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 243, 255, 0.18);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.22),
    0 0 18px rgba(88, 243, 255, 0.06);
}

.featured-rail-item.is-active {
  border-color: rgba(88, 243, 255, 0.24);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.24),
    0 0 24px rgba(88, 243, 255, 0.08);
}

/* cool visual element */
.featured-rail-glow {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--pink), var(--orange));
  opacity: 0.35;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.featured-rail-item::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  opacity: 0.35;
  box-shadow:
    0 0 10px rgba(88, 243, 255, 0.35),
    0 0 18px rgba(88, 243, 255, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.featured-rail-item.is-active .featured-rail-glow,
.featured-rail-item:hover .featured-rail-glow {
  opacity: 1;
  box-shadow:
    0 0 10px rgba(88, 243, 255, 0.18),
    0 0 20px rgba(255, 87, 210, 0.08);
}

.featured-rail-item.is-active::after,
.featured-rail-item:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.featured-rail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.featured-rail-index {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.featured-rail-type {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-rail-main {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.featured-rail-main strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
}

.featured-rail-main small {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.featured-rail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.featured-rail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* right side */

.featured-main-box {
  display: grid;
  gap: 1rem;
}

.featured-video-shell {
  padding: 0.9rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.02);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.featured-video-topbar {
  display: flex;
  gap: 0.38rem;
  margin-bottom: 0.85rem;
}

.featured-video-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

.featured-video-frame {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(88, 243, 255, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(8, 18, 36, 0.98), rgba(10, 22, 44, 0.98));
}

/* --- NEW: stacked videos (preloaded once, switch via opacity) --- */
.featured-video-stack{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;   /* keeps the same size as before */
}

.featured-video-stack .featured-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.featured-video-stack .featured-video.is-active{
  opacity: 1;
  pointer-events: auto;
}

.featured-video-label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 18, 36, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.featured-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #091224;
}

.featured-detail {
  padding: 0 0.25rem;
}

.featured-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.featured-detail h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.featured-detail p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

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

  .featured-rail {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .featured-sites {
    padding: 4.5rem 1rem 5rem;
  }

  .featured-rail-item {
    padding: 0.95rem;
  }

  .featured-video-shell {
    padding: 0.75rem;
  }
}

/* ================= BOTTOM CTA (ORB CANVAS) ================= */

.bottom-cta{
  position: relative;
  padding: 5.5rem 1.5rem 6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(88, 243, 255, 0.10), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(255, 87, 210, 0.08), transparent 36%),
    radial-gradient(circle at 55% 86%, rgba(255, 178, 94, 0.07), transparent 40%),
    linear-gradient(180deg, rgba(10, 22, 44, 0.96) 0%, rgba(8, 13, 28, 0.98) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bottom-cta::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.06),
      transparent 22%,
      transparent 78%,
      rgba(255,255,255,0.06));
  opacity: 0.25;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.cta-orb-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  z-index:0;
  pointer-events:none;
}

.bottom-cta-inner{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.bottom-cta-kicker{
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.bottom-cta-title{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--text);
}

.bottom-cta-copy{
  margin: 1rem auto 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.bottom-cta-actions{
  margin-top: 1.8rem;
  display:flex;
  gap: 0.9rem;
  justify-content:center;
  flex-wrap:wrap;
}

/* keep it clean on mobile */
@media (max-width: 640px){
  .bottom-cta{
    padding: 4.8rem 1rem 5.2rem;
  }
}