:root {
  --bg: #0b0d11;
  --bg-soft: #11141a;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f2f4f8;
  --muted: #a3acb9;
  --accent: #2bd4a6;
  --accent-2: #4aa3ff;
  --success: #9be15d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.site {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 450px at 10% -10%, rgba(74, 163, 255, 0.17), transparent 55%),
    radial-gradient(700px 350px at 90% 10%, rgba(43, 212, 166, 0.15), transparent 60%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(45px);
  z-index: -1;
  opacity: 0.45;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: rgba(74, 163, 255, 0.55);
  top: 8%;
  right: -100px;
  animation: floatY 7s ease-in-out infinite;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: rgba(43, 212, 166, 0.45);
  bottom: -60px;
  left: -80px;
  animation: floatY 9s ease-in-out infinite reverse;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 10, 14, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(43, 212, 166, 0.65);
}

.brand-name {
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 700;
}

.brand-badge {
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.section-space {
  padding: 5rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-tags span {
  font-size: 0.84rem;
  color: #d7dce4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
}

.btn-accent {
  color: #081016;
  border: 0;
  background: linear-gradient(135deg, var(--accent), #58f3c4);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(43, 212, 166, 0.25);
}

.btn-accent:hover {
  color: #081016;
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(43, 212, 166, 0.34);
}

.device-mock {
  position: relative;
  max-width: 360px;
  margin-inline: auto;
}

.phone-frame {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2rem;
  padding: 0.65rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  width: 34%;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: #07090d;
  margin: 0 auto 0.55rem;
}

.phone-screen {
  background: linear-gradient(180deg, #10141c, #0d1118);
  border-radius: 1.4rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cfd5df;
  margin-bottom: 0.9rem;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.95rem;
  padding: 0.7rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.tile strong {
  font-size: 0.85rem;
}

.tile-accent {
  border-color: rgba(43, 212, 166, 0.6);
  background: rgba(43, 212, 166, 0.14);
}

.tile-success {
  border-color: rgba(155, 225, 93, 0.55);
}

.floating-chip {
  position: absolute;
  font-size: 0.75rem;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #edf1f8;
  background: rgba(14, 17, 23, 0.72);
}

.chip-one {
  top: 12%;
  left: -15%;
  animation: floatY 6s ease-in-out infinite;
}

.chip-two {
  bottom: 6%;
  right: -14%;
  animation: floatY 8s ease-in-out infinite reverse;
}

.section-title-wrap {
  max-width: 640px;
  margin: 0 auto 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}

.feature-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: 1rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 212, 166, 0.52);
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.highlight {
  background: linear-gradient(135deg, rgba(74, 163, 255, 0.12), rgba(43, 212, 166, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  padding: 1.4rem;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.text-muted-custom {
  color: var(--muted);
}

.scenario-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.scenario-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.62rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-list span {
  font-weight: 700;
  color: var(--accent);
  min-width: 3rem;
}

.cta-box {
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem;
}

.cta-box h2 {
  margin-bottom: 0.55rem;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 991.98px) {
  .section-space {
    padding: 4rem 0;
  }

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

  .chip-one,
  .chip-two {
    position: static;
    display: inline-block;
    margin-top: 0.65rem;
  }
}

@media (max-width: 575.98px) {
  .hero-tags span {
    font-size: 0.78rem;
  }

  .brand-badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb-one,
  .orb-two,
  .chip-one,
  .chip-two {
    animation: none;
  }

  .feature-card,
  .btn-accent {
    transition: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
