:root {
  --bg: #07111f;
  --bg-soft: #0b1730;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f3f7ff;
  --muted: #a8b3c7;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #50e3c2;
  --primary-dark: #1eb89a;
  --accent: #8f7cff;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(80, 227, 194, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(143, 124, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #08111d 0%, #091526 55%, #07111f 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.section {
  padding: 88px 0;
  position: relative;
  z-index: 2;
}
.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(80, 227, 194, 0.1);
  border: 1px solid rgba(80, 227, 194, 0.2);
  color: #bffdf0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2,
.hero-copy h1,
.dark-band h2,
.cta-box h2 {
  margin: 16px 0 16px;
  line-height: 1.04;
}
.section-heading h2,
.dark-band h2,
.cta-box h2 { font-size: clamp(2rem, 3vw, 3rem); }
.section-heading p,
.hero-text,
.dark-band p,
.cta-box p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(6, 12, 22, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #08111d;
  box-shadow: 0 10px 30px rgba(80, 227, 194, 0.25);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #d9e2f1;
  font-size: 0.95rem;
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
}

.hero {
  padding-top: 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.5rem);
  max-width: 700px;
}
.hero-copy h1 span {
  display: block;
  color: #9ef9e5;
}
.hero-actions,
.hero-points,
.footer-row,
.logos-wrap {
  display: flex;
  align-items: center;
}
.hero-actions {
  gap: 14px;
  margin: 30px 0 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #69ffd7);
  color: #08111d;
  box-shadow: 0 14px 35px rgba(80, 227, 194, 0.25);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.hero-points {
  gap: 10px;
  flex-wrap: wrap;
}
.hero-points div {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce5f5;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}
.dashboard-card {
  border-radius: 28px;
  padding: 18px;
}
.dashboard-top {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.dashboard-body {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
}
.mini-panel,
.stat-card,
.industry-card,
.feature-card,
.check-list,
.cta-box,
.dashboard-card {
  border-radius: var(--radius);
}
.mini-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
}
.panel-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.mini-panel h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
}
.booking-list {
  display: grid;
  gap: 10px;
}
.booking-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #dbe5f5;
  font-size: 0.92rem;
}
.booking-item strong,
.stat-card strong {
  white-space: nowrap;
}
.booking-item.active {
  background: linear-gradient(135deg, rgba(80, 227, 194, 0.18), rgba(143, 124, 255, 0.18));
  border: 1px solid rgba(255,255,255,0.08);
}
.right-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}
.stat-card {
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-card p,
.stat-card span {
  margin: 0;
  color: var(--muted);
}
.stat-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.9rem;
}
.stat-card.accent {
  background: linear-gradient(135deg, rgba(143, 124, 255, 0.18), rgba(80, 227, 194, 0.12));
}
.floating-chip {
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eff6ff;
  text-align: center;
  font-weight: 600;
}

.logos-strip {
  padding-top: 28px;
}
.logos-wrap {
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}
.logos-wrap > span {
  color: var(--muted);
  min-width: fit-content;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.logos div {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.features-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}
.features-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  padding: 24px;
}
.feature-card h3,
.industry-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}
.feature-card p,
.industry-card p,
.check-list div,
.form-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.dark-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.check-list {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.check-list div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d9e5f5;
}
.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}
.industry-card {
  padding: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.industry-card span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #9ef9e5;
  font-weight: 700;
}
.cta-box {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.cta-form {
  display: grid;
  gap: 12px;
}
.cta-form input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  font: inherit;
}
.cta-form input::placeholder { color: #9ca8bc; }
.form-message {
  min-height: 22px;
}
.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-row {
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.bg-orb {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}
.orb-1 {
  top: 60px;
  left: -120px;
  background: #2ae2bb;
}
.orb-2 {
  bottom: 80px;
  right: -140px;
  background: #7d67ff;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .cta-box,
  .features-grid,
  .industry-grid,
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 17, 29, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; text-align: center; }

  .footer-row,
  .logos-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .logos { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero-copy h1 { font-size: 2.6rem; }
  .cta-box,
  .dashboard-card,
  .feature-card,
  .industry-card,
  .check-list { padding: 22px; }
}
