@charset "UTF-8";
/* ============================================================
   DESIGN TOKENS — Dark navy base, teal used only as accent/CTA
   ============================================================ */
:root {
  /* Core backgrounds */
  --bg: #070C17;
  --surface: #0D1526;
  --card: #111E33;
  --card-hi: #172540;
  /* Borders */
  --border: #1D2E4A;
  --border-hi: #2A4266;
  /* Teal — CTA & accent ONLY */
  --teal: #00C9A7;
  --teal-dim: #009E85;
  --teal-glow: rgba(0,201,167,0.10);
  /* Secondary accent */
  --amber: #F5A623;
  --amber-dim: rgba(245,166,35,0.15);
  /* Status */
  --red: #FF4D6A;
  /* Typography */
  --text: #EDF1FF;
  --muted: #7A8EAD;
  --dim: #3D5070;
  /* Fonts */
  --head: 'Poppins', sans-serif;
  --body: 'DM Sans', sans-serif;
  /* Misc */
  --r: 12px;
  --rlg: 18px;
  --t: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================ RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--body);
}

h1, h2, h3, h4, h5 {
  font-family: var(--head);
  line-height: 1.15;
}

/* Subtle noise grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}

/* Very faint static mesh on the page bg — gives depth behind the animated orbs */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 15% 0%, rgba(0, 201, 167, 0.03) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 90% 90%, rgba(0, 80, 220, 0.03) 0%, transparent 60%);
}

/* ============================================================ NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(7, 12, 23, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 24px;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all var(--t);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--card);
}

/* Quiz link as CTA in nav */
.nav-links a.nav-cta {
  color: var(--teal);
  border: 1.5px solid var(--teal-dim);
  background: transparent;
  margin-left: 6px;
}

.nav-links a.nav-cta:hover, .nav-links a.nav-cta.active {
  color: #fff;
  background: var(--teal-glow);
  border-color: var(--teal);
  box-shadow: 0 0 14px rgba(0, 201, 167, 0.2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ============================================================ MOBILE NAV BURGER */
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  outline: none;
  transition: all var(--t);
}

.btn-ghost {
  color: var(--muted);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--card);
}

/* PRIMARY — teal fill, used sparingly for main CTAs */
.btn-primary {
  background: var(--teal);
  color: #040E0B;
}

.btn-primary:hover {
  background: #00E0BA;
  box-shadow: 0 0 22px rgba(0, 201, 167, 0.35);
  transform: translateY(-1px);
}

/* OUTLINE — teal border, secondary CTA */
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-dim);
}

.btn-outline:hover {
  background: var(--teal-glow);
  border-color: var(--teal);
}

/* AMBER — used for secondary standalone CTAs */
.btn-amber {
  background: var(--amber);
  color: #1C0800;
}

.btn-amber:hover {
  background: #FFBC5A;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 11px;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 13px;
}

/* ============================================================ LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 76px 0;
}

.section-sm {
  padding: 44px 0;
}

.pt-nav {
  padding-top: 64px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================================ TYPOGRAPHY AIDS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal); /* teal used here — key section signal */
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.hl-teal {
  color: var(--teal);
}

.hl-amber {
  color: var(--amber);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================================ REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* ============================================================ HERO */
.hero {
  padding: 128px 0 76px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 8px;
  height: 9px;
  background: var(--teal);
  animation: blink 2s infinite;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
  font-weight: 300;
}

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

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================ PHONE MOCKUP */
.phone-wrap {
  background: #080E1B;
  border: 1.5px solid var(--border-hi);
  border-radius: 38px;
  padding: 10px;
  max-width: 250px;
  margin: 0 auto;
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 72px;
  height: 24px;
  background: var(--bg);
  border-radius: 12px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.phone-notch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #141C2E;
}

.phone-notch-dot.cam {
  background: #1A2540;
  box-shadow: 0 0 0 1.5px #1D2E4A;
}

.phone-screen {
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
}

.dash-float {
  position: absolute;
  top: 20px;
  right: -36px;
  width: 256px;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
  opacity: 0.82;
}

.dash-bar {
  background: var(--surface);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--dim);
  font-family: var(--body);
}

.dd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* ============================================================ FEATURE CARDS */
.fcard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.fcard:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* Featured variant — teal top border + very subtle tint */
.fcard.featured {
  border-color: rgba(0, 201, 167, 0.25);
}

.fcard.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

/* Amber variant */
.fcard.amber {
  border-color: rgba(245, 166, 35, 0.2);
}

.fcard.amber::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.fcard-tag {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

/* Tags — teal/amber borders but neutral backgrounds */
.tag-ai {
  color: var(--teal);
  border: 1px solid rgba(0, 201, 167, 0.3);
  background: rgba(0, 201, 167, 0.07);
}

.tag-wf {
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.07);
}

.tag-core {
  color: var(--muted);
  border: 1px solid var(--border-hi);
  background: transparent;
}

/* Card icon — hexagonal container, no color fill */
.fcard-icon {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  background: var(--surface);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
}

/* Hex border via slightly larger background element */
.fcard-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--border-hi);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.fcard-icon::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--surface);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.fcard h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -0.2px;
}

.fcard p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================ CARD BACKGROUND IMAGERY
   SVG UI thumbnails sit inside cards at very low opacity — 8% resting, 13% on hover.
   They add depth and context without competing with the copy.
   ============================================================ */
.fcard-bg {
  position: absolute;
  bottom: -8px;
  right: -8px;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease;
  line-height: 0;
}

.fcard:hover .fcard-bg {
  opacity: 0.14;
}

/* ============================================================ STD FEATURES */
.std-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.std-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--t), background var(--t);
}

.std-item:hover {
  border-color: var(--border-hi);
  background: var(--card);
}

.std-item .ico {
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.std-item h4 {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 3px;
}

.std-item p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================ BIG FEATURE ROW */
.big-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Left accent bar — teal for AI features, amber for workflow */
.big-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), #0077FF);
}

.big-row.amber::before {
  background: linear-gradient(180deg, var(--amber), #FF6B35);
}

.big-row.flipped {
  direction: rtl;
}

.big-row.flipped > * {
  direction: ltr;
}

.big-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.big-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

/* Check bullet — teal circle, used intentionally */
.check-item::before {
  content: "✓";
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--teal);
}

/* ============================================================ SCREEN MOCKUP */
.screen {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  overflow: hidden;
}

.screen-bar {
  background: var(--card);
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.screen-lbl {
  font-size: 10.5px;
  color: var(--dim);
  margin-left: 6px;
  font-family: var(--body);
}

/* ============================================================ USE CASES */
.uc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.uc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.uc-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Featured use cases — teal top border only */
.uc-card.featured {
  border-color: rgba(0, 201, 167, 0.22);
}

.uc-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.uc-emoji {
  font-size: 28px;
  width: 36px;
  color: var(--muted);
}

.uc-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.uc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.uc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.uc-tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--muted);
}

/* ============================================================ WORKFLOW STEPS */
.wf-steps {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden;
}

.wf-step {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}

.wf-step:last-child {
  border-right: none;
}

/* Active step — subtle teal tint */
.wf-step.lit {
  background: linear-gradient(180deg, rgba(0, 201, 167, 0.06) 0%, transparent 100%);
}

.wf-num {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}

.wf-step h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.wf-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================ LINKER */
.linker-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 44px 0;
}

.ln-node {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 22px;
  text-align: center;
  min-width: 120px;
}

.ln-node.hub {
  background: var(--card-hi);
  border-color: var(--teal-dim);
  min-width: 150px;
  padding: 22px 28px;
}

.ln-icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.ln-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.ln-hub-label {
  font-size: 15px;
  font-weight: 800;
  font-family: var(--head);
  color: var(--teal);
} /* teal ONLY on hub label */
.ln-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.ln-arrow {
  color: var(--teal);
  font-size: 18px;
  padding: 0 10px;
  opacity: 0.5;
}

/* ============================================================ BACK OFFICE */
.bo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.bo-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
}

.bo-stat-val {
  font-family: var(--head);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
}

/* Only the "synced" stat uses teal — functional indicator */
.bo-stat-val.teal {
  color: var(--teal);
}

.bo-stat-val.amber {
  color: var(--amber);
}

.bo-stat-val.red {
  color: var(--red);
}

.bo-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================ INTEGRATIONS */
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.int-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  text-align: center;
  transition: all var(--t);
}

.int-item:hover {
  border-color: var(--border-hi);
  background: var(--card);
}

.int-item .ico {
  font-size: 26px;
  margin-bottom: 7px;
}

.int-item p {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================ CUSTOM DEV */
.cdev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.cdev-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.cdev-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.cdev-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  /* teal text on neutral bg — restrained use */
}

.cdev-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.cdev-item p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================ CTA BAND */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--rlg);
  padding: 56px 40px;
  text-align: center;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

/* Teal top bar on the CTA band — deliberate, contextually appropriate */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.cta-band h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================ PRODUCT SHOWCASE STRIP
   Full-width back office preview that sits between hero and features.
   Slight inward fade on left/right to bleed into page bg naturally.
   ============================================================ */
.showcase-strip {
  position: relative;
  margin: 0 -24px; /* bleed past container */
  overflow: hidden;
}

.showcase-strip::before,
.showcase-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.showcase-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.showcase-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.showcase-strip-inner {
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden;
  margin: 0 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.showcase-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================ WORKFLOW SECTION BG WASH */
.wf-section-wrap {
  position: relative;
  overflow: hidden;
}

.wf-bg-wash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  width: 900px;
  max-width: 100%;
}

/* ============================================================ AURORA GLOW SYSTEM
   Three drifting radial gradient orbs — teal, blue, and a faint amber.
   All pointer-events:none and z-index:0 so they never interfere with content.
   Used in the hero and the CTA band. Kept off other pages to avoid fatigue.
   ============================================================ */
.aurora-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-wrap > * {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

/* Orb 1 — teal, top-left, slow clockwise drift */
.orb-1 {
  width: 560px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(0, 201, 167, 0.22) 0%, rgba(0, 201, 167, 0.06) 55%, transparent 75%);
  top: -120px;
  left: -80px;
  animation: drift1 18s ease-in-out infinite alternate;
  transform-origin: 60% 60%;
}

/* Orb 2 — deep blue, centre-right, counter-drift */
.orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.16) 0%, rgba(0, 80, 200, 0.05) 55%, transparent 75%);
  top: 40px;
  right: -100px;
  animation: drift2 22s ease-in-out infinite alternate;
  transform-origin: 40% 40%;
}

/* Orb 3 — amber accent, bottom-centre, slow pulse */
.orb-3 {
  width: 340px;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.03) 55%, transparent 75%);
  bottom: -60px;
  left: 35%;
  animation: drift3 26s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}

/* Orb keyframes — gentle translation + scale, no rotation (avoids jank) */
@keyframes drift1 {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.85;
  }
  33% {
    transform: translate(60px, 30px) scale(1.08);
    opacity: 1;
  }
  66% {
    transform: translate(20px, 70px) scale(0.95);
    opacity: 0.9;
  }
  100% {
    transform: translate(80px, -20px) scale(1.05);
    opacity: 0.8;
  }
}
@keyframes drift2 {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.8;
  }
  33% {
    transform: translate(-50px, 40px) scale(1.1);
    opacity: 0.95;
  }
  66% {
    transform: translate(-20px, -30px) scale(0.92);
    opacity: 0.85;
  }
  100% {
    transform: translate(-70px, 20px) scale(1.06);
    opacity: 0.75;
  }
}
@keyframes drift3 {
  0% {
    transform: translate(0px, 0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(40px, -30px) scale(1.12);
    opacity: 0.9;
  }
  100% {
    transform: translate(-30px, 20px) scale(0.94);
    opacity: 0.65;
  }
}
/* CTA band gets its own contained aurora with slightly warmer tones */
.cta-band {
  isolation: isolate;
}

.cta-aurora {
  z-index: 0;
}

.cta-aurora .orb-1 {
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 201, 167, 0.18) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  animation-duration: 20s;
}

.cta-aurora .orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(0, 100, 255, 0.12) 0%, transparent 70%);
  top: -40px;
  right: -60px;
  animation-duration: 25s;
}

.cta-aurora .orb-3 {
  display: none;
}

/* Ensure all CTA band children sit above the aurora */
.cta-band > *:not(.aurora-wrap) {
  position: relative;
  z-index: 1;
}

/* ============================================================ DEVICE FRAMES */
.hero-devices {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 520px;
  padding: 20px 0;
}

.hero-device-phone {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.65)) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-device-browser {
  position: absolute;
  top: -20px;
  right: -44px;
  z-index: 1;
  transform: rotate(3.5deg);
  transform-origin: top right;
  opacity: 0.82;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  transition: opacity var(--t), transform var(--t);
}

.hero-device-browser:hover {
  opacity: 0.96;
  transform: rotate(1.5deg);
}

@media (max-width: 768px) {
  .hero-device-browser {
    display: none;
  }
}
/* ============================================================ VIDEO SHOWCASE */
.video-showcase {
  text-align: center;
}

.video-wrap {
  position: relative;
  border-radius: var(--rlg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.video-wrap video {
  width: 100%;
  display: block;
}

.video-caption {
  font-size: 13.5px;
  color: var(--dim);
  margin-top: 14px;
  font-weight: 400;
}

/* ============================================================ PRODUCT TOUR */
/* Hub page — tour card grid */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  color: inherit;
}

.tour-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.tour-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.tour-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tour-card-link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Tour detail page — step layout */
.tour-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.tour-step:last-child {
  border-bottom: none;
}

.tour-step.flipped {
  direction: rtl;
}

.tour-step.flipped > * {
  direction: ltr;
}

.tour-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.tour-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.tour-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.tour-screenshot {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  display: block;
}

/* Tour nav — prev/next links at bottom */
.tour-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

.tour-nav a {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .tour-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tour-step.flipped {
    direction: ltr;
  }
}
/* ============================================================ CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8EAD' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--card);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-error {
  font-size: 12.5px;
  color: var(--red);
  margin-top: 2px;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
  line-height: 1.5;
}

.form-message.success {
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.25);
  color: var(--teal);
}

.form-message.error {
  background: rgba(255, 77, 106, 0.08);
  border: 1px solid rgba(255, 77, 106, 0.25);
  color: var(--red);
}

/* Contact details sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  font-size: 16px;
  color: var(--teal);
}

.contact-detail h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--teal);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ============================================================ TRANSITIONS */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================ QUIZ */
.quiz-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.quiz-prog {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}

.quiz-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #0077FF);
  transition: width 0.4s ease;
}

.qstep {
  display: none;
}

.qstep.active {
  display: block;
  animation: pageIn 0.3s ease;
}

.quiz-q {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.quiz-hint {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.qopt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
}

.qopt:hover {
  border-color: var(--border-hi);
  background: var(--card-hi);
}

/* Selected option — teal border, deliberate use */
.qopt.sel {
  border-color: var(--teal);
  background: rgba(0, 201, 167, 0.06);
}

.qopt-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  color: var(--muted);
}

.qopt-text h4 {
  font-size: 14.5px;
  font-weight: 600;
}

.qopt-text p {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quiz-num {
  font-size: 12px;
  color: var(--dim);
}

.qresult {
  display: none;
}

.qresult.active {
  display: block;
  animation: pageIn 0.4s ease;
}

.result-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 40px;
  text-align: center;
}

.result-icon {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-box h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.result-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

/* Pills — teal border only, no fill */
.result-pill {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}

.result-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* ============================================================ FOOTER */
footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 220px;
  font-weight: 300;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 9px;
  transition: color var(--t);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--dim);
}

.footer-bottom a {
  color: var(--dim);
  transition: color var(--t);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* ============================================================ MINI FOOTER */
.mini-footer {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.mini-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--dim);
}

.mini-footer a {
  color: var(--dim);
  margin-left: 18px;
  transition: color var(--t);
}

.mini-footer a:hover {
  color: var(--teal);
}

/* ============================================================ FONT AWESOME */
.fcard-icon i {
  font-size: 19px;
  color: var(--muted);
}

.fcard.featured .fcard-icon i {
  color: var(--text);
}

.fcard.amber .fcard-icon i {
  color: var(--text);
}

.std-item .ico {
  font-size: 17px;
  line-height: 1;
  color: var(--muted);
}

.ln-icon i {
  font-size: 24px;
  color: var(--muted);
}

.ln-node.hub .ln-icon i {
  color: var(--teal);
}

.int-item .ico i {
  font-size: 24px;
  color: var(--muted);
}

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

.uc-emoji i {
  font-size: 28px;
  color: var(--muted);
}

.cdev-num i {
  font-size: 13px;
  color: var(--teal);
}

/* ============================================================ NAV COLLAPSE — burger menu for tablets and below */
@media (max-width: 1140px) {
  nav {
    padding: 0 16px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    align-items: center;
  }
  /* Keep logo + burger on the top row at 64px */
  .nav-logo {
    order: 1;
  }
  .nav-burger {
    display: block;
    margin-left: auto;
    order: 2;
  }
  /* Links dropdown */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 8px 0;
    gap: 2px;
    order: 3;
    align-items: stretch;
    border-top: 1px solid var(--border);
    background: rgba(7, 12, 23, 0.96);
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    width: 100%;
  }
  /* Reset CTA styles in burger menu */
  .nav-links a.nav-cta {
    border: none;
    margin-left: 0;
    padding: 12px 16px;
  }
  nav.open .nav-links {
    display: flex;
  }
  /* Right buttons dropdown */
  .nav-right {
    display: none;
    order: 4;
  }
  nav.open .nav-right {
    display: flex;
    width: 100%;
    padding: 12px 0;
    margin-left: 0;
    border-top: 1px solid var(--border);
    background: rgba(7, 12, 23, 0.96);
  }
}
/* ============================================================ MOBILE — layout changes */
@media (max-width: 768px) {
  .hero-grid, .grid-2, .grid-3, .big-row, .uc-grid, .cdev-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .big-row.flipped {
    direction: ltr;
  }
  .std-grid {
    grid-template-columns: 1fr;
  }
  .int-grid, .bo-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .wf-steps {
    flex-direction: column;
  }
  .wf-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .section {
    padding: 52px 0;
  }
  .hero {
    padding: 96px 0 52px;
  }
  .cta-band {
    margin: 0 12px;
    padding: 36px 20px;
  }
  .dash-float {
    display: none;
  }
}

/*# sourceMappingURL=formulate-site.css.map */
