
:root {
  --bg: #06070b;
  --bg-alt: #0a0c13;
  --panel: #10121b;
  --panel-2: #14161f;
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --text: #f3f4f8;
  --text-dim: #9ba0b4;
  --text-faint: #6a6e80;
  --blue: #3b7cff;
  --blue-2: #6e9cff;
  --orange: #ff7a3d;
  --orange-2: #ffa36b;
  --grad-brand: linear-gradient(120deg, #bd410b 0%, #ec713b 45%, #009ff5 100%);
  --grad-radial-blue: radial-gradient(
    circle at 30% 30%,
    rgba(59, 124, 255, 0.55),
    transparent 65%
  );
  --grad-radial-orange: radial-gradient(
    circle at 70% 70%,
    rgba(255, 122, 61, 0.5),
    transparent 65%
  );
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--orange);
  color: #0a0c13;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

.container-xl {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}

.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-dim {
  color: var(--text-dim);
}
.text-faint {
  color: var(--text-faint);
}

/* =========== BUTTONS =========== */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 100px;
  background: var(--text);
  color: #08090d;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(59, 124, 255, 0.45);
  color: #08090d;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: 14.5px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.35s ease;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-block-w {
  width: 100%;
  justify-content: center;
}

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad-brand);
  position: relative;
  flex: none;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 5px;
  background: var(--bg);
  clip-path: polygon(20% 45%, 40% 65%, 80% 20%, 90% 30%, 40% 82%, 10% 55%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -20% -10% auto -10%;
  height: 900px;
  /* background: var(--grad-radial-blue), var(--grad-radial-orange); */
  filter: blur(10px);
  opacity: 0.5;
}
.hero-beam {
  position: absolute;
  z-index: -1;
  top: -200px;
  right: -320px;
  width: 900px;
  height: 900px;
  background: conic-gradient(
    from 200deg,
    transparent 0deg,
    rgba(59, 124, 255, 0.35) 40deg,
    transparent 90deg,
    rgba(255, 122, 61, 0.35) 190deg,
    transparent 260deg
  );
  border-radius: 50%;
  filter: blur(40px);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); */
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    black 40%,
    transparent 90%
  );
}
.hero-heading {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04;
  max-width: 760px;
}
.hero-sub {
  max-width: 520px;
  font-size: 17px;
  color: var(--text-dim);
  margin-top: 22px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: var(--grad-brand);
  display: inline-block;
}
.hero-trust .avatars span:first-child {
  margin-left: 0;
}

/* =========== CONSOLE MOCKUP (signature element) =========== */
.console {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel) 0%, #0b0d14 100%);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
}
.console-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a3d4a;
}
.console-title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.console-body {
  display: flex;
  min-height: 360px;
}
.console-side {
  width: 190px;
  flex: none;
  border-right: 1px solid var(--border-soft);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.console-side-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dim);
}
.console-side-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.console-side-item i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--text-faint);
  flex: none;
}
.console-side-item.active i {
  background: var(--orange);
}
.console-main {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.console-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.console-line .label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}
.console-status {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  font-family: var(--font-mono);
}
.console-status.pass {
  background: rgba(66, 199, 138, 0.12);
  color: #5fdba0;
}
.console-status.run {
  background: rgba(59, 124, 255, 0.15);
  color: var(--blue-2);
}
.console-status.fail {
  background: rgba(255, 90, 90, 0.14);
  color: #ff9494;
}
.console-chat {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.console-bubble {
  max-width: 78%;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.console-bubble.from-user {
  align-self: flex-end;
  background: var(--grad-brand);
  color: #0a0c13;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.console-bubble.from-bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.console-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}
.console-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-faint);
  font-size: 13px;
  font-family: var(--font-body);
}
.console-send {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* logo strip */
.logo-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logo-strip-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 34px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-faint);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.logo-item:hover {
  opacity: 1;
  color: var(--text-dim);
}
.logo-item i.badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: none;
}

/* section shells */
.section {
  padding: 120px 0;
  position: relative;
}
.section-tight {
  padding: 90px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  margin-top: 16px;
}
.section-head.align-left {
  margin: 0 0 56px;
  text-align: left;
}

/* feature bento */
.bento-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0)
  );
  padding: 30px 30px 123px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.35s ease;
}
.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}
.bento-visual {
  border-radius: var(--radius-md);
  height: 190px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--panel-2);
}
.bento-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.bento-card p {
  color: var(--text-dim);
  font-size: 14.5px;
}

/* mini visuals inside bento */
.viz-integrations {
  display: grid;
  place-items: center;
  height: 100%;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(59, 124, 255, 0.18),
    transparent 70%
  );
}
.viz-integrations .core {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255, 122, 61, 0.35);
}
.viz-report {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
  height: 100%;
}
.viz-report .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}
.viz-report .bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  flex: 1;
  overflow: hidden;
}
.viz-report .bar > span {
  display: block;
  height: 100%;
  background: var(--grad-brand);
  border-radius: 4px;
}

.viz-builder {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  height: 100%;
}
.viz-node {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-dim);
}
.viz-node .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}
.viz-node.blue .dot {
  background: var(--blue-2);
}

.viz-alerts {
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.pill-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--text-dim);
}
.pill-alert i {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  flex: none;
  background: var(--grad-brand);
}

/* split feature rows */
.split-row {
  display: flex;
  align-items: center;
  gap: 70px;
}
.split-row.reverse {
  flex-direction: row-reverse;
}
.split-copy {
  flex: 0 0 42%;
}
.split-copy .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.split-copy h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 14px 0 16px;
  line-height: 1.2;
}
.split-copy p {
  color: var(--text-dim);
  font-size: 15px;
}
.split-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.split-copy li svg {
  flex: none;
  margin-top: 3px;
  color: var(--orange-2);
}
.split-visual {
  flex: 1;
}
.panel-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--panel), #0b0d14);
  padding: 26px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

/* pipeline visual */
.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pipeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  font-size: 13.5px;
}
.pipeline-item .left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
}
.pipeline-item .ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad-brand);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* workflow canvas graphic */
.canvas-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
}
.canvas-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.canvas-body {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.canvas-node {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  font-size: 12.5px;
}
.canvas-node .n-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.canvas-node .n-title i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.canvas-node p {
  color: var(--text-faint);
  font-size: 11.5px;
}
.canvas-caption {
  display: flex;
  gap: 44px;
  padding: 24px 32px 30px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.canvas-caption .cap-item h5 {
  font-size: 13.5px;
  margin-bottom: 6px;
}
.canvas-caption .cap-item p {
  color: var(--text-faint);
  font-size: 12.5px;
  max-width: 220px;
}

/* integrations orbit */
.orbit-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 10px;
}
.orbit-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 80px rgba(255, 122, 61, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #0a0c13;
  font-size: 13px;
  z-index: 3;
}
.orbit-ring {
  position: absolute;
  border: 1px dashed var(--border);
  border-radius: 50%;
}
.orbit-item {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}

/* testimonials */
.testi-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testi-quote {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-soft);
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
}
.testi-role {
  font-size: 12.5px;
  color: var(--text-faint);
}

/* steps */
.step-card {
  position: relative;
  padding: 34px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  height: 100%;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange-2);
  margin-bottom: 22px;
  display: block;
}
.step-visual {
  height: 130px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: var(--panel-2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-dim);
  font-size: 14px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  flex: none;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text-dim);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-q .plus::before {
  top: 10px;
  left: 2px;
  right: 2px;
  height: 2px;
}
.faq-q .plus::after {
  left: 10px;
  top: 2px;
  bottom: 2px;
  width: 2px;
}
.faq-item.open .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 4px 22px;
  color: var(--text-dim);
  font-size: 14.5px;
  max-width: 640px;
}

/* final CTA */
.cta-panel {
  border-radius: 28px;
  /* border: 1px solid var(--border); */
  /* padding: 80px 40px; */
  text-align: center;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(180deg, var(--panel), #0a0c13); */
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background: var(--grad-radial-blue), var(--grad-radial-orange); */
  opacity: 0.35;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.15;
}

/* footer */
.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-soft);
  background: #000;
  margin: 0 30px 0px 30px;
  border-radius: 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.footer-brand p {
  color: var(--text-faint);
  font-size: 13.5px;
  margin-top: 14px;
  max-width: 260px;
}
.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 11px;
  transition: color 0.25s ease;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom span {
  color: var(--text-faint);
  font-size: 13px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

/* =========== PRICING PAGE =========== */
.plan-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--panel);
  gap: 4px;
}
.plan-toggle button {
  padding: 9px 20px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.plan-toggle button.active {
  background: var(--text);
  color: #08090d;
}

.plan-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured {
  border-color: rgba(255, 122, 61, 0.4);
  background: linear-gradient(
    180deg,
    rgba(255, 122, 61, 0.06),
    var(--panel) 40%
  );
}
.plan-badge {
  position: absolute;
  top: -1px;
  right: 26px;
  transform: translateY(-50%);
  background: var(--grad-brand);
  color: #0a0c13;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0 6px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.plan-price .unit {
  color: var(--text-faint);
  font-size: 14px;
}
.plan-desc {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 26px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}
.plan-features li svg {
  flex: none;
  margin-top: 2px;
  color: #5fdba0;
}
.plan-features li.muted {
  color: var(--text-faint);
}
.plan-features li.muted svg {
  color: var(--text-faint);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  font-size: 14px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--text-dim);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding-top: 24px;
}
.compare-table td svg {
  color: #5fdba0;
}
.compare-table .muted-x {
  color: var(--text-faint);
}

/* =========== CONTACT PAGE =========== */
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 40px;
}
.form-control-brand {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14.5px;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.form-control-brand:focus {
  border-color: var(--blue);
  background: rgba(59, 124, 255, 0.05);
}
.form-control-brand::placeholder {
  color: var(--text-faint);
}
.form-label-brand {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}
textarea.form-control-brand {
  resize: vertical;
  min-height: 130px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-item .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--orange-2);
}
.contact-info-item h5 {
  font-size: 15px;
  margin-bottom: 5px;
}
.contact-info-item p {
  color: var(--text-dim);
  font-size: 14px;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 260px;
  position: relative;
  background: var(--panel);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--grad-brand);
  rotate: -45deg;
  box-shadow: 0 0 30px rgba(255, 122, 61, 0.5);
}

/* =========== PAGE HERO (inner pages) =========== */
.page-hero {
  padding: 158px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: var(--grad-radial-blue), var(--grad-radial-orange);
  opacity: 0.4;
  filter: blur(20px);
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  max-width: 680px;
}
.page-hero p {
  max-width: 520px;
  color: var(--text-dim);
  margin-top: 18px;
  font-size: 16px;
}

/* reveal utility (GSAP targets) */
.reveal-up {
  opacity: 0;
}
.reveal-fade {
  opacity: 0;
}

/* responsive */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .split-row,
  .split-row.reverse {
    flex-direction: column;
  }
  .split-copy {
    flex: none;
    width: 100%;
  }
  .console-side {
    display: none;
  }
  .canvas-body {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .orbit-wrap {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 140px 0 60px;
  }
  .section {
    padding: 80px 0;
  }
  .logo-row {
    justify-content: center;
  }
  .compare-table {
    font-size: 12.5px;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px 8px;
  }
  .cta-panel {
    padding: 56px 24px;
  }
  .contact-card {
    padding: 26px;
  }
}
@media (max-width: 575px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-brand,
  .btn-ghost {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.foo-bg{
    background: url(../images/banner-bg.jpg) no-repeat center bottom;
    background-size: cover;
}

.cta-panel img{
    width: 100px;
    margin: 0 auto;
}