:root {
  --bg: #041222;
  --surface: #081a30;
  --card: #0c2138;
  --card2: #102743;
  --primary: #2563eb;
  --pd: #1d4ed8;
  --pdim: rgba(37, 99, 235, 0.14);
  --pglow: rgba(37, 99, 235, 0.35);
  --accent: #00c8e8;
  --text: #f9fafb;
  --muted: #9ca3af;
  --dim: #4b5563;
  --border: rgba(255, 255, 255, 0.07);
  --ok: #22c55e;
  --font: "Inter", -apple-system, sans-serif;
  --r: 16px;
  --rs: 8px;
  --rl: 24px;
}

*,
*::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);
  line-height: 1.6;
  overflow-x: hidden;
  -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: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--pdim);
  border-radius: 99px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(4, 18, 34, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nl {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nb {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 12px;
  transition: all 0.2s;
}

.nb:hover {
  color: var(--primary);
  border-color: var(--pdim);
}

.nl2 {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.ni {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 10px var(--pglow);
}

.nb2 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.nb2 span {
  color: var(--primary);
}

.nb3 {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 400;
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nlinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.ncta {
  padding: 8px 20px;
  border-radius: var(--rs);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 16px var(--pglow);
}

.ncta:hover {
  background: var(--pd);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--pglow);
}

.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hb.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hb.open span:nth-child(2) {
  opacity: 0;
}

.hb.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mm {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 18, 34, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.mm.open {
  display: flex;
}

.mm a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: color 0.2s;
}

.mm a:hover {
  color: var(--primary);
}

.mm .mc {
  padding: 12px 44px;
  border-radius: var(--rs);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 30% 20%,
      rgba(37, 99, 235, 0.18) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 70%,
      rgba(0, 200, 232, 0.12) 0%,
      transparent 60%
    ),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: radial-gradient(
    ellipse 85% 85% at 30% 20%,
    black 20%,
    transparent 75%
  );
}

.hrow {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--pdim);
  background: rgba(15, 23, 42, 0.7);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.6rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hbadge::before {
  content: "•";
  font-size: 0.44rem;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.gp {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .htag {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hbts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bp {
  padding: 13px 30px;
  border-radius: var(--rs);
  background: linear-gradient(135deg, var(--primary), var(--pd));
  color: #fff;
  font-weight: 700;
  font-size: 0.93rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 0 26px var(--pglow);
}

.bp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px var(--pglow);
}

.bo {
  padding: 13px 30px;
  border-radius: var(--rs);
  background: transparent;
  border: 1px solid var(--pdim);
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.bo:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.dv {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.device-box {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

.box-card {
  background: var(--card2);
  border: 1px solid var(--pdim);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  text-align: left;
  box-shadow:
    0 0 60px rgba(15, 23, 42, 0.7),
    0 0 0 1px var(--border);
  animation: float 6s ease-in-out infinite;
}

.box-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.box-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.box-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.box-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.metric {
  background: var(--card);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin-bottom: 0.2rem;
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 700;
}

.metric-good {
  color: var(--ok);
}

/* FACTS / PROBLEM / SOLUTION SECTIONS */
.s {
  padding: 80px 5%;
}

.si {
  max-width: 1200px;
  margin: 0 auto;
}

.sc {
  display: inline-block;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.st {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.ss {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 540px;
  line-height: 1.7;
}

.twocol {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: center;
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.list li span {
  font-weight: 700;
  color: var(--accent);
}

.plabel {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* helper styles for customerâ€‘friendly info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--card2);
  padding: 2rem;
  border-radius: var(--rs);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.info-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.warn {
  color: #f97316;
  margin-right: 0.4rem;
}

/* PRODUCT OVERVIEW */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pcard {
  background: var(--card);
  border-radius: var(--rl);
  border: 1px solid var(--border);
  padding: 2rem;
}

.pcard h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.pcard p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.plist {
  list-style: none;
}

.plist li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plist li:last-child {
  border-bottom: none;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}

/* FEATURES */
.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fcard {
  background: var(--card);
  border-radius: var(--rl);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.fcard:hover {
  transform: translateY(-5px);
  border-color: var(--pdim);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.ficon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.fcard h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.fcard p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* PRICING */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pcard {
  background: var(--card);
  border-radius: var(--rl);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pcard:hover {
  transform: translateY(-5px);
  border-color: var(--pdim);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.pbadge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pcard h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.pprice {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pcard p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.plist {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.plist li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.plist li:last-child {
  border-bottom: none;
}

.pbtn {
  width: 100%;
  padding: 12px 24px;
  border-radius: var(--rs);
  background: transparent;
  border: 1px solid var(--pdim);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.pbtn:hover {
  background: var(--pdim);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.pbtn.primary {
  background: linear-gradient(135deg, var(--primary), var(--pd));
  color: #fff;
  border: none;
  box-shadow: 0 0 20px var(--pglow);
}

.pbtn.primary:hover {
  background: var(--pd);
  box-shadow: 0 4px 25px var(--pglow);
}

/* WAITLIST */
.ws {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.wi {
  padding: 80px 5%;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.wi h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.wi p {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.wform {
  background: var(--card);
  border: 1px solid var(--pdim);
  border-radius: var(--rl);
  padding: 2.5rem;
  box-shadow: 0 0 40px rgba(15, 23, 42, 0.6);
  text-align: left;
}

.wform h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.8rem;
}

.wfrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wfinp {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--rs);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.wfinp:focus {
  border-color: var(--pdim);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.wfinp::placeholder {
  color: var(--dim);
}

.wfbtn {
  width: 100%;
  padding: 14px;
  border-radius: var(--rs);
  background: linear-gradient(135deg, var(--primary), var(--pd));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 0 24px var(--pglow);
}

.wfbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--pglow);
}

.wfmsg {
  display: none;
  padding: 12px;
  border-radius: var(--rs);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #4ade80;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.wfmsg.show {
  display: block;
}

.wftiny {
  color: var(--dim);
  font-size: 0.75rem;
  margin-top: 0.8rem;
}

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 5% 24px;
}

.ftop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.fbp p {
  color: var(--dim);
  font-size: 0.83rem;
  max-width: 280px;
  line-height: 1.7;
  margin-top: 0.6rem;
}

.flr {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.fc2 h5 {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.fc2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fc2 a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}

.fc2 a:hover {
  color: var(--primary);
}

.fbar {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.fbar p,
.fbar a {
  color: var(--dim);
  font-size: 0.79rem;
}

.fbar a {
  text-decoration: none;
  margin-left: 1.1rem;
  transition: color 0.2s;
}

.fbar a:hover {
  color: var(--primary);
}

/* ANIMATIONS / RESPONSIVE */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .hrow {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hrow .ht {
    text-align: center;
  }

  .hbts {
    justify-content: center;
  }

  .twocol {
    grid-template-columns: 1fr;
  }

  .pgrid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .wfrow {
    grid-template-columns: 1fr;
  }

  .fgrid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .dv {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-image img {
    width: 240px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }

  .nlinks,
  .ncta {
    display: none;
  }

  .hb {
    display: flex;
  }

  .hrow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ht h1 {
    font-size: 2rem;
  }

  .ht p {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 18px;
  }

  body {
    font-size: 0.95rem;
  }

  nav {
    padding: 0.8rem 4%;
  }

  section {
    padding: 40px 4%;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hrow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ht h1 {
    font-size: 1.7rem;
  }

  .ht p {
    font-size: 0.9rem;
  }

  .hbts {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hbts a {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  .twocol {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pgrid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .wfrow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dv {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 250px;
  }

  .ftop {
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 17px;
  }

  body {
    font-size: 0.9rem;
  }

  nav {
    padding: 0.7rem 3%;
  }

  section {
    padding: 30px 3%;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hrow {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 60px 3% 40px;
  }

  .ht h1 {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
  }

  .ht p {
    font-size: 0.85rem;
  }

  .hbts {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hbts a {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
    text-align: center;
  }

  .twocol {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pgrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wfrow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dv {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 200px;
  }

  .ftop,
  .fbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .fbar a {
    margin-left: 0;
    font-size: 0.85rem;
  }

  .mm a {
    font-size: 1.2rem;
  }

  .mm .mc {
    font-size: 0.95rem;
  }

  /* Hide non-essential sections on mobile */
  #overview,
  #features {
    display: none !important;
  }

  /* Hide detailed feature grids and lists */
  .fgrid,
  .pgrid,
  .plist,
  .info-grid .info-card ul {
    display: none !important;
  }

  /* Keep essential content visible */
  #why .si > .reveal,
  #waitlist .wi > .reveal {
    display: block !important;
  }
}
