:root {
  --bg-1: #050b11;
  --bg-2: #091826;
  --bg-3: #10283c;
  --surface: rgba(10, 24, 36, 0.74);
  --surface-strong: rgba(8, 19, 30, 0.92);
  --text: #f1f7fc;
  --muted: #b4c7d8;
  --line: rgba(124, 172, 201, 0.25);
  --brand-blue: #14a9e1;
  --brand-orange: #f9ab00;
  --brand-ink: #04070a;
  --success: #6fffc7;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 8%, rgba(20, 169, 225, 0.28), transparent 36%),
    radial-gradient(circle at 92% 18%, rgba(249, 171, 0, 0.2), transparent 32%),
    radial-gradient(circle at 70% 85%, rgba(20, 169, 225, 0.14), transparent 30%),
    linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  pointer-events: none;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(70px);
}

body::before {
  top: -10vw;
  left: -8vw;
  background: rgba(20, 169, 225, 0.22);
}

body::after {
  right: -10vw;
  bottom: -8vw;
  background: rgba(249, 171, 0, 0.16);
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(117, 157, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 157, 184, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black 34%, transparent 78%);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  color: #06131b;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  z-index: 3000;
}

.skip-link:focus {
  top: 12px;
}

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

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.25rem, 6.3vw, 4.6rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
}

p {
  margin-top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: #a7dcf1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.lead,
.section-intro {
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(14px);
  background: rgba(5, 12, 20, 0.68);
  border-bottom: 1px solid rgba(121, 169, 199, 0.2);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #f3f7fa;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.92;
  transition: 0.2s ease;
}

nav a:hover {
  color: #7fe5ff;
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
}

.hero {
  padding-top: 7.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.8rem;
  align-items: stretch;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.26rem;
  border-radius: 999px;
  border: 0;
  color: #031018;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(110deg, var(--brand-blue), #3bc8f5 42%, var(--brand-orange));
  box-shadow: 0 14px 30px rgba(5, 130, 177, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 36px rgba(5, 130, 177, 0.44);
}

.btn-sm {
  padding: 0.48rem 0.95rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(127, 229, 255, 0.6);
}

.hero-points {
  margin: 1.6rem 0 0;
  padding-left: 1.15rem;
  color: #ccdeea;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(126, 183, 217, 0.25);
  background: linear-gradient(165deg, rgba(10, 29, 44, 0.88), rgba(15, 40, 58, 0.72));
  box-shadow: var(--shadow-strong);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(249, 171, 0, 0.3), transparent 70%);
}

.chip-wrap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-wrap span,
.industry-list span {
  padding: 0.47rem 0.87rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.87rem;
}

.cards,
.demo-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.7rem;
}

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

.card,
.demo-card,
.faq-item,
.inline-widget-wrap,
.contact-form {
  position: relative;
  border: 1px solid rgba(124, 172, 201, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 34, 48, 0.85), rgba(8, 20, 31, 0.88));
  box-shadow: var(--shadow-soft);
}

.card,
.demo-card {
  padding: 1.25rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card::before,
.demo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.card:hover,
.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 205, 241, 0.5);
}

.card h3,
.demo-card h3 {
  margin-bottom: 0.55rem;
}

.card p,
.demo-card p,
.faq-item p,
.mini-note,
.form-status,
.legal-links a,
.footer-wrap p {
  color: var(--muted);
}

.product-meta {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ebf8ff;
  background: linear-gradient(90deg, rgba(20, 169, 225, 0.34), rgba(249, 171, 0, 0.34));
  border: 1px solid rgba(172, 220, 247, 0.4);
}

.feature-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: #c8d9e5;
  font-size: 0.94rem;
}

.card-actions {
  margin-top: 1rem;
}

.demo-card a,
.legal-links a:hover {
  color: #ffe09a;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.2rem;
  align-items: start;
}

.inline-widget-wrap {
  overflow: hidden;
  min-height: 630px;
}

.contact-form {
  margin-top: 1.35rem;
  padding: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.42rem;
  font-weight: 500;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(121, 169, 199, 0.36);
  background: rgba(6, 19, 29, 0.85);
  color: var(--text);
  padding: 0.75rem 0.82rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(20, 169, 225, 0.36);
  border-color: #56d5ff;
}

.recaptcha-slot {
  margin: 1rem 0;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.faq-item {
  padding: 1rem 1.05rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 18, 0.98);
  padding-top: 2.2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 0.8rem;
}

.legal-links {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.legal-links a {
  text-decoration: none;
}

.copyright {
  margin: 0;
  margin-top: 1.2rem;
  padding: 1rem;
  text-align: center;
  color: #9ab5c8;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1024px) {
  .cards.three,
  .demo-grid,
  .two-col,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.4rem;
  }
}

@media (max-width: 980px) {
  nav {
    position: absolute;
    right: 1rem;
    top: 78px;
    min-width: 240px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-soft);
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.8rem 0;
  }

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

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .brand img {
    width: 46px;
    height: 46px;
  }
}
