/* ================= THEME ================= */
:root {
  --bg-main: #020617;
  --bg-soft: #020617;
  --border-soft: rgba(255, 255, 255, 0.1);
  --text-main: #e5e7eb;
  --text-muted: #94a3b8;
  --accent: #00d5ff;

  --radius: 16px;
  --radius-sm: 12px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 20px rgba(0, 0, 0, 0.22);

  --container: 1200px;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      1200px 600px at 20% 0%,
      rgba(0, 213, 255, 0.493),
      transparent 60%
    ),
    linear-gradient(135deg, var(--bg-soft), var(--bg-main));
  color: var(--text-main);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-ctas {
  justify-content: center;
}
/* ================= UTIL ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(
    180deg,
    rgba(0, 180, 216, 1),
    rgba(0, 140, 180, 1)
  );
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-soft);
  color: var(--text-main);
}
.btn-ghost:hover {
  border-color: rgba(0, 180, 216, 0.35);
}
.btn-block {
  width: 100%;
}

.link-muted {
  color: var(--text-muted);
  font-weight: 600;
}
.link-muted:hover {
  color: var(--text-main);
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(2, 6, 23, 0.55);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 220px;
}
.brand-logo {
  height: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
}
.nav a {
  color: var(--text-muted);
  font-weight: 700;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: flex-end;
  min-width: 240px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 5px 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.active {
  display: block;
}

/* ================= HERO ================= */
.hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}
.eyebrow {
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  letter-spacing: 1.4px;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}
.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin-bottom: 0.95rem;
}
.subhead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}
.hero-ctas {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trustline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-weight: 650;
  font-size: 0.95rem;
}
.trustline .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.1);
}

.stat-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  min-width: 150px;
}
.stat-num {
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
}
.stat-label {
  color: var(--text-muted);
  font-weight: 650;
  font-size: 0.9rem;
}


//* ══════════════════════════════
   DEMO SECTION
══════════════════════════════ *//
#demo {
  text-align: center;
}

.demo-select-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 40px;
}

/* ── CUSTOM DROPDOWN ── */
.custom-select {
  position: relative;
  width: 380px;
  user-select: none;
  margin: 0 auto;
}

.custom-select-selected {
  background: linear-gradient(135deg, #0f1a2e, #0d1520);
  border: 1.5px solid var(--accent);
  border-radius: 14px;
  padding: 16px 52px 16px 22px;
  color: #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.2px;
  box-shadow:
    0 0 0 1px rgba(0,213,255,0.08),
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.25s ease;
}

.custom-select-selected:hover {
  border-color: rgba(0,213,255,0.8);
  box-shadow:
    0 0 0 3px rgba(0,213,255,0.1),
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.custom-select-selected::after {
  content: '▾';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-select.open .custom-select-selected {
  border-color: var(--accent);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow:
    0 0 0 3px rgba(0,213,255,0.12),
    0 8px 32px rgba(0,0,0,0.4);
}

.custom-select.open .custom-select-selected::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(160deg, #0f1a2e, #0a1020);
  border: 1.5px solid var(--accent);
  border-top: 1px solid rgba(0,213,255,0.15);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 200;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,213,255,0.05);
}

.custom-select-options.open {
  display: block;
  animation: dropDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropDown {
  from { opacity: 0; transform: translateY(-12px) scaleY(0.92); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}

.custom-select-group {
  padding: 12px 22px 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0.8;
}

.custom-select-group:first-child {
  border-top: none;
}

.custom-select-option {
  padding: 13px 22px;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-select-option::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.custom-select-option:hover {
  background: rgba(0,213,255,0.07);
  color: #ffffff;
  padding-left: 26px;
}

.custom-select-option:hover::before {
  opacity: 1;
}

/* ── PANELS ── */
.demo-panel {
  display: none;
}

.demo-panel.active {
  display: block;
  animation: fadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.demo-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.demo-panel-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f9fafb;
  letter-spacing: -0.3px;
}

.demo-panel-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ── GRID ── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .demo-grid { grid-template-columns: 1fr; }
  .custom-select { width: 100%; }
}

/* ── INPUTS ── */
.demo-inputs {
  background: linear-gradient(145deg, rgba(15,26,46,0.8), rgba(10,16,32,0.9));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.demo-inputs h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.8;
}

.demo-field {
  margin-bottom: 18px;
}

.demo-field label {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 7px;
  font-weight: 500;
}

.demo-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: #f9fafb;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.demo-field input:focus {
  border-color: var(--accent);
  background: rgba(0,213,255,0.04);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.2),
    0 0 0 3px rgba(0,213,255,0.08);
}

.demo-field input::placeholder {
  color: rgba(255,255,255,0.18);
}

/* ── RESULTS ── */
.demo-results {
  background: linear-gradient(145deg, rgba(15,26,46,0.8), rgba(10,16,32,0.9));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.demo-results h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.8;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.result-row:last-of-type {
  border-bottom: none;
}

.result-row span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.result-row span:last-child {
  font-weight: 700;
  color: #f9fafb;
  font-size: 0.95rem;
}

/* ── LOCKED ROWS ── */
.locked-row span:last-child {
  color: rgba(255,255,255,0.2) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── VERDICT ── */
.demo-verdict {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  transition: all 0.4s ease;
  line-height: 1.5;
}

.demo-verdict.approve {
  background: linear-gradient(135deg, #052e16, #0a3d1e);
  color: #4ade80;
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
}

.demo-verdict.review {
  background: linear-gradient(135deg, #431407, #5a1d08);
  color: #fbbf24;
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 4px 20px rgba(245,158,11,0.1);
}

.demo-verdict.reject {
  background: linear-gradient(135deg, #450a0a, #5c0f0f);
  color: #f87171;
  border-color: rgba(239,68,68,0.3);
  box-shadow: 0 4px 20px rgba(239,68,68,0.1);
}

/* ── CTA ── */
.demo-cta {
  margin-top: 16px;
  display: block;
  background: linear-gradient(135deg, rgba(0,180,216,1), rgba(0,130,170,1));
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,180,216,0.25);
}

.demo-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,180,216,0.35);
}

.demo-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  opacity: 0.7;
}

/* ── USAGE COUNTER ── */
.demo-usage {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 28px;
  opacity: 0.8;
}

/* ── LOCKED OVERLAY ── */
.demo-locked {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.demo-locked-inner {
  background: linear-gradient(145deg, #0f1a2e, #0a1020);
  border: 1px solid rgba(0,213,255,0.2);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  box-shadow:
    0 0 0 1px rgba(0,213,255,0.05),
    0 20px 60px rgba(0,0,0,0.5);
}

.demo-locked-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.demo-locked-inner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.demo-locked-inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  font-size: 0.95rem;
}
/* ===============================
   HERO USERS (Industries line)
================================ */

.hero-users{
margin-top:12px;
font-size:0.95rem;
color:var(--text-muted);
font-weight:650;
max-width:55ch;
line-height:1.5;
}

/* ===============================
   HERO TRUST (Use case proof)
================================ */

.hero-trust{
margin-top:10px;
font-size:0.9rem;
color:var(--text-muted);
font-weight:600;
letter-spacing:0.2px;
opacity:0.9;
}

/* ===============================
   PRICING TRIGGER (Psychological)
================================ */

.pricing-trigger{
margin:0.9rem 0 1.1rem;
padding:0.75rem 0.9rem;
border-radius:12px;
background:rgba(255,255,255,0.03);
border:1px solid var(--border-soft);
color:var(--text-muted);
font-size:0.92rem;
font-weight:650;
line-height:1.45;
}

/* subtle highlight on important message */
.pricing-trigger strong{
color:#ffffff;
font-weight:800;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width:860px){

.hero-users{
font-size:0.9rem;
}

.hero-trust{
font-size:0.85rem;
}

.pricing-trigger{
font-size:0.88rem;
}

}


/* ================= SECTIONS ================= */
.section {
  padding: 4rem 0;
}
.section-soft {
  background: rgba(2, 6, 23, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.4px;
}
.section-head p {
  color: var(--text-muted);
  margin-top: 0.7rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.2px;
}
.card p {
  color: var(--text-muted);
  margin-top: 0.55rem;
}

/* Split grid */
.split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.split-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.split-card h3 {
  font-size: 1.05rem;
}
.list {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-weight: 650;
}
.list li {
  position: relative;
  padding-left: 1.25rem;
}
.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

/* Steps */
.steps {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: #fff;
  background: rgba(0, 180, 216, 0.18);
  border: 1px solid rgba(0, 180, 216, 0.3);
}
.steps h3 {
  font-size: 1.05rem;
}
.steps p {
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.proof {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.proof-big {
  font-weight: 950;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: #fff;
}
.proof p {
  color: var(--text-muted);
  margin-top: 0.55rem;
}

/* Pricing */
.pricing {
  display: flex;
  justify-content: center;
}
.pricing-card {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.pricing-top h3 {
  font-size: 1.2rem;
  letter-spacing: -0.3px;
}
.pricing-sub {
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 1.2rem 0 1rem;
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -1px;
  color: #fff;
}
.price-period {
  color: var(--text-muted);
  font-weight: 750;
}
.tiny {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}
details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: #fff;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}
.cta-band p {
  color: var(--text-muted);
  margin-top: 0.35rem;
  max-width: 60ch;
}
.cta-band-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .cards,
  .split,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-actions {
    min-width: auto;
  }
}
@media (max-width: 860px) {
  .brand-name {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    position: fixed;
    top: 72px;
    right: -110%;
    width: min(320px, 92vw);
    height: calc(100vh - 72px);
    background: rgba(2, 6, 23, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.3rem 1.2rem;
    transition: right 0.25s ease;
    z-index: 999;
  }
  .nav.open {
    right: 0;
  }
  .nav a {
    color: #fff;
    padding: 0.75rem 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav a:hover {
    border-color: rgba(0, 180, 216, 0.35);
    color: var(--accent);
  }
  .header-actions .link-muted {
    display: none;
  }
}
@media (max-width: 520px) {
  .kpi-value {
    font-size: 1.05rem;
  }
  .price-amount {
    font-size: 1.95rem;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band-actions {
    justify-content: flex-start;
  }
}

.lightbox {
  display: none;
}

.lightbox.open {
  display: flex;
}

/* =========================
   HERO MOCKUP SLIDESHOW
========================= */
.hero-visual {
  width: 100%;
}

.mockup-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.35);
}

.mini {
  font-size: 12px;
  opacity: 0.8;
}

.mockup-media {
  padding: 14px;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.mockup-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
}

.mockup-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mockup-dot.active {
  background: rgba(0, 180, 216, 0.8);
  border-color: rgba(0, 180, 216, 0.9);
}

.mockup-full {
  margin-top: 10px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.mockup-bottom {
  display: flex;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kpi {
  flex: 1;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi-label {
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.kpi-value {
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   LIGHTBOX (Fullscreen)
========================= */
.lightbox {
  display: none; /* IMPORTANT: hides the "✕ ‹ ›" text at the bottom */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: min(1100px, 96vw);
  max-height: 92vh;
  position: relative;
  background: rgba(2, 6, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  width: 38px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav.prev {
  left: 10px;
}
.lightbox-nav.next {
  right: 10px;
}

.lightbox-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .brand-name {
    display: none;
  }

  /* show hamburger only on mobile */
  .nav-toggle {
    display: block;
  }

  /* IMPORTANT: hide the nav by default on mobile */
  .nav {
    display: none; /* <-- this is the key */
    position: fixed;
    top: 72px;
    right: 0;
    width: min(320px, 92vw);
    height: calc(100vh - 72px);
    background: rgba(2, 6, 23, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.3rem 1.2rem;
    z-index: 999;
  }

  /* show it only after clicking hamburger */
  .nav.open {
    display: flex; /* <-- opens it */
  }

  .header-actions .link-muted {
    display: none;
  }
}

/* ===============================
   INDUSTRIES / SECTORS (no links)
================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.sector-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.sector-group h3 {
  font-size: 1.05rem;
  letter-spacing: -0.2px;
  margin-bottom: 0.85rem;
}

.sector-group ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-weight: 750;
}

.sector-group li {
  position: relative;
  padding-left: 1.15rem;
}

.sector-group li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 180, 216, 0.9);
  font-weight: 950;
}

.sectors-note {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  /* simplify header */
  .header-inner {
    padding: 0.6rem 0;
  }

  .brand-logo {
    height: 32px;
  }

  .brand-name {
    display: none;
  }

  .header-actions {
    display: none;
  }

  /* hamburger breathes */
  .nav-toggle {
    padding: 0.45rem 0.55rem;
  }
}

/* ==========================================
   DESKTOP: LIGHTBOX UNDER STICKY NAVBAR
   (keeps X always visible)
========================================== */

/* set your header height once (adjust if needed) */
:root {
  --header-h: 72px;
}

/* lightbox should not cover the header area */
@media (min-width: 861px) {
  .lightbox {
    inset: var(--header-h) 0 0 0; /* top starts under header */
    padding: 18px;
    z-index: 900; /* below header (header is 1000) */
  }

  .lightbox-inner {
    max-height: calc(100vh - var(--header-h) - 36px);
  }

  /* X button always visible (not trapped inside) */
  .lightbox-close {
    position: fixed;
    top: calc(var(--header-h) + 12px); /* below header */
    right: 12px;
    z-index: 1100; /* above everything */
    width: 44px;
    height: 44px;
  }

  /* arrows also safe */
  .lightbox-nav {
    position: fixed;
    top: calc(var(--header-h) + (50vh - (var(--header-h) / 2)));
    z-index: 1100;
  }
  .lightbox-nav.prev {
    left: 12px;
  }
  .lightbox-nav.next {
    right: 12px;
  }
}

/* ==========================================
   MOBILE: LIGHTBOX UNDER NAV + BIG SCREENSHOT
========================================== */

/* keep this matching your real header height */
:root {
  --header-h: 72px;
}

@media (max-width: 860px) {
  /* Lightbox should NOT cover the sticky header */
  .lightbox {
    inset: var(--header-h) 0 0 0; /* start under nav */
    padding: 0; /* remove padding that creates "small box" */
    z-index: 900; /* below header (header is 1000) */
    align-items: stretch;
    justify-content: stretch;
  }

  /* The frame/dialog must fill the available space under the header */
  .lightbox-inner {
    width: 100vw;
    height: calc(100dvh - var(--header-h)); /* full phone height minus navbar */
    max-height: none;
    border-radius: 0;
    padding: 0; /* remove inner padding = more space for image */
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* The PNG itself becomes big */
  .lightbox-img {
    flex: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain; /* show whole screenshot */
    border: 0;
    border-radius: 0;
  }

  /* Optional: hide caption to give image more height */
  .lightbox-caption {
    display: none;
  }

  /* X button ALWAYS visible, under navbar */
  .lightbox-close {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: 10px;
    z-index: 1100;
    width: 44px;
    height: 44px;
  }

  /* arrows also always visible */
  .lightbox-nav {
    position: fixed;
    top: calc(var(--header-h) + ((100dvh - var(--header-h)) / 2));
    transform: translateY(-50%);
    z-index: 1100;
    width: 52px;
    height: 52px;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
}

/* ==========================================
   MOBILE MENU: no gap + premium action buttons
   Paste ONCE at END of landing.css
========================================== */

/* header height variable so drawer touches header perfectly */
:root {
  --header-h: 72px; /* desktop */
}

@media (max-width: 860px) {
  :root {
    --header-h: 60px; /* adjust to 56/58/62 if needed */
  }

  /* overlay starts under header */
  .nav-overlay {
    top: var(--header-h) !important;
  }

  /* drawer starts under header */
  .nav {
    top: var(--header-h) !important;
    height: calc(100vh - var(--header-h)) !important;
  }
}

/* Mobile actions hidden by default (desktop) */
.nav-mobile-actions {
  display: none;
}

/* Show mobile actions only when menu is OPEN (prevents weird spacing) */
@media (max-width: 860px) {
  .header-actions {
    display: none !important;
  }

  .nav.open .nav-mobile-actions {
    display: grid;
    gap: 10px;
    padding: 14px 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Make "Sign in" smaller + pill-style */
  .nav.open .nav-mobile-actions .nav-link-muted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-weight: 750;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition:
      border-color 0.2s ease,
      transform 0.2s ease,
      color 0.2s ease;
  }

  .nav.open .nav-mobile-actions .nav-link-muted:hover {
    color: var(--text-main);
    border-color: rgba(0, 213, 255, 0.35);
    transform: translateY(-1px);
  }

  /* Make "Start free trial" smaller than your main buttons, but still the main CTA */
  .nav.open .nav-mobile-actions .btn {
    width: 100%;
    padding: 10px 12px; /* smaller than default 0.75rem 1.1rem */
    border-radius: 14px;
    font-size: 0.95rem; /* smaller text */
    font-weight: 850;
    line-height: 1;
    box-shadow: none; /* cleaner inside menu */
  }

  /* Give the CTA a subtle glow so it looks special inside the menu */
  .nav.open .nav-mobile-actions .btn-primary {
    box-shadow: 0 10px 18px rgba(0, 213, 255, 0.12);
    border: 1px solid rgba(0, 213, 255, 0.28);
  }
}

/* Footer promo note (premium website link) */
.footer-note {
  margin-top: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(0, 213, 255, 0.08);
  border: 1px solid rgba(0, 213, 255, 0.22);
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.45;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.35rem;
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 213, 255, 0.65);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.footer-link::after {
  content: '↗';
  font-size: 0.95em;
  opacity: 0.85;
}

.footer-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
  transform: translateY(-1px);
}

.footer-link:active {
  transform: translateY(0);
}

.footer-link:focus-visible {
  outline: 2px solid rgba(0, 213, 255, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* =========================
   DEMO WEBSITES (Company page)
========================= */
.demo-toolbar {
  max-width: 920px;
  margin: 0 auto 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.demo-search {
  flex: 1;
  min-width: 240px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  outline: none;
}

.demo-search::placeholder {
  color: rgba(148, 163, 184, 0.85);
  font-weight: 650;
}

.demo-search:focus {
  border-color: rgba(0, 213, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 213, 255, 0.1);
}

.demo-count {
  color: var(--text-muted);
  font-weight: 750;
  font-size: 0.95rem;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.demo-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.demo-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.2px;
  color: #fff;
  margin-bottom: 0.35rem;
}

.demo-card p {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.demo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 213, 255, 0.35);
  background: rgba(0, 213, 255, 0.06);
}

.demo-card:focus-visible {
  outline: 2px solid rgba(0, 213, 255, 0.55);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 980px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   START INSTANTLY (Company page)
========================= */
.start-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 213, 255, 0.22);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  margin-top: 1.2rem;
}

.start-left h3 {
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.start-sub {
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 650;
  max-width: 62ch;
}

.start-list {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
  color: var(--text-muted);
  font-weight: 700;
}

.start-list li {
  position: relative;
  padding-left: 1.25rem;
}

.start-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 950;
}

.start-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.start-note {
  margin-top: 0.85rem;
  color: rgba(148, 163, 184, 0.92);
  font-weight: 650;
  font-size: 0.95rem;
}

.start-right {
  display: grid;
  gap: 0.9rem;
}

.mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.05rem 1rem;
}

.mini-card h4 {
  font-size: 1.02rem;
  letter-spacing: -0.2px;
}

.mini-list {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-weight: 650;
}

.mini-list li {
  position: relative;
  padding-left: 1.1rem;
}

.mini-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 213, 255, 0.85);
  font-weight: 950;
}

.mini-sub {
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-weight: 650;
}

.mini-link {
  display: inline-flex;
  margin-top: 0.7rem;
  font-weight: 850;
  color: var(--accent);
}

.mini-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .start-card {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FOOTER (your exact HTML)
   Desktop + Mobile
   Paste at END of landing.css
========================= */

.footer {
  padding: 3.2rem 0 1.6rem;
  border-top: 1px solid var(--border-soft);
  background: rgba(2, 6, 23, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 0.75fr; /* brand + 3 cols */
  gap: 1.6rem;
  align-items: start;
}

/* Brand block */
.footer-brand .footer-logo-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand .brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen; /* matches your theme */
  flex: 0 0 auto;
}

.footer-brand .brand-name {
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.footer-desc {
  margin-top: 0.6rem;
  color: var(--text-muted);
  max-width: 58ch;
}

/* Footer note (your existing premium promo styles) */
.footer-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(0, 213, 255, 0.08);
  border: 1px solid rgba(0, 213, 255, 0.22);
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.45;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 213, 255, 0.65);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}
.footer-link::after {
  content: '↗';
  font-size: 0.95em;
  opacity: 0.85;
}
.footer-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
  transform: translateY(-1px);
}
.footer-link:active {
  transform: translateY(0);
}
.footer-link:focus-visible {
  outline: 2px solid rgba(0, 213, 255, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Columns */
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.2px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-weight: 650;
  margin-bottom: 0.55rem;
  padding: 0.25rem 0; /* makes tap targets nicer */
  transition: color 0.2s ease;
}

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

.footer-col a:focus-visible {
  outline: 2px solid rgba(0, 213, 255, 0.45);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Bottom */
.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── SOCIAL BUTTONS ── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn.tiktok {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e8f0f8;
}

.social-btn.tiktok:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-btn.linkedin {
  background: rgba(10,102,194,0.12);
  border: 1px solid rgba(10,102,194,0.25);
  color: #4a9fd5;
}

.social-btn.linkedin:hover {
  background: rgba(10,102,194,0.2);
  border-color: rgba(10,102,194,0.4);
  color: #6ab4e8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,102,194,0.2);
}

/* ── FOOTER BOTTOM SOCIALS ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-socials a {
  color: var(--text-muted, #6b8aaa);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-bottom-socials a:hover {
  color: var(--accent, #00d5ff);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 1.2rem;
  }

  .footer-brand {
    grid-column: 1 / -1; /* brand spans full width on tablet */
  }

  .footer-desc {
    max-width: 70ch;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 2.6rem 0 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr; /* stack */
    gap: 1.1rem;
  }

  .footer-brand .footer-logo-row {
    gap: 0.75rem;
  }

  .footer-brand .brand-logo {
    height: 38px;
  }

  .footer-note {
    padding: 0.9rem 0.95rem;
  }

  /* slightly tighter links on mobile */
  .footer-col a {
    margin-bottom: 0.45rem;
    padding: 0.35rem 0;
  }

  .footer-bottom {
    margin-top: 1.6rem;
    padding-top: 1rem;
  }
}

/* Center the trustline */
.trustline {
  display: flex;
  align-items: center;
  justify-content: center; /* centers dot + text */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (max-width: 860px) {
  .nav {
    gap: 6px; /* 👈 MUCH closer */
    padding: 12px;
  }
}

@media (max-width: 860px) {
  .nav a {
    padding: 10px 12px; /* 👈 tighter */
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 860px) {
  .nav.open .nav-mobile-actions {
    gap: 8px; /* 👈 tighter */
    padding: 10px 0 0;
    margin-top: 8px;
  }

  .nav.open .nav-mobile-actions .btn,
  .nav.open .nav-mobile-actions .nav-link-muted {
    padding: 10px 12px;
  }
}

/* =========================================
   HERO TEXT ALIGNMENT (FINAL OVERRIDE)
   Mobile: CENTER
   Desktop: LEFT
========================================= */

/* Mobile first – center everything */
.hero .eyebrow,
.hero h1,
.hero .subhead {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Desktop override – force left */
@media (min-width: 861px) {
  .hero .eyebrow,
  .hero h1,
  .hero .subhead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero .subhead {
    max-width: 52ch !important; /* keeps desktop readable */
  }
}

/* =========================================
   HERO EYEBROW – MOBILE CENTER FIX
========================================= */

/* Mobile */
.hero .eyebrow {
  display: inline-block; /* allows centering */
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Desktop */
@media (min-width: 861px) {
  .hero .eyebrow {
    justify-content: flex-start;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
}

/* =========================================
   HERO TEXT ALIGNMENT (CLEAN & CORRECT)
   Mobile: CENTER
   Desktop: LEFT
========================================= */

/* Mobile first: center the LEFT hero column */
.hero-grid > div:first-child {
  text-align: center;
}

/* Ensure block elements center nicely */
.hero-grid > div:first-child .subhead {
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: left-align the LEFT hero column */
@media (min-width: 861px) {
  .hero-grid > div:first-child {
    text-align: left;
  }

  .hero-grid > div:first-child .subhead {
    margin-left: 0;
    margin-right: 0;
    max-width: 52ch;
  }
}

/* =========================================
   PREMIUM STATS ROW
========================================= */

.stat-context {
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

/* Divider */
.stat-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  margin: 0 auto 1rem;
  opacity: 0.6;
}

/* Base row */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: nowrap; /* IMPORTANT */
}

/* Individual stat */
.stat {
  text-align: center;
  padding: 0.85rem 0.9rem;
  min-width: 110px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

/* Number */
.stat-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}

/* Label */
.stat-label {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 650;
  letter-spacing: 0.2px;
}

/* =========================
   MOBILE — FORCE ONE LINE
========================= */
@media (max-width: 520px) {
  .stat-row {
    gap: 0.55rem;
  }

  .stat {
    min-width: auto;
    padding: 0.7rem 0.6rem;
  }

  .stat-num {
    font-size: 1.05rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }
}

/* =========================================
   HERO ACTIONS + STATS
   Mobile: CENTER
   Desktop: LEFT
========================================= */

/* Mobile-first: center everything */
.hero-ctas,
.trustline,
.stat-context,
.stat-row {
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Make CTAs look intentional when centered */
.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Desktop: align everything to the LEFT */
@media (min-width: 861px) {
  .hero-ctas {
    justify-content: flex-start;
  }

  .trustline {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .stat-context {
    text-align: left;
    margin-left: 0;
  }

  .stat-row {
    justify-content: flex-start;
    margin-left: 0;
  }
}



  /* ===============================
   FOOTER GRID STRUCTURE
================================ */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

/* Tablet + Mobile (keep 2 columns) */
@media (max-width: 860px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  /* Order the sections properly */

  .footer-brand {
    order: 1;
  }

  .footer-col:nth-child(2) { /* Pages */
    order: 2;
  }

  .footer-col:nth-child(3) { /* Product */
    order: 3;
  }

  .footer-col:nth-child(4) { /* Contact */
    order: 4;
  }

}

/* Small phones still keep 2 columns */
@media (max-width: 520px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }

}

/* ===============================
   HERO PROOF (Value Examples)
================================ */

.hero-proof{
margin:1.4rem 0 0.8rem;
padding:1.1rem 1.1rem;
border-radius:14px;
border:1px solid var(--border-soft);
background:rgba(255,255,255,0.03);
backdrop-filter: blur(6px);
}

.hero-proof-title{
font-size:0.8rem;
font-weight:900;
letter-spacing:1.2px;
text-transform:uppercase;
color:var(--text-muted);
margin-bottom:0.8rem;
}

.hero-proof-list{
display:grid;
gap:0.65rem;
}

.hero-proof-item{
padding:0.75rem 0.8rem;
border-radius:12px;
border:1px solid rgba(255,255,255,0.06);
background:rgba(255,255,255,0.02);
transition:all .2s ease;
}

.hero-proof-item:hover{
border-color:rgba(0,180,216,0.35);
background:rgba(255,255,255,0.04);
}

.hero-proof-sector{
display:inline-block;
font-size:0.78rem;
font-weight:800;
color:var(--accent);
margin-bottom:0.2rem;
}

.hero-proof-item p{
font-size:0.92rem;
color:var(--text-muted);
line-height:1.45;
}

.hero-proof-item strong{
color:#ffffff;
font-weight:800;
}

/* ================= FOUNDER SECTION ================= */

.founder-section{
padding:70px 20px;
text-align:center;
border-top:1px solid var(--border-soft);
border-bottom:1px solid var(--border-soft);
background:rgba(2,6,23,0.35);
}

.founder-container{
max-width:720px;
margin:auto;
}

.founder-container img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
margin:0 auto 20px;
border:2px solid rgba(0,213,255,0.5);
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.founder-container h3{
font-size:1.4rem;
font-weight:800;
letter-spacing:-0.3px;
margin-bottom:6px;
}

.founder-role{
color:var(--accent);
font-size:0.9rem;
font-weight:700;
margin-bottom:16px;
letter-spacing:0.2px;
}

.founder-text{
color:var(--text-muted);
font-size:0.95rem;
line-height:1.7;
margin-bottom:14px;
}