:root {
  --black: #050505;
  --black-2: #0a0a0d;
  --black-3: #111116;
  --white: #ffffff;
  --muted: #a7a7b3;
  --muted-2: #6f7080;
  --blue: #00aaff;
  --blue-2: #35c8ff;
  --blue-dark: #005eff;
  --line: rgba(255, 255, 255, 0.12);
  --line-blue: rgba(0, 170, 255, 0.36);
  --glass: rgba(255, 255, 255, 0.055);
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.glow {
  position: fixed;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
  background: var(--blue);
}

.glow.one {
  top: -160px;
  right: -120px;
}

.glow.two {
  left: -160px;
  bottom: 8%;
  background: var(--blue-dark);
  opacity: 0.18;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.55'/%3E%3C/svg%3E");
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  letter-spacing: -0.8px;
  font-size: 23px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-blue);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 170, 255, 0.22), transparent),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 35px rgba(0, 170, 255, 0.28);
  color: var(--blue-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.brand span:last-child {
  color: var(--white);
}

.brand b {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  color: var(--white) !important;
  background: rgba(0, 170, 255, 0.1);
  box-shadow: 0 0 28px rgba(0, 170, 255, 0.16);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--glass);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
}

.hero {
  min-height: 100vh;
  padding: 140px 0 84px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.7);
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin-bottom: 26px;
}

.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.hero h1 .blue {
  color: var(--blue);
  text-shadow: 0 0 36px rgba(0, 170, 255, 0.35);
}

.hero-desc {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 34px;
}

.typing-line {
  margin-bottom: 28px;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 15px;
}

.typing-line span {
  color: var(--blue-2);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  background: var(--blue);
  margin-left: 5px;
  vertical-align: -3px;
  animation: blink 0.8s infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: 0.25s;
  font-size: 15px;
}

.btn-primary {
  color: var(--black);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(255, 255, 255, 0.16);
}

.btn-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 18px 48px rgba(0, 170, 255, 0.3);
}

.btn-ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.metric strong {
  display: block;
  font-size: 26px;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.dev-panel {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(0, 170, 255, 0.15), transparent 40%),
    linear-gradient(135deg, rgba(20, 20, 24, 0.6) 0%, rgba(10, 10, 12, 0.8) 100%);
  backdrop-filter: blur(24px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dev-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.6), transparent);
  z-index: 10;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.window-dots {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s ease;
}

.dev-panel:hover .dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 12px rgba(255, 95, 87, 0.6);
}

.dev-panel:hover .dot:nth-child(2) {
  background: #ffbd2e;
  box-shadow: 0 0 12px rgba(255, 189, 46, 0.6);
}

.dev-panel:hover .dot:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 12px rgba(40, 200, 64, 0.6);
}

.panel-title {
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.panel-title::before {
  content: "📁";
  font-size: 14px;
  opacity: 0.9;
}

.terminal {
  flex: 1;
  padding: 24px 30px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14.5px;
  line-height: 1.9;
  color: #b0c4de;
  position: relative;
  z-index: 2;
}

.terminal p {
  margin-bottom: 8px;
}

.terminal .cmd {
  color: var(--blue-2);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(53, 200, 255, 0.4);
}

.terminal .ok {
  color: #00e676;
  font-weight: bold;
  margin-right: 8px;
  text-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
}

.terminal .muted {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.stack-cloud {
  padding: 0 30px 30px 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stack-chip {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stack-chip:hover {
  border-color: rgba(0, 170, 255, 0.5);
  background: linear-gradient(180deg, rgba(0, 170, 255, 0.15) 0%, rgba(0, 170, 255, 0.05) 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.25);
}

.product-card {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: 260px;
  border: 1px solid var(--line-blue);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(0, 170, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  padding: 18px;
  animation: float 4.2s ease-in-out infinite;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.mini-bars {
  display: grid;
  gap: 9px;
}

.mini-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.mini-bars span::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.mini-bars span:nth-child(1)::before {
  width: 88%;
}

.mini-bars span:nth-child(2)::before {
  width: 64%;
}

.mini-bars span:nth-child(3)::before {
  width: 76%;
}

.orb {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid var(--line-blue);
  background: radial-gradient(circle, rgba(0, 170, 255, 0.2), transparent 68%);
  left: 36px;
  bottom: 42px;
  animation: spin 14s linear infinite;
}

.orb::before,
.orb::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orb::after {
  inset: 52px;
  background: var(--blue);
  box-shadow: 0 0 34px rgba(0, 170, 255, 0.8);
}

section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -2.4px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  transition: 0.28s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(0, 170, 255, 0.18), transparent 38%);
  opacity: 0;
  transition: 0.28s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--line-blue);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-blue);
  border-radius: 20px;
  color: var(--blue-2);
  background: rgba(0, 170, 255, 0.08);
  font-size: 27px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 23px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 170, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.sticky-card h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.sticky-card p {
  color: var(--muted);
  line-height: 1.8;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tech-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: 0.25s;
}

.tech-item:hover {
  border-color: var(--line-blue);
  background: rgba(0, 170, 255, 0.06);
}

.tech-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.tech-item span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.showcase {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
}

.tabs {
  display: grid;
  gap: 12px;
}

.tab-btn {
  text-align: left;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.tab-btn strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.tab-btn span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.tab-btn.active {
  border-color: var(--line-blue);
  background: rgba(0, 170, 255, 0.1);
  box-shadow: 0 0 38px rgba(0, 170, 255, 0.1);
}

.showcase-screen {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 170, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.045);
  padding: 24px;
  overflow: hidden;
}

/* ── Mockup Panel Switch ── */
.mockup-panel {
  display: none;
  height: 100%;
  animation: fadeInUp 0.35s ease;
}

.mockup-panel.active {
  display: block !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-browser {
  height: 100%;
  min-height: 382px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.38);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-top {
  height: 48px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.mock-url-bar {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: 0.3px;
}

/* ── Landing Page Mockup ── */
.lp-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-logo-bar {
  width: 60px;
  height: 14px;
  background: var(--blue);
  border-radius: 6px;
  opacity: 0.8;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-nav-link {
  width: 32px;
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.lp-nav-cta {
  width: 46px;
  height: 20px;
  background: var(--blue);
  border-radius: 999px;
  opacity: 0.85;
}

.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.lp-hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-tag {
  width: 90px;
  height: 16px;
  background: rgba(0, 170, 255, 0.25);
  border: 1px solid rgba(0, 170, 255, 0.4);
  border-radius: 999px;
}

.lp-h1 {
  height: 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
}

.lp-h1.short {
  width: 70%;
  height: 18px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.lp-desc {
  height: 9px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.lp-desc.mid {
  width: 80%;
  height: 9px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
}

.lp-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.lp-btn {
  height: 24px;
  border-radius: 999px;
}

.lp-btn.primary {
  width: 70px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.4);
}

.lp-btn.ghost {
  width: 56px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.lp-hero-visual {
  height: 115px;
  background: radial-gradient(circle at 40% 40%, rgba(0, 170, 255, 0.22), transparent 65%), rgba(0, 170, 255, 0.06);
  border: 1px solid var(--line-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.lp-card-float {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
}

.lp-cf-title {
  height: 10px;
  width: 60%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  margin-bottom: 6px;
}

.lp-cf-line {
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  margin-bottom: 5px;
}

.lp-cf-line.short {
  width: 70%;
}

.lp-cf-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 999px;
  width: 82%;
  margin-top: 4px;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-feat {
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Admin Dashboard Mockup ── */
.dash-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.dash-sidebar {
  width: 68px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.5);
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  opacity: 0.85;
  margin: 0 auto 4px;
}

.dash-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-item {
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.dash-item.active {
  background: rgba(0, 170, 255, 0.25);
  border: 1px solid rgba(0, 170, 255, 0.4);
}

.dash-main {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-page-title {
  width: 100px;
  height: 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}

.dash-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.5);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-stat {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.dash-stat.blue {
  border-color: rgba(0, 170, 255, 0.35);
  background: rgba(0, 170, 255, 0.1);
}

.dash-stat.green {
  border-color: rgba(0, 230, 118, 0.35);
  background: rgba(0, 230, 118, 0.08);
}

.dash-stat.purple {
  border-color: rgba(170, 0, 255, 0.35);
  background: rgba(170, 0, 255, 0.08);
}

.dash-stat.orange {
  border-color: rgba(255, 160, 0, 0.35);
  background: rgba(255, 160, 0, 0.08);
}

.dash-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  flex: 1;
}

.dash-chart {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  display: flex;
  align-items: flex-end;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 80px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(0, 170, 255, 0.25);
  transition: 0.3s;
}

.dash-bar.active {
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
}

.dash-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.dash-table-head {
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
}

.dash-table-row {
  height: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.dash-table-row:last-child {
  border-bottom: none;
}

/* ── Android Mockup ── */
.android-screens {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 16px 8px;
  height: 100%;
}

.phone-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: scale(0.88);
  opacity: 0.75;
  transition: 0.3s;
}

.phone-frame.center {
  transform: scale(1);
  opacity: 1;
}

.phone-screen {
  width: 130px;
  height: 260px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #0a0a10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.phone-frame.center .phone-screen {
  border-color: rgba(0, 170, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 170, 255, 0.2);
}

.ph-status {
  height: 18px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

/* Login screen */
.ph-screen-login {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.ph-app-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  margin-bottom: 2px;
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.5);
}

.ph-app-name {
  width: 60px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.ph-input {
  width: 100%;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ph-btn-primary {
  width: 100%;
  height: 22px;
  border-radius: 6px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
}

.ph-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
}

.ph-divider::before,
.ph-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ph-btn-google {
  width: 100%;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Home screen */
.ph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 4px;
}

.ph-header-title {
  width: 50px;
  height: 9px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
}

.ph-header-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.ph-search {
  margin: 0 10px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ph-card-list {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.ph-list-card {
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ph-list-card.highlight {
  background: rgba(0, 170, 255, 0.15);
  border-color: rgba(0, 170, 255, 0.4);
}

.ph-bottom-nav {
  height: 36px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
}

.ph-nav-item {
  flex: 1;
}

.ph-nav-item.active {
  background: rgba(0, 170, 255, 0.15);
}

/* Detail screen */
.ph-detail-img {
  height: 80px;
  flex-shrink: 0;
  background: radial-gradient(circle at 40% 50%, rgba(0, 170, 255, 0.3), rgba(0, 0, 0, 0.3)), rgba(0, 0, 0, 0.3);
}

.ph-detail-content {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.ph-detail-tag {
  width: 50px;
  height: 12px;
  background: rgba(0, 170, 255, 0.25);
  border-radius: 999px;
  border: 1px solid rgba(0, 170, 255, 0.4);
}

.ph-detail-title {
  height: 10px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
}

.ph-detail-line {
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.ph-detail-line.short {
  width: 65%;
}

.ph-detail-stats {
  display: flex;
  gap: 6px;
}

.ph-stat-chip {
  height: 16px;
  width: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ph-detail-btn {
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
  margin-top: auto;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.35);
}

.phone-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  position: relative;
}

.process-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: var(--blue-2);
  font-size: 14px;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.contact {
  padding-bottom: 80px;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 170, 255, 0.19), transparent 36%),
    rgba(255, 255, 255, 0.045);
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-info,
.contact-form {
  padding: 20px;
  border-radius: 20px;
}

.contact-info {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact-methods {
  display: grid;
  gap: 8px;
}

.contact-method {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.contact-method strong {
  font-size: 13px;
  display: block;
  margin-bottom: 1px;
}

.contact-method span {
  color: var(--muted);
  font-size: 12px;
}

.copy-btn {
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 170, 255, 0.08);
  color: var(--blue-2);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
}

.form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  padding: 16px;
  outline: none;
  transition: 0.2s;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.1);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

footer strong {
  color: var(--white);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  padding: 15px 18px;
  border: 1px solid var(--line-blue);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.9);
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 3000;
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  font-weight: 800;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(0, 170, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 170, 255, 0);
  }
}

@keyframes blink {

  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1020px) {

  .hero-grid,
  .split,
  .showcase-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }

  .capability-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dev-panel {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 82%;
    height: calc(100vh - 78px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transition: 0.3s;
  }

  .nav-links.show {
    right: 0;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    letter-spacing: -2.5px;
  }

  .hero-metrics,
  .capability-grid,
  .tech-grid,
  .process-grid,
  .input-row,
  .mock-body,
  .mock-cards {
    grid-template-columns: 1fr;
  }

  .product-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .orb {
    display: none;
  }

  .dev-panel {
    min-height: auto;
  }

  section {
    padding: 74px 0;
  }
}