:root {
  --bg: #05080f;
  --s1: #0a0f1c;
  --s2: #0e1525;
  --card: #111b2e;
  --t: #00d4ff;
  --tdim: rgba(0, 212, 255, 0.1);
  --tglow: rgba(0, 212, 255, 0.3);
  --p: #7c3aed;
  --pdim: rgba(124, 58, 237, 0.1);
  --pglow: rgba(124, 58, 237, 0.3);
  --text: #eaeef4;
  --muted: #8892a4;
  --dim: #4a5568;
  --bdr: rgba(255, 255, 255, 0.06);
  --bdt: rgba(0, 212, 255, 0.2);
  --bdp: rgba(124, 58, 237, 0.2);
  --font: "Inter", -apple-system, sans-serif;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
a,
input[type="button"],
input[type="submit"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--tdim);
  border-radius: 4px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── NAV ─────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  transition: all 0.4s;
}

nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

nav.sc {
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 13px;
}

.logo-text {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.2px;
}

.logo-text b {
  color: var(--t);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 8px;
  background: var(--t);
  color: #05080f;
  font-weight: 800;
  font-size: 0.84rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

.nav-cta:hover {
  background: #5eebff;
  box-shadow: 0 0 20px var(--tglow);
  transform: translateY(-1px);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ham span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

.ham.o span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.ham.o span:nth-child(2) {
  opacity: 0;
}

.ham.o span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mob {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mob.o {
  display: flex;
}

.mob a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 800;
  transition: color 0.2s;
}

.mob a:hover,
.mob a:focus {
  color: var(--t);
}

.mob-cta {
  padding: 14px 52px;
  border-radius: 8px;
  background: var(--t);
  color: #05080f;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* ── HERO ─────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 110px 7% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 65% at 70% 40%,
      rgba(0, 212, 255, 0.09) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 15% 70%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 55%
    ),
    var(--bg);
}

/* Noise texture overlay */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Faint grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
  mask-image: radial-gradient(
    ellipse 80% 70% at 60% 30%,
    black 20%,
    transparent 70%
  );
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--bdt);
  background: var(--tdim);
  color: var(--t);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t);
  box-shadow: 0 0 6px var(--t);
  animation: blink 2s infinite;
}

h1.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.h1-grad {
  background: linear-gradient(120deg, var(--t) 0%, #60efff 40%, var(--p) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--t), #0099bb);
  color: #05080f;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 30px var(--tglow);
}

.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--tglow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--bdt);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: var(--tdim);
  border-color: var(--t);
  transform: translateY(-3px);
}

.hero-img {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  border-radius: 20px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--bdr),
    0 0 60px rgba(0, 212, 255, 0.08);
  animation: hfloat 7s ease-in-out infinite;
}

.hero-img::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--tglow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  top: 30%;
  left: 25%;
}

/* ── MARQUEE ─────────── */
.marquee-band {
  padding: 22px 0;
  background: var(--s1);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-item span {
  color: var(--t);
}

/* ── SECTIONS ─────────── */
section {
  padding: 100px 7%;
}

.sec-label {
  display: inline-block;
  color: var(--t);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.12;
  color: var(--text);
}

.sec-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

.center {
  text-align: center;
}

.center .sec-sub {
  margin: 0 auto;
}

/* ── PRODUCTS ─────────── */
.products {
  background: var(--s1);
}

.products-head {
  text-align: center;
  margin-bottom: 5rem;
}

.prod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  margin-bottom: 6rem;
}

.prod-row:last-child {
  margin-bottom: 0;
}

.prod-row.rev {
  direction: rtl;
}

.prod-row.rev > * {
  direction: ltr;
}

.prod-img-wrap {
  position: relative;
}

.prod-img-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.prod-img-frame img {
  width: 100%;
  transition: transform 0.6s ease;
}

.prod-img-frame:hover img {
  transform: scale(1.03);
}

.prod-glow-c {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(0, 212, 255, 0.3),
      transparent,
      rgba(0, 212, 255, 0.1)
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.prod-glow-m {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.3),
      transparent,
      rgba(124, 58, 237, 0.1)
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.prod-img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ci-badge {
  background: rgba(0, 212, 255, 0.15);
  color: var(--t);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.md-badge {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.prod-text {
}

.prod-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 1.2rem;
}

.cp {
  background: var(--tdim);
  color: var(--t);
  border: 1px solid var(--bdt);
}

.mp {
  background: var(--pdim);
  color: #a78bfa;
  border: 1px solid var(--bdp);
}

.prod-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.ct h2 {
  color: var(--t);
}

.mt h2 {
  background: linear-gradient(135deg, #a78bfa, #60efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-text p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.prod-features {
  list-style: none;
  margin-bottom: 2rem;
}

.prod-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--bdr);
  color: var(--muted);
  font-size: 0.88rem;
}

.prod-features li:last-child {
  border-bottom: none;
}

.fi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.c-dot {
  background: var(--t);
  box-shadow: 0 0 8px var(--t);
}

.m-dot {
  background: #a78bfa;
  box-shadow: 0 0 8px #a78bfa;
}

.btn-c {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--t);
  color: #05080f;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-c:hover {
  background: #5eeaff;
  box-shadow: 0 4px 20px var(--tglow);
  transform: translateY(-2px);
}

.btn-m {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--p);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-m:hover {
  background: #9b62ff;
  box-shadow: 0 4px 20px var(--pglow);
  transform: translateY(-2px);
}

/* ── MISSION ─────────── */
.mission {
  background: var(--s2);
  text-align: center;
}

.mission-quote {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.8px;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text);
}

.mission-quote em {
  font-style: normal;
  color: var(--t);
}

.mission-quote span {
  color: var(--muted);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mc {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: 0.3s;
}

.mc:hover {
  border-color: var(--bdt);
  transform: translateY(-4px);
}

.mc-ico {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.mc h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.mc p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── STATS ─────────── */
.stats {
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.stat {
  background: var(--s1);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-n {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--t), var(--p));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-l {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ── TECH ─────────── */
.tech {
  background: var(--s1);
}

.tech-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.tb {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: 0.3s;
}

.tb:hover {
  border-color: var(--bdt);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.07);
}

.tb-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tb h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tb p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA BAND ─────────── */
.cta-band {
  background: var(--s2);
  border-top: 1px solid var(--bdr);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.07) 0%,
    transparent 70%
  );
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 1rem;
  position: relative;
}

.cta-band p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ─────────── */
footer {
  background: var(--s1);
  border-top: 1px solid var(--bdr);
  padding: 50px 7% 28px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.foot-brand p {
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 0.8rem;
}

.fc {
}

.fc h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fc a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.fc a:hover {
  color: var(--t);
}

.foot-contact .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.foot-contact .contact-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.foot-bar {
  border-top: 1px solid var(--bdr);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.foot-bar p,
.foot-bar a {
  color: var(--dim);
  font-size: 0.78rem;
}

.foot-bar a {
  text-decoration: none;
  margin-left: 1.2rem;
  transition: color 0.2s;
}

.foot-bar a:hover {
  color: var(--t);
}

/* ── ANIMATIONS ─────────── */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes hfloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ─────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 6% 70px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .prod-row,
  .prod-row.rev {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
    text-align: center;
  }

  .prod-features li {
    justify-content: center;
  }

  .mission-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav .nav-links,
  .nav-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  section {
    padding: 70px 5%;
  }

  .hero {
    padding: 100px 5% 60px;
  }

  .prod-row {
    margin-bottom: 4rem;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .foot-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-bar a {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 18px;
  }

  body {
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  nav {
    padding: 0 4% !important;
  }

  nav .inner {
    height: 56px;
  }

  .logo img {
    width: 56px;
    height: 56px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  section {
    padding: 40px 4% !important;
  }

  h1 {
    font-size: 2.2rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  p {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 80px 4% 50px !important;
    margin-top: 20px;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-solid,
  .btn-ghost {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
  }

  .prod-row,
  .prod-row.rev {
    gap: 1.5rem;
  }

  .prod-text h2 {
    font-size: 1.4rem;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .tech-bento {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 17px;
  }

  body {
    font-size: 0.9rem;
  }

  nav {
    padding: 0 3% !important;
  }

  nav .inner {
    height: 50px;
  }

  .logo img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  section {
    padding: 30px 3% !important;
  }

  h1.hero-h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  h1 {
    font-size: 1.9rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    padding: 70px 3% 40px !important;
    margin-top: 10px;
  }

  .hero-badge {
    padding: 5px 10px;
    font-size: 0.65rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-solid,
  .btn-ghost {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
    text-align: center;
    justify-content: center;
  }

  .hero-img img {
    width: 100% !important;
    max-width: 100%;
  }

  .prod-row,
  .prod-row.rev {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .prod-text h2 {
    font-size: 1.1rem;
  }

  .prod-features {
    padding: 1rem 0;
  }

  .prod-features li {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission-card {
    padding: 1.2rem;
  }

  .mission-card h3 {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.2rem;
  }

  .tech-bento {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .bento-item {
    padding: 1.2rem;
    min-height: auto;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .foot-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .foot-bar a {
    margin-left: 0;
    font-size: 0.85rem;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .mob a {
    font-size: 1.3rem;
  }

  .mob-cta {
    padding: 12px 40px !important;
    font-size: 1rem;
  }

  /* Hide non-essential sections on mobile */
  .stats,
  .mission,
  .tech,
  .contact {
    display: none !important;
  }

  /* Simplify products section - hide detailed feature lists */
  .prod-features {
    display: none !important;
  }

  /* Keep only essential product info */
  .prod-text p {
    margin-bottom: 1.5rem;
  }
}
