/* Verdexax Premium Animated Website */
:root {
  --bg: #030805;
  --bg-2: #07150b;
  --glass: rgba(255,255,255,0.075);
  --glass-strong: rgba(255,255,255,0.12);
  --line: rgba(255,255,255,0.13);
  --line-green: rgba(111,255,151,0.35);
  --text: #f5fff6;
  --muted: #aac4af;
  --soft: #66806b;
  --green: #67ff97;
  --green-2: #19c765;
  --lime: #c8ff51;
  --cyan: #56e7ff;
  --yellow: #ffd166;
  --red: #ff5e7a;
  --shadow: 0 28px 90px rgba(0,0,0,.45);
  --blur: blur(24px);
  --radius: 30px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(103,255,151,.20), transparent 34rem),
    radial-gradient(circle at 92% 12%, rgba(86,231,255,.13), transparent 34rem),
    radial-gradient(circle at 55% 90%, rgba(200,255,81,.10), transparent 42rem),
    linear-gradient(140deg, var(--bg), var(--bg-2) 55%, #020503);
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, calc(100% - 42px));
  margin: 0 auto;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  animation: noiseDrift 18s linear infinite;
}

@keyframes noiseDrift {
  from { transform: translateY(0); }
  to { transform: translateY(26px); }
}

.cursor-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,255,151,.13), transparent 64%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}

.floating-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
  z-index: -1;
}

.orb-1 {
  width: 320px; height: 320px;
  left: -110px; top: 20%;
  background: rgba(103,255,151,.10);
  animation: orbFloat 9s ease-in-out infinite alternate;
}

.orb-2 {
  width: 240px; height: 240px;
  right: -80px; top: 16%;
  background: rgba(86,231,255,.10);
  animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 360px; height: 360px;
  right: 12%; bottom: -190px;
  background: rgba(200,255,81,.09);
  animation: orbFloat 14s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  to { transform: translate3d(40px, -36px, 0) scale(1.08); }
}

/* Navigation */
.glass-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 28px));
  height: 74px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 12px;
  border: 1px solid var(--line);
  background: rgba(3,8,5,.62);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: 999px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  transition: transform .35s var(--ease), background .35s ease, border .35s ease;
}

.glass-nav.scrolled {
  background: rgba(3,8,5,.78);
  border-color: rgba(103,255,151,.25);
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-pill img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-bubbles {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.nav-bubbles a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 780;
  transition: .28s var(--ease);
}

.nav-bubbles a:hover,
.nav-bubbles a.active {
  color: #061009;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 10px 30px rgba(103,255,151,.18);
}

.nav-cta,
.bubble-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.nav-cta {
  min-height: 50px;
  padding: 0 18px;
  color: #061009;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 16px 38px rgba(103,255,151,.18);
}

.nav-cta i {
  font-style: normal;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
}

.mobile-menu {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.mobile-menu span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  left: 13px;
  transition: .25s var(--ease);
}

.mobile-menu span:first-child { top: 18px; }
.mobile-menu span:last-child { top: 27px; }

.mobile-menu.open span:first-child {
  transform: rotate(45deg);
  top: 23px;
}
.mobile-menu.open span:last-child {
  transform: rotate(-45deg);
  top: 23px;
}

.mobile-sheet {
  position: fixed;
  top: 104px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: min(520px, calc(100% - 28px));
  padding: 12px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(3,8,5,.78);
  backdrop-filter: var(--blur);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: .3s var(--ease);
  box-shadow: var(--shadow);
}

.mobile-sheet.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-sheet a {
  display: block;
  padding: 15px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 800;
}
.mobile-sheet a:hover {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

/* Sections */
.section-frame {
  position: relative;
  padding: 118px 0;
  min-height: auto;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 132px 0 84px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 66%);
  opacity: .75;
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  to { transform: translateY(58px); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.status-chip,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.status-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(103,255,151,.08);
  border: 1px solid rgba(103,255,151,.20);
  margin-bottom: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(103,255,151,.4), 0 0 18px var(--green); }
  75%, 100% { box-shadow: 0 0 0 14px rgba(103,255,151,0), 0 0 18px var(--green); }
}

h1, h2 {
  letter-spacing: -.075em;
  line-height: .96;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  max-width: 900px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.35rem, 5.1vw, 5rem);
  max-width: 920px;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #fff, #dfffe8 38%, var(--green) 66%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-intro p,
.center-head p,
.tech-copy p,
.brand-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.bubble-btn {
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 44px rgba(0,0,0,.26);
}

.bubble-btn.primary {
  color: #061009;
  background: linear-gradient(135deg, var(--green), var(--lime));
}

.bubble-btn.ghost {
  color: var(--text);
  background: rgba(255,255,255,.065);
  backdrop-filter: blur(16px);
}

.bubble-btn.small {
  min-height: 46px;
  padding: 0 18px;
  margin-top: 4px;
}

.magnetic:hover {
  transform: translateY(-4px) scale(1.02);
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 690px;
}

.stat-card,
.problem-card,
.feature-bubble,
.result-grid > div,
.upload-glass,
.result-glass,
.brand-showcase,
.brand-copy,
.tech-copy,
.tech-visual {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.038));
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 68px rgba(0,0,0,.23);
}

.stat-card {
  min-height: 92px;
  padding: 17px;
  border-radius: 24px;
  transition: .3s var(--ease);
}

.stat-card small,
.result-grid small,
.big-reading small {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-card strong {
  color: var(--green);
  font-size: 1.05rem;
}

/* Hero iPhone */
.hero-device {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 670px;
}

.device-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,255,151,.2), transparent 65%);
  animation: pulseDevice 4s ease-in-out infinite;
}

@keyframes pulseDevice {
  50% { transform: scale(1.08); opacity: .68; }
}

.iphone-frame {
  position: relative;
  width: min(390px, 86vw);
  aspect-ratio: 9 / 18.5;
  border-radius: 52px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.06)),
    #050806;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 46px 110px rgba(0,0,0,.58);
  transform: perspective(1100px) rotateY(-8deg) rotateX(4deg);
  animation: phoneFloat 4.8s ease-in-out infinite;
}

@keyframes phoneFloat {
  50% { transform: perspective(1100px) rotateY(-5deg) rotateX(2deg) translateY(-18px); }
}

.phone-notch {
  position: absolute;
  width: 118px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #020403;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  padding: 42px 18px 18px;
  background:
    radial-gradient(circle at 50% 8%, rgba(103,255,151,.19), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    #07120a;
  position: relative;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.phone-top img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.phone-top strong { display: block; }
.phone-top span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
}

.scan-card {
  position: relative;
  height: 245px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(103,255,151,.16) 1px, transparent 1px),
    linear-gradient(rgba(103,255,151,.16) 1px, transparent 1px),
    linear-gradient(135deg, #0a2d14, #06130b);
  background-size: 28px 28px;
  border: 1px solid rgba(103,255,151,.25);
}

.phone-field-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  filter: saturate(1.12) contrast(1.08);
}

.field-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(103,255,151,.20) 1px, transparent 1px),
    linear-gradient(rgba(103,255,151,.18) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, transparent 0 38%, rgba(3,8,5,.35) 75%);
  background-size: 32px 32px, 32px 32px, auto;
  mix-blend-mode: screen;
}

.scan-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(103,255,151,.28), transparent 60%);
  transform: translateX(-100%);
  animation: sweep 2.7s ease-in-out infinite;
}

@keyframes sweep {
  50%, 100% { transform: translateX(100%); }
}

.weed-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255,94,122,.14), 0 0 24px rgba(255,94,122,.8);
}

.d1 { left: 23%; top: 28%; }
.d2 { left: 62%; top: 44%; }
.d3 { left: 42%; top: 70%; }
.d4 { left: 78%; top: 20%; }

.drone-mini {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.drone-mini span:nth-child(1) {
  width: 72px; height: 36px;
  border-radius: 24px;
  background: rgba(255,255,255,.85);
}
.drone-mini span:nth-child(2),
.drone-mini span:nth-child(3) {
  position: absolute;
  width: 160px; height: 6px;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
}
.drone-mini span:nth-child(2) { transform: rotate(24deg); }
.drone-mini span:nth-child(3) { transform: rotate(-24deg); }

.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.phone-metrics div,
.phone-button {
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  padding: 14px;
}

.phone-metrics small {
  color: var(--muted);
  font-size: .75rem;
}
.phone-metrics strong {
  display: block;
  font-size: .92rem;
  margin-top: 3px;
}

.phone-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
  margin-bottom: 13px;
}
.phone-progress span {
  display: block;
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  border-radius: inherit;
}

.phone-button {
  width: 100%;
  color: #061009;
  background: linear-gradient(135deg, var(--green), var(--lime));
  font-weight: 900;
  border: 0;
}

.glass-card {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(3,8,5,.64);
  backdrop-filter: blur(18px);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.floating-card {
  animation: cardFloat 4.5s ease-in-out infinite;
}
.card-top { top: 80px; right: 20px; }
.card-bottom { left: 16px; bottom: 105px; animation-delay: 1s; }

.glass-card span {
  color: var(--green);
  font-weight: 950;
  font-size: .78rem;
}
.glass-card strong {
  display: block;
  margin-top: 2px;
}

@keyframes cardFloat {
  50% { transform: translateY(-14px); }
}

.float-icon {
  position: absolute;
  width: 88px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 52px rgba(0,0,0,.2);
  z-index: 2;
  animation: floatIcon 5s ease-in-out infinite;
  overflow: hidden;
  padding: 5px;
}

.float-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 19px;
}

.icon-a { top: 19%; left: 8%; }
.icon-b { top: 28%; right: 9%; animation-delay: .9s; }
.icon-c { bottom: 18%; left: 10%; animation-delay: 1.4s; }
.icon-d { bottom: 24%; right: 7%; animation-delay: 2s; }

@keyframes floatIcon {
  50% { transform: translateY(-18px) rotate(7deg); }
}

/* General content */
.section-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.section-intro h2,
.center-head h2,
.tech-copy h2,
.brand-copy h2 {
  margin: 12px 0 18px;
}

.problem-stack {
  display: grid;
  gap: 18px;
}

.problem-card {
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.card-index {
  color: var(--green);
  font-weight: 950;
  margin-bottom: 24px;
}

.problem-card h3,
.feature-bubble h3,
.timeline-step h3,
.result-header h3 {
  font-size: 1.28rem;
  letter-spacing: -.035em;
  margin-bottom: 9px;
}

.problem-card p,
.feature-bubble p,
.timeline-step p,
.api-note p,
.logo-meaning p {
  color: var(--muted);
  line-height: 1.72;
}

.center-head {
  text-align: center;
  max-width: 890px;
  margin: 0 auto 44px;
}

.center-head .section-kicker {
  margin-inline: auto;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-bubble {
  position: relative;
  border-radius: 34px;
  padding: 28px;
  min-height: 250px;
  overflow: hidden;
}

.feature-bubble::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(103,255,151,.15), transparent 65%);
  top: -80px;
  right: -80px;
}

.bubble-icon {
  width: 100%;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(103,255,151,.09);
  border: 1px solid rgba(103,255,151,.22);
  margin-bottom: 22px;
  overflow: hidden;
}

.bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .45s var(--ease);
}

.feature-bubble:hover .bubble-icon img {
  transform: scale(1.06);
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.timeline-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(103,255,151,.7), transparent);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 2;
  padding: 0 10px;
  text-align: center;
}

.step-bubble {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061009;
  font-size: 1.3rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 0 0 12px rgba(103,255,151,.08), 0 16px 40px rgba(103,255,151,.18);
}

/* Technology */
.technology-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.tech-visual,
.tech-copy {
  border-radius: 38px;
  padding: 34px;
  min-height: 560px;
}

.tech-copy {
  display: grid;
  align-content: center;
}

.orbit-system {
  position: relative;
  height: 492px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(103,255,151,.16);
  border-radius: 50%;
}
.orbit-1 { width: 390px; height: 390px; animation: orbitSpin 24s linear infinite; }
.orbit-2 { width: 285px; height: 285px; animation: orbitSpin 18s linear infinite reverse; }
.orbit-3 { width: 180px; height: 180px; animation: orbitSpin 12s linear infinite; }

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

.orbit-center {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(103,255,151,.23);
  box-shadow: var(--shadow);
  z-index: 2;
}

.orbit-center img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.orbit-node {
  position: absolute;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(3,8,5,.72);
  border: 1px solid rgba(103,255,151,.24);
  color: var(--green);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.n1 { top: 70px; left: 78px; }
.n2 { top: 120px; right: 54px; }
.n3 { bottom: 92px; right: 95px; }
.n4 { bottom: 128px; left: 70px; }

.tech-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.tech-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 17px;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.tech-list strong {
  font-weight: 950;
}
.tech-list span {
  color: var(--muted);
}

/* Demo */
.demo-console {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 12px;
  border-radius: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}

.upload-glass,
.result-glass {
  border-radius: 34px;
  min-height: 560px;
  overflow: hidden;
}

.upload-glass {
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(103,255,151,.12), transparent 28rem),
    rgba(0,0,0,.22);
}

.upload-glass input {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  cursor: pointer;
}

.upload-idle {
  text-align: center;
  max-width: 420px;
  padding: 26px;
  transition: .3s var(--ease);
}

.upload-bubble {
  width: min(280px, 78vw);
  height: 160px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(103,255,151,.25);
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
  animation: uploadFloat 3.4s ease-in-out infinite;
  overflow: hidden;
}

.upload-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

@keyframes uploadFloat {
  50% { transform: translateY(-10px) rotate(4deg); }
}

.upload-idle h3 {
  font-size: 1.7rem;
  letter-spacing: -.05em;
  margin-bottom: 9px;
}
.upload-idle p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 14px;
}

#demoCanvas {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.result-glass {
  padding: 26px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.04));
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.result-status {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,209,102,.10);
  border: 1px solid rgba(255,209,102,.22);
  color: #ffe5a8;
  font-weight: 900;
  font-size: .82rem;
}

.result-status.done {
  color: var(--green);
  background: rgba(103,255,151,.10);
  border-color: rgba(103,255,151,.24);
}

.big-reading {
  margin: 8px 0 14px;
}
.big-reading span {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 950;
  color: var(--green);
}

.meter-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 26px;
}
.meter-track div {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  transition: width 1s var(--ease);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.result-grid > div {
  border-radius: 24px;
  padding: 17px;
}
.result-grid strong {
  display: block;
  font-size: 1.28rem;
  color: var(--text);
}

.api-note {
  margin-top: auto;
  padding: 17px;
  border-radius: 24px;
  border: 1px dashed rgba(103,255,151,.26);
  background: rgba(103,255,151,.06);
}
.api-note strong { color: var(--green); }
.api-note code {
  display: inline-block;
  margin: 8px 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  color: var(--green);
}

/* Brand */
.brand-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
}

.brand-showcase,
.brand-copy {
  border-radius: 38px;
  padding: 30px;
  min-height: 460px;
}

.brand-showcase {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.86);
}

.brand-showcase img {
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
}

.brand-copy {
  display: grid;
  align-content: center;
}

.logo-meaning {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.logo-meaning div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.055);
}
.logo-meaning span {
  color: var(--green);
  font-weight: 950;
}

/* Footer */
.footer {
  width: min(1200px, calc(100% - 42px));
  margin: 30px auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.footer strong { color: var(--text); }

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  filter: blur(8px);
  transition:
    opacity .9s ease,
    transform .9s var(--ease),
    filter .9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .42s; }

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .22s ease, border .3s ease, box-shadow .3s ease;
}

.tilt-card:hover {
  border-color: rgba(103,255,151,.28);
  box-shadow: 0 24px 78px rgba(0,0,0,.33), 0 0 40px rgba(103,255,151,.08);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-bubbles { display: none; }
  .mobile-menu { display: block; }
  .hero-grid,
  .section-grid,
  .technology-grid,
  .demo-console,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .solution-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .timeline-line { display: none; }
  .hero-device { min-height: 610px; }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }
  .glass-nav {
    height: 66px;
  }
  .brand-pill span {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .section-frame {
    padding: 82px 0;
  }
  .hero {
    padding-top: 118px;
  }
  .mini-dashboard,
  .solution-cards,
  .timeline,
  .result-grid {
    grid-template-columns: 1fr;
  }
  .iphone-frame {
    width: min(330px, 88vw);
    transform: none;
    animation: phoneFloatMobile 4.8s ease-in-out infinite;
  }
  .hero-device {
    min-height: 560px;
  }
  .scan-card {
    height: 220px;
  }
  .float-icon {
    width: 74px;
    height: 62px;
    opacity: .78;
  }
  .icon-a { top: 15%; left: 3%; }
  .icon-b { top: 18%; right: 3%; }
  .icon-c,
  .icon-d {
    display: none;
  }
  .feature-bubble {
    min-height: auto;
  }
  .bubble-icon {
    height: 148px;
  }
  .tech-visual,
  .tech-copy,
  .upload-glass,
  .result-glass,
  .brand-showcase,
  .brand-copy {
    min-height: auto;
    border-radius: 28px;
  }
  .orbit-system {
    height: 360px;
    scale: .75;
  }
  .footer {
    border-radius: 28px;
    flex-wrap: wrap;
  }
}

@keyframes phoneFloatMobile {
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
