:root {
  --bg: #06101b;
  --bg-soft: #0a1626;
  --panel: rgba(9, 19, 34, 0.76);
  --panel-2: rgba(11, 24, 40, 0.92);
  --border: rgba(123, 231, 255, 0.16);
  --border-strong: rgba(123, 231, 255, 0.3);
  --text: #ecf8ff;
  --muted: #a7bfd1;
  --accent: #76ecff;
  --accent-2: #2b7cff;
  --gold: #ffd78a;
  --gold-2: #ffb84d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --radius-lg: 32px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #050c15 0%, #08111e 42%, #06101b 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
h1, h2, h3, .brand-title, .eyebrow { margin: 0; line-height: 1.04; }
h1, h2, .brand-title, .eyebrow { font-family: Orbitron, Inter, sans-serif; }
h1 { font-size: clamp(2.7rem, 5vw, 5.6rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); letter-spacing: -0.035em; }
h3 { font-size: 1.12rem; }
main section[id], footer, .proof-band { scroll-margin-top: 7rem; }

.site-bg,
.site-grid,
.site-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.site-bg {
  z-index: -4;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 8, 17, 0.34), rgba(4, 8, 17, 0.88)),
    radial-gradient(circle at 12% 10%, rgba(118, 236, 255, 0.12), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(139, 93, 255, 0.1), transparent 22%);
  opacity: 0.94;
}
.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.site-bg::before {
  inset: -4%;
  background:
    linear-gradient(180deg, rgba(4, 8, 17, 0.06), rgba(4, 8, 17, 0.22)),
    url('assets/riddai-premium-futuristic-bg.webp') center 22%/cover no-repeat;
  opacity: 0.72;
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center;
  filter: saturate(1.08) contrast(1.06) brightness(1.03);
  will-change: transform;
  animation: bgDrift 30s ease-in-out infinite alternate;
}
.site-bg::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(118, 236, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 68%, rgba(255, 184, 77, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(4, 8, 17, 0.12), rgba(4, 8, 17, 0.44));
}
.site-grid {
  z-index: -3;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 82%, transparent 100%);
}
.site-orb {
  z-index: -2;
  filter: blur(60px);
  opacity: 0.5;
}
.site-orb-a {
  background: radial-gradient(circle, rgba(118, 236, 255, 0.22), transparent 55%);
  transform: translate(-24%, -18%);
}
.site-orb-b {
  background: radial-gradient(circle, rgba(102, 91, 255, 0.18), transparent 55%);
  transform: translate(58%, 18%);
}

.shell { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 5.8rem 0; }
.section-tight { padding-top: 2.8rem; }

.glass {
  background: linear-gradient(180deg, rgba(10, 21, 35, 0.78), rgba(8, 17, 31, 0.92));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.panel-glow {
  position: relative;
}
.panel-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.gold-glow {
  background: linear-gradient(180deg, #fff4d1 0%, var(--gold) 48%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 209, 119, 0.12);
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
.micro {
  color: #defbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 0.85rem;
  z-index: 100;
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 22px;
  background: rgba(7, 16, 31, 0.72);
  border: 1px solid rgba(123, 231, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(123, 231, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0,0,0,0.24);
}
.brand-title { display: block; font-size: 1rem; font-weight: 800; }
.brand-sub { display: block; color: var(--muted); font-size: 0.76rem; margin-top: 0.16rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
}
.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(118, 236, 255, 0.12);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(118, 236, 255, 0.12);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 2.4rem;
  min-height: min(980px, calc(100vh - 5rem));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 6% 0 auto 42%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 236, 255, 0.13), rgba(118, 236, 255, 0.02) 48%, transparent 72%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(36vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 138, 0.12), rgba(118, 236, 255, 0.06) 45%, transparent 68%);
  filter: blur(18px);
  animation: orbPulse 12s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.hero-copy,
.section-copy,
.section-heading,
.contact-wrap,
.video-feature,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.status-pill,
.signal-pill,
.tag,
.contact-chip {
  border-radius: 999px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.74rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #defbff;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.hero-lead {
  max-width: 52rem;
  margin-top: 1rem;
  font-size: 1.08rem;
  color: #dcebf5;
}
.hero-sublead {
  margin-top: 1rem;
  max-width: 47rem;
}
.hero-actions,
.inline-actions,
.cta-actions,
.form-actions,
.floating-cta-actions,
.tag-row,
.contact-badges,
.check-grid,
.chat-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-actions { margin-top: 2rem; }
.btn {
  min-height: 54px;
  padding: 0 1.3rem;
  border-radius: 18px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #05111d;
  background: linear-gradient(135deg, var(--accent), #d7fdff 56%, #92efff 100%);
  box-shadow: 0 14px 32px rgba(118, 236, 255, 0.18);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(118, 236, 255, 0.2);
}
.btn-whatsapp {
  color: var(--text);
  background: rgba(38, 211, 102, 0.14);
  border-color: rgba(38, 211, 102, 0.34);
}
.trust-strip {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 26px;
}
.trust-strip div {
  padding: 0.55rem 0.45rem;
}
.trust-strip strong,
.proof-card h3,
.bullet-card strong,
.use-case-card strong {
  display: block;
  margin-bottom: 0.35rem;
}
.trust-strip span { color: var(--muted); font-size: 0.94rem; }

.hero-card {
  padding: 1rem;
  animation: heroFloat 9s ease-in-out infinite;
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.signal-pill {
  padding: 0.54rem 0.82rem;
  font-size: 0.86rem;
  font-weight: 800;
  color: #dffbff;
  border: 1px solid rgba(118, 236, 255, 0.22);
  background: rgba(118, 236, 255, 0.08);
}
.media-frame {
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(118,236,255,0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
}
.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
}
.frame-image {
  object-position: center;
}
.hero-frame {
  aspect-ratio: 5 / 7;
  padding: 0.75rem;
}
.hero-image {
  object-fit: contain;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}
.hero-card:hover .hero-image {
  transform: scale(1.03);
}
.prototype-frame {
  aspect-ratio: 5 / 6;
}
.prototype-image {
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.access-product-image {
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}
.product-frame {
  min-height: 320px;
  padding: 0.9rem;
}
.device-frame {
  aspect-ratio: 3 / 4;
}
.dashboard-frame {
  aspect-ratio: 1 / 1;
}
.poster-frame {
  aspect-ratio: 2 / 3;
}
.ecosystem-frame {
  aspect-ratio: 5 / 6;
  padding: 0.85rem;
}
.contain-image {
  object-fit: contain;
  object-position: center;
}
.hero-card-copy {
  padding: 1.15rem 0.2rem 0.15rem;
}
.hero-card-copy h2 { font-size: 1.65rem; }
.hero-card-copy p { margin-top: 0.7rem; }
.tag {
  padding: 0.72rem 0.94rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-band { padding: 1.1rem 0 0.2rem; }
.proof-grid,
.card-grid,
.contact-grid,
.video-feature-grid,
.footer,
.split,
.process-grid {
  display: grid;
  gap: 1.25rem;
}
.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}
.proof-card,
.feature-card,
.use-case-card,
.bullet-card,
.solution-card,
.contact-card,
.contact-form,
.faq-item,
.cta-panel,
.chatbot,
.prototype-panel {
  border-radius: var(--radius);
}
.proof-card {
  padding: 1.4rem;
}
.proof-kicker {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.section-heading {
  max-width: 52rem;
  margin-bottom: 1.8rem;
}
.section-heading p:last-child,
.section-copy p + p {
  margin-top: 0.95rem;
}
.prototype-panel {
  padding: 1rem;
  position: relative;
  overflow: visible;
}
.prototype-panel::before {
  content: "";
  position: absolute;
  inset: -2rem -1.25rem 35% -1.25rem;
  z-index: -1;
  background: radial-gradient(circle at 50% 10%, rgba(118, 236, 255, 0.22), transparent 58%);
  filter: blur(36px);
  opacity: 0.72;
}
.prototype-panel figcaption {
  padding: 1rem 0.2rem 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.prototype-section {
  align-items: start;
  gap: 1.6rem;
}
.prototype-spotlight {
  display: grid;
  gap: 1rem;
}
.spotlight-intro {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.1rem;
  border-radius: 24px;
}
.spotlight-intro::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 215, 138, 0.95), rgba(118, 236, 255, 0.7), transparent 80%);
}
.spotlight-intro strong {
  display: block;
  margin-top: 0.42rem;
  font-size: 1.12rem;
  line-height: 1.35;
}
.spotlight-intro p {
  margin-top: 0.55rem;
}
.prototype-photo-frame {
  min-height: 620px;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(118, 236, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.prototype-badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}
.prototype-badge {
  padding: 0.95rem 1rem;
  border-radius: 20px;
}
.prototype-badge strong {
  display: block;
  margin-bottom: 0.3rem;
}
.prototype-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.bullet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.55rem;
}
.bullet-card {
  padding: 1.2rem 1.1rem;
}
.inline-actions { margin-top: 1.4rem; }

.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card,
.use-case-card {
  padding: 1.5rem;
}
.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 900;
  color: #05111d;
  background: linear-gradient(135deg, var(--accent), #d7fdff);
  box-shadow: 0 12px 24px rgba(118,236,255,0.16);
}
.feature-card p,
.use-case-card p { margin-top: 0.75rem; }
.use-case-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.solutions-grid {
  grid-template-columns: repeat(2, 1fr);
}
.solution-card {
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.solution-copy {
  padding: 1.1rem 0.15rem 0.2rem;
}
.solution-copy p { margin-top: 0.7rem; }
.solution-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.solution-copy li + li { margin-top: 0.45rem; }

.video-feature {
  position: relative;
}
.video-feature::before {
  content: "";
  position: absolute;
  inset: 10% 6% auto 48%;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 236, 255, 0.12), rgba(118, 236, 255, 0.04) 45%, transparent 72%);
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}
.video-feature-grid {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 2rem;
}
.video-stage {
  position: relative;
}
.luxury-video-panel {
  position: relative;
  padding: 1rem;
  overflow: hidden;
}
.luxury-video-panel::before {
  content: "";
  position: absolute;
  inset: -24% auto auto -10%;
  width: 44%;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 215, 138, 0.1), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}
.video-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}
.video-heading-row h3 {
  margin-top: 0.38rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: min(82vh, 860px);
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(118,236,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(6,12,22,0.96), rgba(2,6,12,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 60px rgba(0,0,0,0.34);
}
.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.video-frame::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 18%, transparent 82%, rgba(255,255,255,0.02));
  mix-blend-mode: screen;
  opacity: 0.55;
}
.video-frame::after {
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.05);
}
.video-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,10,18,0.32), rgba(5,10,18,0.68)),
    url('assets/riddai-promo-video-poster-luxury.jpg') center center / cover no-repeat;
  filter: blur(22px) saturate(1.12) brightness(0.82);
  transform: scale(1.12);
  opacity: 0.9;
}

.video-side-logos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.side-logo {
  position: absolute;
  width: clamp(64px, 8vw, 108px);
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(118,236,255,0.16), transparent 62%),
    url('assets/logo.webp') center center / contain no-repeat;
  opacity: 0.17;
  filter: saturate(1.08) drop-shadow(0 0 16px rgba(118,236,255,0.18));
  mix-blend-mode: screen;
  animation: sideLogoFloat 12s ease-in-out infinite;
}
.side-logo::after {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(118,236,255,0.12), transparent 68%);
  filter: blur(12px);
  opacity: 0.45;
}
.side-logo-a {
  left: 4.5%;
  top: 10%;
  animation-duration: 14s;
}
.side-logo-b {
  left: 6%;
  bottom: 12%;
  width: clamp(58px, 7vw, 92px);
  animation-duration: 16s;
  animation-delay: -4s;
}
.side-logo-c {
  right: 5.5%;
  top: 22%;
  width: clamp(66px, 8vw, 102px);
  animation-duration: 13s;
  animation-delay: -3s;
}
.side-logo-d {
  right: 4.5%;
  bottom: 15%;
  width: clamp(60px, 7.2vw, 96px);
  animation-duration: 15s;
  animation-delay: -8s;
}
@keyframes sideLogoFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96) rotate(-5deg);
    opacity: 0.09;
  }
  25% {
    transform: translate3d(8px, -10px, 0) scale(1) rotate(1deg);
    opacity: 0.18;
  }
  50% {
    transform: translate3d(-4px, -18px, 0) scale(1.04) rotate(4deg);
    opacity: 0.22;
  }
  75% {
    transform: translate3d(10px, -8px, 0) scale(0.99) rotate(-2deg);
    opacity: 0.16;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.95) rotate(-5deg);
    opacity: 0.1;
  }
}
.video-luxury-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  padding: clamp(0.45rem, 0.8vw, 0.65rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(5,10,18,0.78), rgba(2,6,12,0.96));
  border: 1px solid rgba(123, 231, 255, 0.2);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.38),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px rgba(118, 236, 255, 0.08);
}
.video-luxury-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.16), transparent 26%, transparent 74%, rgba(118,236,255,0.08));
  pointer-events: none;
}
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 23px;
  object-fit: contain;
  object-position: center center;
  background:
    radial-gradient(circle at top, rgba(16,28,44,0.92), rgba(3,7,14,0.98)),
    url('assets/logo.webp') left 10% center / 72px auto no-repeat,
    url('assets/logo.webp') right 10% center / 72px auto no-repeat;
}
.video-frame.is-playing {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(118,236,255,0.16),
    0 24px 60px rgba(0,0,0,0.34),
    0 0 42px rgba(118,236,255,0.12);
}
.video-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.video-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #dff8ff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123, 231, 255, 0.14);
}
.video-panel-copy {
  padding-top: 1rem;
}
.video-panel-copy p {
  margin-bottom: 1rem;
  max-width: 46rem;
  color: #dbeaf6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.faq-item {
  padding: 1rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding-right: 2rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.05rem;
  font-size: 1.35rem;
  color: var(--accent);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 0.9rem; }

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
}
.cta-copy { margin-top: 0.7rem; max-width: 42rem; }

.contact-wrap .section-heading { margin-bottom: 1.2rem; }
.contact-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.contact-chip {
  padding: 0.82rem 1rem;
  font-weight: 700;
}
.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}
.contact-card,
.contact-form {
  padding: 1.45rem;
}
.contact-card p + p { margin-top: 0.65rem; }
.contact-badges,
.contact-actions { margin-top: 1.1rem; }
.stack-actions { flex-direction: column; align-items: stretch; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.field-row.single { grid-template-columns: 1fr; }
label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--text);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(123, 231, 255, 0.16);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(123, 231, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(118,236,255,0.08);
  background: rgba(255,255,255,0.05);
}
textarea { resize: vertical; min-height: 148px; }
.form-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.live-tag {
  color: #dffbff;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-note,
.form-success,
.form-error {
  margin-top: 0.95rem;
  font-size: 0.95rem;
}
.form-success { color: #dffbff; }
.form-error { color: #ffb4b4; }

.footer {
  grid-template-columns: 1fr auto auto;
  align-items: start;
  padding: 2.2rem 0 5.6rem;
  border-top: 1px solid rgba(123, 231, 255, 0.1);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-brand img {
  border-radius: 16px;
  border: 1px solid rgba(123, 231, 255, 0.14);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
}
.footer-links p + p,
.footer-legal p { margin-top: 0.45rem; }
.footer-legal details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(123, 231, 255, 0.12);
  border-radius: 18px;
  padding: 0.8rem 1rem;
  width: min(360px, 100%);
}
.footer-legal details + details { margin-top: 0.8rem; }
.footer-legal summary { cursor: pointer; font-weight: 800; }
.footer-bottom-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(123, 231, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-bottom-row a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}
.footer-bottom-row a:hover,
.footer-bottom-row a:focus-visible {
  color: var(--text);
}
.footer-divider {
  opacity: 0.45;
}
.footer-copyright {
  color: var(--muted);
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 95;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 1rem));
  padding: 0.8rem 0.9rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.floating-cta strong { display: block; }
.floating-cta span { color: var(--muted); font-size: 0.92rem; }
.floating-cta .btn { min-height: 46px; }

.chat-toggle {
  position: fixed;
  right: 1rem;
  bottom: 6rem;
  z-index: 96;
  border: 0;
  padding: 0.95rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(180deg, rgba(9, 19, 34, 0.92), rgba(8, 17, 31, 0.96));
  border: 1px solid rgba(123, 231, 255, 0.18);
  box-shadow: var(--shadow-soft);
}
.chat-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #05111d;
  background: linear-gradient(135deg, var(--accent), #d7fdff);
}
.chatbot {
  position: fixed;
  right: 1rem;
  bottom: 10.8rem;
  z-index: 97;
  width: min(390px, calc(100% - 1rem));
  padding: 1rem;
}
.chatbot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}
.chatbot-header p { margin-top: 0.35rem; font-size: 0.93rem; }
.chat-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.3rem;
}
.chat-chip {
  border: 1px solid rgba(123,231,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 0.94rem;
  font-weight: 700;
  cursor: pointer;
}
.chat-messages {
  margin-top: 1rem;
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 0.7rem;
  padding-right: 0.2rem;
}
.chat-message {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.chat-message.bot {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(123,231,255,0.1);
}
.chat-message.user {
  background: rgba(118,236,255,0.12);
  border: 1px solid rgba(118,236,255,0.16);
}
.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  margin-top: 1rem;
}
.chat-send { min-width: 96px; }
.chat-note { margin-top: 0.85rem; font-size: 0.92rem; }

@keyframes bgDrift {
  0% { transform: translate3d(-1.5%, -1.2%, 0) scale(1.08); }
  50% { transform: translate3d(1.1%, -2.3%, 0) scale(1.12); }
  100% { transform: translate3d(2.2%, 1.4%, 0) scale(1.09); }
}

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

@keyframes orbPulse {
  0%, 100% { transform: scale(0.98); opacity: 0.54; }
  50% { transform: scale(1.06); opacity: 0.84; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .side-logo { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.visible,
  .floating-cta,
  .btn,
  .nav a { transition: none; }
  .site-orb { display: none; }
  .site-bg::before,
  .hero-card,
  .hero-visual::before { animation: none; }
}


@media (max-width: 1080px) {
  .hero,
  .split,
  .video-feature-grid,
  .contact-grid,
  .footer,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .proof-grid,
  .trust-strip,
  .faq-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .four-up { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .prototype-badge-row { grid-template-columns: 1fr; }
  .prototype-photo-frame { min-height: 560px; }
}

@media (max-width: 780px) {
  h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .hero-frame,
  .prototype-frame,
  .device-frame,
  .poster-frame,
  .ecosystem-frame { padding: 0.55rem; }
  .product-frame { min-height: 280px; }
  .video-frame { min-height: 520px; padding: 0.8rem; }
  .video-luxury-shell { width: min(100%, 420px); aspect-ratio: 2 / 3; }
  .side-logo { opacity: 0.12; }
  .side-logo-a, .side-logo-b { left: 3%; }
  .side-logo-c, .side-logo-d { right: 3%; }
  .prototype-photo-frame { min-height: 460px; }
  .spotlight-intro { padding: 0.95rem 1rem; }
  h2 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .section { padding: 4.7rem 0; }
  .topbar { padding: 0.7rem 0.85rem; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(320px, 100%);
    padding: 0.5rem;
    border-radius: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(180deg, rgba(10, 21, 35, 0.95), rgba(8, 17, 31, 0.98));
  }
  .nav.open { display: flex; }
  .nav a { border-radius: 16px; }
  .proof-grid,
  .trust-strip,
  .faq-grid,
  .solutions-grid,
  .four-up,
  .field-row,
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions,
  .inline-actions,
  .cta-actions,
  .form-actions,
  .floating-cta-actions,
  .tag-row,
  .contact-badges,
  .check-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .btn { width: 100%; }
  .chat-form { grid-template-columns: 1fr; }
  .floating-cta {
    width: calc(100% - 1rem);
    align-items: stretch;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
  }
  .chatbot {
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
    bottom: 10rem;
  }
  .chat-toggle {
    right: 0.5rem;
    bottom: 7.15rem;
  }
}


/* 10/10 upgrade sections */
.traction-grid,
.availability-grid,
.team-grid,
.quick-actions-grid,
.process-grid-4 {
  display: grid;
  gap: 1.15rem;
}
.traction-grid,
.team-grid,
.quick-actions-grid,
.process-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.availability-grid {
  grid-template-columns: repeat(3, 1fr);
}
.traction-card,
.availability-card,
.team-card,
.process-card,
.quick-action-card {
  padding: 1.35rem;
  border-radius: var(--radius);
}
.team-card-featured {
  grid-column: span 2;
}
.team-role {
  color: var(--gold);
  font-weight: 700;
  margin: 0.3rem 0 0.75rem;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.availability-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.availability-card li + li {
  margin-top: 0.55rem;
}
.available-now {
  border-color: rgba(118,236,255,0.28);
}
.in-pilot {
  border-color: rgba(255,209,119,0.24);
}
.roadmap-card {
  border-color: rgba(182,130,255,0.26);
}
.quick-action-card h3,
.team-card h3,
.process-card h3,
.traction-card h3,
.availability-card h3 {
  margin-bottom: 0.55rem;
}
.text-link {
  display: inline-flex;
  margin-top: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}
.text-link:hover {
  text-decoration: underline;
}
.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  margin-top: 0.35rem;
  border-radius: 18px;
  border: 1px solid rgba(123,231,255,0.12);
  background: rgba(255,255,255,0.03);
  font-size: 0.95rem;
  font-weight: 600;
}
.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}
.footer-legal-copy {
  max-width: 34rem;
  margin-bottom: 0.8rem;
}
.traction-section .section-heading,
.availability-section .section-heading,
.team-section .section-heading,
.process-section .section-heading {
  margin-bottom: 1.6rem;
}
@media (max-width: 1080px) {
  .traction-grid,
  .team-grid,
  .quick-actions-grid,
  .process-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .availability-grid {
    grid-template-columns: 1fr;
  }
  .team-card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 780px) {
  .traction-grid,
  .team-grid,
  .quick-actions-grid,
  .process-grid-4 {
    grid-template-columns: 1fr;
  }
  .team-card-featured {
    grid-column: auto;
  }
  .consent-check {
    grid-template-columns: 1fr;
  }
}

.legal-page {
  max-width: 900px;
}
.legal-panel {
  padding: 1rem;
  margin-top: 1rem;
}
.legal-content {
  padding: 0.5rem 0.4rem 0.2rem;
}
.legal-content h1 {
  margin-bottom: 0.7rem;
}
.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.55rem;
}
.legal-content p + p {
  margin-top: 0.7rem;
}

/* Clean replacement visuals for removed embedded-text product images */
.product-visual {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(118,236,255,0.16), transparent 34%),
    linear-gradient(180deg, rgba(10,24,38,0.96), rgba(6,15,26,0.98));
  border: 1px solid rgba(118,236,255,0.12);
}
.visual-kicker {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dffbff;
  background: rgba(118,236,255,0.08);
  border: 1px solid rgba(118,236,255,0.16);
}
.access-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem;
}
.visual-lock {
  width: min(78%, 260px);
  aspect-ratio: 3 / 5;
  border-radius: 32px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,34,54,0.95), rgba(8,19,31,0.98));
  border: 1px solid rgba(118,236,255,0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 22px 42px rgba(0,0,0,0.36),
    0 0 40px rgba(118,236,255,0.08);
}
.visual-lock::before,
.visual-lock::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,66,66,0.8), rgba(255,66,66,0.1));
}
.visual-lock::before { left: 8px; }
.visual-lock::after { right: 8px; }
.visual-lens {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin: 1.25rem auto 1rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(118,236,255,0.85), rgba(8,20,32,0.3) 44%, rgba(6,16,28,0.96) 64%),
    #081420;
  border: 1px solid rgba(118,236,255,0.22);
  box-shadow: 0 0 26px rgba(118,236,255,0.2);
}
.visual-keypad {
  width: 68%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.visual-keypad span,
.visual-slot {
  display: block;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(19,51,88,0.95), rgba(8,22,38,0.98));
  border: 1px solid rgba(118,236,255,0.16);
  box-shadow: inset 0 0 12px rgba(118,236,255,0.06);
}
.visual-keypad span {
  aspect-ratio: 1 / 1;
}
.visual-slot {
  width: 54%;
  height: 42px;
  margin: 1rem auto 0;
}
.visual-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.visual-tags span,
.command-label,
.command-status {
  padding: 0.52rem 0.76rem;
  border-radius: 999px;
  border: 1px solid rgba(118,236,255,0.14);
  background: rgba(118,236,255,0.06);
  color: #e8fbff;
  font-size: 0.8rem;
  font-weight: 700;
}
.command-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}
.command-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.command-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.command-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35e380;
  box-shadow: 0 0 14px rgba(53,227,128,0.6);
  display: inline-block;
}
.command-core {
  position: relative;
  flex: 1;
  min-height: 150px;
  display: grid;
  place-items: center;
}
.command-ring {
  width: min(46vw, 170px);
  height: min(46vw, 170px);
  max-width: 170px;
  max-height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(118,236,255,0.26);
  box-shadow:
    0 0 0 16px rgba(118,236,255,0.03),
    0 0 0 34px rgba(118,236,255,0.02),
    0 0 36px rgba(118,236,255,0.08) inset;
  background: radial-gradient(circle, rgba(118,236,255,0.12), rgba(118,236,255,0.02) 58%, transparent 60%);
}
.command-center-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(118,236,255,0.7);
}
.command-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.command-metrics div {
  padding: 0.9rem 0.8rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.command-metrics strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.92rem;
}
.command-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
}
@media (max-width: 640px) {
  .visual-lock { width: min(84%, 220px); }
  .command-metrics { grid-template-columns: 1fr; }
}
