
:root {
  --bg0: #070a12;
  --bg1: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --faint: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.12);

  --a0: #6d28d9;
  --a1: #2563eb;
  --a2: #06b6d4;
  --good: #22c55e;
  --bad: #ef4444;

  --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.35);
  --radius: 16px;

  --max: 1120px;
  --pad: clamp(18px, 4vw, 40px);

  color-scheme: dark;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans",
    "Apple Color Emoji", "Segoe UI Emoji";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(109, 40, 217, 0.25), transparent 55%),
    radial-gradient(900px 700px at 80% 0%, rgba(37, 99, 235, 0.18), transparent 50%),
    radial-gradient(1000px 900px at 70% 85%, rgba(6, 182, 212, 0.15), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font: inherit;
  outline: none;
  color-scheme: dark;
}

select:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22);
}

select option {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.92);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Background layer */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg__blob {
  position: absolute;
  width: clamp(420px, 55vw, 860px);
  height: clamp(420px, 55vw, 860px);
  border-radius: 999px;
  filter: blur(40px) saturate(1.15);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  animation: floaty 14s ease-in-out infinite;
}

.bg__blob--a {
  left: -12%;
  top: -18%;
  background: radial-gradient(circle at 30% 30%, rgba(109, 40, 217, 0.95), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.75), transparent 55%);
}

.bg__blob--b {
  right: -18%;
  top: 6%;
  animation-duration: 18s;
  animation-delay: -5s;
  background: radial-gradient(circle at 35% 40%, rgba(37, 99, 235, 0.95), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.7), transparent 58%);
}

.bg__blob--c {
  left: 14%;
  bottom: -20%;
  animation-duration: 22s;
  animation-delay: -10s;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.85), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(109, 40, 217, 0.65), transparent 58%);
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: normal;
  transform: translateZ(0);
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(22px, -18px, 0) scale(1.03);
  }
  66% {
    transform: translate3d(-18px, 22px, 0) scale(0.98);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Layout */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 26, 0.62);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: clamp(120px, 28vw, 180px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: invert(1) brightness(1.1);
}

.brand-text {
  color: #ffffff;
  opacity: 0.95;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--text);
  background: rgba(109, 40, 217, 0.18);
  border-color: rgba(109, 40, 217, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(109, 40, 217, 1), rgba(37, 99, 235, 1), rgba(6, 182, 212, 1));
  background-size: 200% 100%;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  animation: gradient-shift 3s ease infinite;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  filter: brightness(1.1);
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.btn.full {
  width: 100%;
}

main {
  width: 100%;
}

.hero,
.section,
.footer {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero {
  max-width: var(--max);
  margin-inline: auto;
  padding-top: clamp(36px, 7vw, 80px);
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(6, 182, 212, 0.95);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.06rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.meta {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  display: block;
  font-weight: 800;
  color: var(--text);
}

.label {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: 0.93rem;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.card.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.card.highlight {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.mock {
  max-width: 520px;
  margin-left: auto;
  transform: translate3d(0, 0, 0);
}

.mock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.9;
}

.dot--r {
  background: #ef4444;
}

.dot--y {
  background: #f59e0b;
}

.dot--g {
  background: #22c55e;
}

.mock-url {
  margin-left: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.mock-body {
  padding-top: 14px;
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  background: rgba(6, 182, 212, 0.16);
  color: rgba(6, 182, 212, 0.95);
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.mock-title {
  margin-top: 12px;
  height: 18px;
  width: 72%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
  background-size: 200% 100%;
  animation: shimmer 2.4s ease-in-out infinite;
}

.mock-lines {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.mock-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.mock-lines span:nth-child(1) {
  width: 92%;
}
.mock-lines span:nth-child(2) {
  width: 84%;
}
.mock-lines span:nth-child(3) {
  width: 88%;
}
.mock-lines span:nth-child(4) {
  width: 64%;
}

.mock-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mock-card {
  height: 76px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mock-card::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.22), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(109, 40, 217, 0.18), transparent 55%);
  transform: translate3d(0, 0, 0);
  animation: floaty 10s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.float-card {
  position: absolute;
  right: clamp(0px, 2vw, 22px);
  bottom: -10px;
  width: min(360px, 92%);
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

.float-card--app {
  left: clamp(0px, 1vw, 12px);
  right: auto;
  top: 22px;
  bottom: auto;
  width: min(320px, 90%);
  z-index: 1;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.9), rgba(37, 99, 235, 0.9));
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.18);
}

.app-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.app-badge {
  margin-left: auto;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.18);
  border: 1px solid rgba(109, 40, 217, 0.28);
  color: rgba(255, 255, 255, 0.85);
}

.app-body {
  padding-top: 14px;
}

.app-hero {
  height: 86px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(37, 99, 235, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.app-hero::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(109, 40, 217, 0.16), transparent 60%);
  animation: floaty 12s ease-in-out infinite;
}

.app-rows {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.app-rows span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.app-rows span:nth-child(1) {
  width: 86%;
}
.app-rows span:nth-child(2) {
  width: 74%;
}
.app-rows span:nth-child(3) {
  width: 66%;
}

.app-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.app-btn {
  height: 12px;
  width: 46%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.9), rgba(37, 99, 235, 0.9));
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.14);
}

.app-btn--ghost {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.float-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill-mini {
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.float-meter {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.float-meter span {
  height: 10px;
  border-radius: 999px;
  width: var(--w);
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.9), rgba(37, 99, 235, 0.9));
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.16);
}

.section {
  max-width: var(--max);
  margin-inline: auto;
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header {
  max-width: 70ch;
  margin-bottom: 22px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cards .card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.grid.cards .card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.bullet-list {
  padding-left: 1.05rem;
}

.timeline {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.35), rgba(37, 99, 235, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 12px;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 20, 35, 0.85);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.18);
}

.form-status {
  margin: 10px 0 0;
  font-weight: 800;
}

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

.small {
  font-size: 0.92rem;
}

.footer {
  padding-top: 52px;
  padding-bottom: 52px;
  display: grid;
  gap: 12px;
  justify-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}


.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  --ry: 12px;
  transform: translateY(var(--ry));
  filter: blur(8px);
  transition: opacity 500ms ease, transform 600ms ease, filter 600ms ease;
  will-change: transform, opacity, filter;
}

.is-in {
  opacity: 1;
  --ry: 0px;
  transform: translateY(var(--ry));
  filter: blur(0);
}

/* Parallax targets (subtle) */
[data-parallax] {
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(var(--s, 1));
  transition: transform 120ms linear;
  will-change: transform;
}

/* Combine reveal + parallax reminding: avoid transform override */
[data-reveal][data-parallax] {
  transform: translate3d(var(--px, 0px), calc(var(--py, 0px) + var(--ry, 0px)), 0) scale(var(--s, 1));
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .mock {
    max-width: 440px;
    margin-inline: auto;
    --s: 0.92;
  }

  /* Mobile: keep the desktop-style overlap, just smaller + better placed */
  .float-card {
    width: min(320px, 88%);
    right: 10px;
    bottom: -8px;
    --s: 0.9;
  }

  .float-card--app {
    width: min(300px, 86%);
    left: 10px;
    right: auto;
    top: 18px;
    --s: 0.88;
  }
}

@media (max-width: 980px) {
  /* No dropdown on mobile: always show inline links (one-page site) */
  .nav-toggle {
    display: none !important;
  }

  .top-nav {
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: auto;
  }

  .nav-links a {
    height: 36px;
    padding: 0 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav .btn.primary {
    height: 36px;
    padding: 0 12px;
    animation: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  [data-parallax] {
    transition: none !important;
  }
}

