:root {
  --bg: #070b14;
  --bg-soft: #0f172a;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --brand: #38bdf8;
  --brand-2: #22c55e;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 15%, rgba(34, 197, 94, 0.16), transparent 30rem),
    linear-gradient(180deg, #050816 0%, #0f172a 52%, #050816 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #03111f;
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.13);
  border: 1px solid rgba(56, 189, 248, 0.34);
  color: #e0f7ff;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #e0f2fe, #38bdf8 45%, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.25);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.26), transparent 18rem);
  pointer-events: none;
}

.device-window {
  position: relative;
  border-radius: 24px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.window-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.terminal {
  padding: 24px;
  font-family: "Cascadia Code", Consolas, monospace;
  min-height: 340px;
}

.line {
  color: #94a3b8;
  margin-bottom: 14px;
}

.line strong {
  color: #86efac;
  font-weight: 800;
}

.line span {
  color: #38bdf8;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.mini-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-stat b {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.mini-stat small {
  color: var(--muted-2);
  font-weight: 650;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head-tight {
  margin-bottom: 0;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.13);
  border: 1px solid rgba(56, 189, 248, 0.24);
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.65;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.card li::before {
  content: "✓";
  color: var(--brand-2);
  font-weight: 900;
  margin-right: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.18), rgba(255, 255, 255, 0.075));
  border-color: rgba(56, 189, 248, 0.34);
  transform: translateY(-8px);
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.26);
  color: #bbf7d0;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.4rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  margin: 14px 0;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted-2);
  letter-spacing: 0;
  font-weight: 750;
}

.fine-print {
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #03111f;
  font-weight: 950;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 22rem),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item span {
  display: block;
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 6, 23, 0.5);
  color: var(--text);
  outline: none;
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  color: var(--text);
  transform: translateY(140%);
  transition: transform 0.25s ease;
  z-index: 100;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .cards,
  .pricing-grid,
  .process {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding-top: 54px;
  }

  .cards,
  .pricing-grid,
  .process,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .terminal {
    min-height: auto;
  }
}

.toast.error {
  border-color: rgba(251, 113, 133, 0.45);
}
