@import url("navbar.css");

:root {
  --bg: #05050a;
  --surface: #0e0c16;
  --surface-card: rgba(14, 12, 22, 0.75);
  --line: rgba(139, 92, 246, 0.18);
  --line-subtle: rgba(255, 255, 255, 0.08);
  --purple: #8b5cf6;
  --purple2: #7c3aed;
  --highlight: #c084fc;
  --white: #ffffff;
  --muted: #9ca3af;
  --mono: 'JetBrains Mono', monospace;
  --head: 'Space Grotesk', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

/* Background textures & Glows */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: auto;
}

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

.section-dark {
  background: var(--bg);
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto 0;
  height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(124, 58, 237, 0.14), transparent 65%);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 15px;
  color: var(--white);
}

.brand-mark {
  display: flex;
  gap: 3px;
  align-items: center;
}

.brand-mark i {
  display: block;
  width: 4px;
  height: 18px;
  border-radius: 10px;
  background: var(--purple);
  transform: skew(-22deg);
}

.brand-mark i:nth-child(2) {
  height: 24px;
  background: var(--highlight);
}

.brand-mark i:nth-child(3) {
  height: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: #9a6af8;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #e5e2ea;
}

.btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.08);
  color: var(--white);
}

.btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: 10px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video,
.hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: blur(0px) brightness(0.65);
  transform: scale(1.06);
}

.hero-canvas {
  display: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(5, 5, 10, 0.35) 0%, rgba(5, 5, 10, 0.85) 75%),
    linear-gradient(0deg, rgba(5, 5, 10, 1) 0%, transparent 40%, rgba(5, 5, 10, 0.6) 100%);
  z-index: 2;
  backdrop-filter: blur(3px);
}

/* Atmospheric Interactive Floating Orbs Canvas */
.orb-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

#glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 70%);
  filter: blur(140px);
  right: -100px;
  top: 10%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 960px;
  text-align: left;
  padding: 80px 0 60px;
}

.eyebrow,
.section-kicker {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #caaefb;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 99px;
  background: rgba(14, 12, 22, 0.65);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b78cff;
  box-shadow: 0 0 14px #8b5cf6;
}

.hero-title {
  font-family: var(--head);
  font-size: clamp(52px, 6.6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin: 0 0 24px;
  max-width: 900px;
}

.hero-title em,
.process-title span,
.editorial-copy span,
.section-head h2 span,
.final-cta em,
.faq-grid h2 span {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #c084fc 80%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-sub {
  max-width: 680px;
  margin: 0 0 36px;
  color: #b5b2bd;
  line-height: 1.75;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.impact {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  max-width: 720px;
}

.impact div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.impact strong {
  font: 700 22px var(--head);
  color: var(--white);
}

.impact span {
  font-size: 10px;
  color: #85818d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font: 500 10px var(--mono);
  letter-spacing: 0.25em;
  color: #77727e;
  text-transform: uppercase;
}

/* Seamless Section Flow & Transitions */
.section {
  padding: 130px 0;
  position: relative;
}

.editorial {
  border-top: none;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(14, 12, 22, 0.5) 50%, var(--bg) 100%);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.editorial-copy h2,
.section-head h2,
.process-title,
.faq-grid h2,
.final-cta h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0 0 24px;
}

.editorial-copy p {
  max-width: 760px;
  color: #9b98a2;
  line-height: 1.85;
  font-size: 17px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
}

.stat-box {
  background: #08080b;
  padding: 36px 30px;
}

.stat-box .stat-num {
  font-family: var(--head);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
}

.stat-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #85818d;
}

/* Ecosystem Section & 3D Interactive Parallax */
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 55px;
}

.section-head>p {
  max-width: 400px;
  color: #8e8a95;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

.section-head.compact {
  margin-bottom: 45px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.glass-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(22, 18, 34, 0.88), rgba(10, 9, 15, 0.72));
  backdrop-filter: blur(18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, border-color 0.35s;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
}

.card-index {
  font: 500 11px var(--mono);
  color: #696473;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.09);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #c7a7ff;
  margin: 28px 0 20px;
}

.glass-card h3,
.feature-card h3,
.profiles-grid h3,
.privacy-grid h3 {
  font-family: var(--head);
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.glass-card p,
.feature-card p,
.profiles-grid p,
.privacy-grid p {
  color: #8f8b97;
  line-height: 1.65;
  font-size: 14px;
  margin: 0;
}

/* 3D Mockup Stage */
.mockup-stage {
  position: relative;
  height: 540px;
  margin-top: 70px;
  overflow: hidden;
}

.parallax-dashboard {
  position: absolute;
  inset: 0 5%;
  height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #09090d;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.dash-top {
  height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.dash-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.dash-top span {
  margin-left: 12px;
  font: 500 10px var(--mono);
  color: #5d5866;
}

.dash-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  height: calc(100% - 42px);
}

.dash-map {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.dash-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(139, 92, 246, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
}

.dash-map-pulse {
  position: absolute;
  left: 40%;
  top: 40%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.4);
  animation: pulseOrb 3s infinite ease-in-out;
}

@keyframes pulseOrb {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

.dash-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dash-panel {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.parallax-phone {
  position: absolute;
  z-index: 20;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 210px;
  height: 420px;
  border-radius: 36px;
  border: 6px solid #27272a;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.2);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #18181b;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  top: 36px;
  border-radius: 26px;
  background: linear-gradient(180deg, #111019 0%, #08080b 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-logo {
  font: 700 10px var(--mono);
  color: var(--purple);
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.phone-cam-view {
  margin-top: 24px;
  width: 100%;
  height: 140px;
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(139, 92, 246, 0.06);
  display: grid;
  place-items: center;
  position: relative;
}

.phone-cam-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(192, 132, 252, 0.4);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.3);
}

/* Core 3 Layers & Features Grid */
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.core-card {
  min-height: 320px;
  justify-content: space-between;
}

.core-card small {
  margin-top: 20px;
  font: 500 11px var(--mono);
  color: #696473;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.feature-card {
  grid-column: span 2;
  min-height: 280px;
  padding: 28px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, transform 0.35s;
}

.feature-card:nth-child(4),
.feature-card:nth-child(5) {
  grid-column: span 3;
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.feature-card .icon-box {
  margin-bottom: auto;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card>span {
  margin-top: 16px;
  font: 500 11px var(--mono);
  color: #696473;
}

/* Process Timeline */
.process-section {
  background: linear-gradient(180deg, #05050a 0%, #09070e 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 75px;
}

.timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), rgba(139, 92, 246, 0.1));
}

.timeline article {
  position: relative;
  padding-right: 15px;
}

.step {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b0911;
  border: 1px solid rgba(139, 92, 246, 0.5);
  font: 500 11px var(--mono);
  color: #caaefb;
  margin-bottom: 28px;
}

.timeline h3 {
  font-family: var(--head);
  font-size: 19px;
  margin: 0 0 9px;
}

.timeline p {
  color: #85818d;
  font-size: 14px;
  line-height: 1.65;
}

/* Target Audience Profiles */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.profiles-grid article,
.privacy-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 12, 22, 0.72);
  border-radius: 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.profiles-grid article:hover,
.privacy-grid article:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-3px);
}

.profiles-grid article>span {
  font: 500 11px var(--mono);
  color: #6f6a78;
}

.profiles-grid article svg {
  width: 28px;
  height: 28px;
  color: #b994ff;
  margin: 50px 0 24px;
}

/* Interactive HUD Vision Demo */
.demo-shell {
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 26px;
  overflow: hidden;
  background: #08070c;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.12);
}

.demo-top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font: 500 10px var(--mono);
  color: #6e6975;
  letter-spacing: 0.08em;
}

.live {
  color: #a78bfa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 12px #8b5cf6;
}

.demo-stage {
  height: min(55vw, 540px);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), transparent 60%),
    linear-gradient(125deg, #0c0a12, #16101f 45%, #09080e);
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(400px) rotateX(58deg) scale(1.4);
  transform-origin: center bottom;
  opacity: 0.45;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 20px #8b5cf6;
  top: 15%;
}

.target {
  position: absolute;
  border: 1px solid rgba(192, 132, 252, 0.75);
  background: rgba(139, 92, 246, 0.04);
  padding: 8px 10px;
  color: #e4d4ff;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
}

.target::before,
.target::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: #c084fc;
}

.target::before {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.target::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.target small {
  display: block;
  color: #8e8698;
  margin-top: 4px;
}

.target-a {
  left: 24%;
  top: 22%;
  width: 150px;
  height: 240px;
}

.target-b {
  left: 56%;
  top: 46%;
  width: 140px;
  height: 110px;
}

.target-c {
  left: 72%;
  top: 18%;
  width: 115px;
  height: 210px;
}

.center-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(192, 132, 252, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.center-reticle::before,
.center-reticle::after {
  content: "";
  position: absolute;
  background: #c084fc;
}

.center-reticle::before {
  width: 1px;
  height: 110px;
  left: 50%;
  top: -15px;
}

.center-reticle::after {
  height: 1px;
  width: 110px;
  top: 50%;
  left: -15px;
}

.demo-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font: 500 10px var(--mono);
  color: #78717f;
}

.demo-caption strong {
  color: #d6c7e7;
}

/* Privacy & Security */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.privacy-grid article {
  min-height: 250px;
}

.privacy-grid .icon-box {
  margin-bottom: auto;
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--head);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.quote-grid cite {
  display: block;
  margin-top: 32px;
  font: 500 11px var(--mono);
  color: #706b77;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-grid>div:first-child p {
  color: #77727d;
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: #a88ad7;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.25s;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  margin: -4px 40px 24px 0;
  color: #85818c;
  line-height: 1.7;
  font-size: 14px;
}

/* Final CTA */
.final-cta {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(20, 16, 32, 0.6) 40%, rgba(14, 12, 22, 0.95) 80%, var(--bg) 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.final-cta-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, rgba(22, 18, 38, 0.82), rgba(10, 9, 16, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 32px;
  padding: 70px 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(139, 92, 246, 0.12);
  backdrop-filter: blur(24px);
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 20px 0 20px;
}

.final-cta-sub {
  max-width: 580px;
  margin: 0 auto 36px;
  color: #a4a0ac;
  font-size: 17px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 30px;
}

.footer-top>p {
  margin: 0;
  color: #77727e;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #85818d;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 45px;
  padding-top: 20px;
  color: #5e5965;
  font: 500 10px var(--mono);
}

.wcag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wcag svg {
  width: 14px;
  height: 14px;
  color: #a78bfa;
}

/* Responsive Queries */
@media (max-width: 960px) {

  .editorial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecosystem-grid,
  .core-grid,
  .profiles-grid,
  .privacy-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .timeline-line {
    display: none;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: 750px;
  }

  .impact {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stats-bar,
  .ecosystem-grid,
  .core-grid,
  .feature-grid,
  .profiles-grid,
  .privacy-grid,
  .quote-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}


/* Shop / catalog */
.shop-page {
  padding: 8rem 24px 4rem;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.shop-head {
  margin-bottom: 28px;
}

.shop-head h1 {
  font-family: var(--head);
  font-size: 2.4rem;
  margin: 8px 0 10px;
}

.shop-head p {
  color: #b8b4c4;
  max-width: 520px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.shop-empty {
  color: #b8b4c4;
  padding: 40px 0;
}

.shop-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(14, 12, 22, 0.7);
  cursor: pointer;
}

.shop-card-media {
  position: relative;
  height: 180px;
  background: #0a0a10;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  border: 0;
  background: #8b5cf6;
}

.shop-badge[data-etiqueta="OFERTA"] {
  background: #ef4444;
}

.shop-badge[data-etiqueta="NUEVO"] {
  background: #eab308;
}

.shop-badge[data-etiqueta="POPULAR"] {
  background: #3b82f6;
}

.shop-badge[data-etiqueta="SEGURIDAD"] {
  background: #22c55e;
}

.shop-badge[data-etiqueta="PREMIUM"] {
  background: #8b5cf6;
}

.shop-card-body {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c8798;
}

.shop-card-body h3 {
  font-size: 1.1rem;
  margin: 14px 0 0;
  padding: 0;
  line-height: 1.25;
}

.shop-card-body p {
  font-size: 13px;
  color: #b8b4c4;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 4px;
}

.shop-stock {
  font-size: 12px;
  color: #a78bfa;
  font-family: var(--mono, monospace);
}

.shop-add-btn {
  width: 100%;
  margin-top: 10px;
  min-height: 42px;
}

.shop-cart {
  position: sticky;
  top: 7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(14, 12, 22, 0.85);
  padding: 20px;
}

.shop-cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.shop-cart-head span {
  font-size: 11px;
  background: rgba(139, 92, 246, 0.2);
  padding: 4px 8px;
  border-radius: 8px;
}

.shop-cart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 80px;
  max-height: 360px;
  overflow: auto;
}

.shop-cart-empty {
  color: #8c8798;
  font-size: 13px;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.shop-cart-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.shop-cart-item strong {
  display: block;
  font-size: 13px;
}

.shop-cart-item span {
  font-size: 11px;
  color: #b8b4c4;
}

.shop-cart-item button {
  background: none;
  border: 0;
  color: #f87171;
  font-size: 20px;
  cursor: pointer;
}

.shop-cart-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  width: 100%;
}

#btnFinalizar {
  align-self: center;
}

.shop-cart-aviso {
  margin: 10px 0 0;
  font-size: 12px;
  color: #f87171;
  text-align: center;
}

.shop-card-body .shop-login-aviso {
  margin-top: 8px;
}

.shop-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.shop-modal.open {
  display: flex;
}

.shop-modal-card {
  width: min(420px, 100%);
  background: #0e0c16;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 18px;
  padding: 24px;
}

.shop-modal-card h3 {
  margin-bottom: 8px;
}

.shop-modal-stock {
  color: #b8b4c4;
  margin: 12px 0 16px;
  text-align: center;
  font-size: 13px;
}

.shop-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.shop-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.shop-qty-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.shop-qty-value {
  min-width: 36px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

.shop-modal-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #b8b4c4;
  font-size: 13px;
}

.shop-modal-subtotal strong {
  color: #fff;
  font-size: 18px;
}

.shop-modal-card input {
  width: 100%;
  background: #05050a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
}

.shop-modal-actions {
  display: flex;
  gap: 10px;
}

.shop-modal-actions .btn {
  flex: 1;
}

.shop-detail-card {
  width: min(520px, 100%);
  position: relative;
  max-height: 90vh;
  overflow: auto;
}

.shop-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.shop-detail-media {
  position: relative;
  margin: -24px -24px 16px;
  height: min(42vh, 420px);
  min-height: 320px;
  background: #0a0a10;
}

.shop-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.shop-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a10;
}

.shop-carousel-track img,
.shop-carousel-track video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-carousel-track img {
  cursor: zoom-in;
}

.shop-carousel-track iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.shop-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.shop-carousel-nav.prev { left: 10px; }
.shop-carousel-nav.next { right: 10px; }

.shop-carousel-nav[hidden],
.shop-carousel-dots[hidden] {
  display: none;
}

.shop-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.shop-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.shop-carousel-dots button.active {
  background: #fff;
  width: 18px;
}

.shop-detail-card .shop-badge {
  top: 16px;
  left: 16px;
  right: auto;
}

.shop-detail-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8c8798;
  margin-bottom: 6px;
}

.shop-detail-card h3 {
  margin-bottom: 10px;
}

.shop-detail-desc {
  color: #b8b4c4;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  white-space: pre-wrap;
}

.shop-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shop-lightbox.open {
  display: flex;
}

.shop-lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.shop-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-cart {
    position: static;
  }
}

.checkout-head {
  margin-bottom: 28px;
}

.checkout-head h1 {
  font-family: var(--head);
  font-size: 2.2rem;
  margin: 8px 0 10px;
}

.checkout-head p {
  color: #b8b4c4;
  max-width: 560px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.checkout-pay,
.checkout-summary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(14, 12, 22, 0.85);
  padding: 24px;
}

.checkout-pay h2,
.checkout-summary h2 {
  margin: 0 0 18px;
  font-size: 1.1rem;
}

#payment-element {
  margin-bottom: 18px;
}

.checkout-pay .btn-primary,
.checkout-success .btn-primary {
  width: 100%;
  box-shadow: none;
}

.checkout-error {
  color: #f87171;
  font-size: 13px;
  margin: 0 0 12px;
}

.checkout-success p {
  color: #b8b4c4;
  margin-bottom: 18px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
}

.checkout-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.checkout-item strong {
  display: block;
  font-size: 13px;
}

.checkout-item span,
.checkout-totals span {
  font-size: 12px;
  color: #b8b4c4;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
}

.checkout-total strong {
  color: #c4b5fd;
  font-size: 1.25rem;
}

@media (max-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}
