:root {
  --bg: #060816;
  --bg-2: #090d22;
  --surface: rgba(11, 16, 37, 0.76);
  --surface-strong: rgba(15, 21, 48, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7ff;
  --muted: rgba(224, 232, 255, 0.72);
  --muted-strong: rgba(224, 232, 255, 0.88);
  --lime: #abff5d;
  --cyan: #56e8ff;
  --violet: #8e7dff;
  --orange: #ff996a;
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(86, 232, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(174, 255, 93, 0.16), transparent 20%),
    radial-gradient(circle at 75% 78%, rgba(142, 125, 255, 0.15), transparent 26%),
    linear-gradient(180deg, #050713 0%, #070b19 45%, #04050d 100%);
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.noise,
.grid,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
  z-index: 0;
}

.grid {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 74%);
  z-index: 0;
}

.glow {
  filter: blur(24px);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: drift 16s ease-in-out infinite;
  z-index: 0;
}

.glow-left {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(86, 232, 255, 0.22) 0%, transparent 68%);
}

.glow-right {
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: 16rem;
  background: radial-gradient(circle, rgba(174, 255, 93, 0.18) 0%, transparent 68%);
  animation-delay: -6s;
}

main,
.topbar,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  padding: 1rem 2rem 0;
  backdrop-filter: blur(24px);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 15, 0.88), rgba(4, 6, 15, 0.5)),
    radial-gradient(circle at 20% 50%, rgba(86, 232, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(171, 255, 93, 0.1), transparent 28%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: -1;
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(7, 10, 24, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #031018;
  background:
    linear-gradient(135deg, #f4ffb8 0%, var(--lime) 35%, var(--cyan) 100%);
  box-shadow:
    0 16px 30px rgba(86, 232, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong {
  font-family: "Unbounded", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(171, 255, 93, 0.16);
  background: rgba(171, 255, 93, 0.08);
  color: #dcffab;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
  white-space: nowrap;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(171, 255, 93, 0.42);
  animation: pulse 2s infinite;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.nav a:hover {
  color: #061019;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  transform: translateY(-1px);
}

.nav a::after {
  display: none;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 180ms ease;
}

.topbar-cta {
  flex: 0 0 auto;
  box-shadow: 0 16px 42px rgba(86, 232, 255, 0.12);
}

.button {
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #061019;
  background: linear-gradient(135deg, var(--lime), #e5ffb5 44%, var(--cyan));
  box-shadow: 0 18px 45px rgba(86, 232, 255, 0.2);
  font-weight: 800;
}

.button-ghost {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-ghost:hover {
  border-color: rgba(171, 255, 93, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

main {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 1.5rem 0 3rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  letter-spacing: 0.02em;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(171, 255, 93, 0.42);
  animation: pulse 2s infinite;
}

.hero h1,
.section h2 {
  margin: 1rem 0 0;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.06em;
  line-height: 1.03;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(125deg, #ffffff 0%, var(--lime) 30%, var(--cyan) 68%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 56ch;
  margin: 1.3rem 0 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-pills span,
.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38rem;
}

.hero-copy,
.hero-visual,
.section-head,
.feature-card,
.showcase-card,
.flow-step > div,
.contact-card > div {
  min-width: 0;
}

.frame {
  width: min(100%, 560px);
  border-radius: 2rem;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(21, 28, 58, 0.9), rgba(11, 15, 36, 0.96)),
    linear-gradient(135deg, rgba(86, 232, 255, 0.12), rgba(171, 255, 93, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.frame-main {
  padding: 1rem;
  transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) translateY(0);
  animation: hover 7s ease-in-out infinite;
}

.frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.4rem 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.window-dots {
  display: inline-flex;
  gap: 0.35rem;
}

.window-dots i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.frame-label {
  margin-right: auto;
  margin-left: 0.45rem;
}

.frame-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(171, 255, 93, 0.12);
  color: #dfffb6;
  border: 1px solid rgba(171, 255, 93, 0.18);
}

.terminal {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-row {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.035);
}

.terminal-row-accent {
  background:
    linear-gradient(135deg, rgba(86, 232, 255, 0.1), rgba(171, 255, 93, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.terminal-key {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.72rem;
  padding-top: 0.2rem;
}

.terminal p {
  margin: 0;
  line-height: 1.75;
  color: rgba(244, 247, 255, 0.92);
  overflow-wrap: anywhere;
}

.signal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.signal div,
.feature-card,
.showcase-card,
.flow-step,
.number-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1.1rem;
}

.signal strong {
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
}

.signal span,
.feature-card p,
.showcase-card p,
.flow-step p,
.number-card span,
.footer p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.floating-card {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  max-width: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 24, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
  animation: bob 6s ease-in-out infinite;
}

.floating-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.5;
}

.card-one {
  left: -1.2rem;
  bottom: 5rem;
  border-color: rgba(171, 255, 93, 0.18);
}

.card-two {
  right: -1rem;
  top: 3.3rem;
  border-color: rgba(86, 232, 255, 0.18);
  animation-delay: -2.3s;
}

.ticker {
  overflow: hidden;
  padding: 0 0 1.5rem;
}

.ticker-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.section h2 {
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  max-width: 14ch;
}

.feature-grid,
.showcase-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.showcase-card {
  padding: 1.35rem;
  border-radius: 1.5rem;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature-index,
.feature-tag,
.showcase-icon,
.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.feature-index {
  min-width: 3rem;
  min-height: 3rem;
  color: #031018;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
}

.feature-tag {
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.feature-card h3,
.showcase-card h3,
.flow-step h3,
.contact-card h2 {
  margin: 0 0 0.7rem;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.22;
  font-size: 1.2rem;
  text-wrap: balance;
}

.showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-card {
  min-height: 13rem;
}

.showcase-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 1.2rem;
  color: var(--text);
}

.flow-grid {
  display: grid;
  gap: 1rem;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: 1.4rem;
}

.flow-step span {
  width: 3rem;
  height: 3rem;
  color: #031018;
  background: linear-gradient(135deg, var(--orange), var(--lime));
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.number-card {
  padding: 1.45rem;
  border-radius: 1.5rem;
}

.number-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.quote-section blockquote {
  margin: 0;
  max-width: 16ch;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.55rem;
  border-radius: 1.7rem;
}

.footer {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.02);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes hover {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(-14deg) rotateX(10deg) translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(171, 255, 93, 0.4);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(171, 255, 93, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(171, 255, 93, 0);
  }
}

@media (max-width: 1120px) {
  .hero,
  .feature-grid,
  .showcase-grid,
  .numbers {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.25rem;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 820px) {
  .topbar {
    padding: 1rem;
  }

  .topbar-shell {
    flex-wrap: wrap;
    padding: 0.9rem;
  }

  .topbar-center {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar-status {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }

  .topbar-cta {
    margin-left: auto;
  }

  main,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero,
  .feature-grid,
  .showcase-grid,
  .numbers,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.5rem;
  }

  .hero h1,
  .section h2 {
    max-width: 100%;
    line-height: 1.06;
  }

  .hero-visual {
    min-height: 0;
  }

  .frame-main {
    transform: none;
    animation: none;
  }

  .floating-card {
    position: static;
    margin-top: 0.85rem;
    max-width: none;
  }

  .contact-card {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .topbar-shell {
    padding: 0.8rem;
    border-radius: 1.2rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .topbar-status {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .nav a {
    min-height: 2.35rem;
    padding: 0.5rem 0.8rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .section h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.8rem);
  }

  .hero-actions,
  .button,
  .contact-card .button {
    width: 100%;
  }

  .button {
    min-height: 3.2rem;
  }

  .terminal-row {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 3.2rem 0;
  }
}
