/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Epilogue", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
  background: #fff;
  color: #111;
}
.custom_email {
  color: white;
  opacity: 0.4;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.custom_email:hover {
  opacity: 1;
}
.anchor_custom {
  text-decoration: none;
  transition: all 0.3s ease-in;
  color: white;
  margin-left: 10px;
  opacity: 0.4;
}
.anchor_custom:hover {
  opacity: 1;
}

/* ─── CURSOR ─── */
#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    width 0.25s,
    height 0.25s;
}
body.hov #cur {
  width: 48px;
  height: 48px;
}

/* ─── PAGE VIEWS ─── */
#page-main {
  display: block;
}
#page-demo {
  display: none;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  height: 60px;
}
.nav-logo {
  width: 50%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #ddd;
  height: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  cursor: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: #111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
}
.logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #111;
  line-height: 1.2;
}

/* Main site nav-links */
.nav-links {
  width: 50%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.nav-links ul {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: flex-start;
  gap: 32px;
}
.nav-links ul li a {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-links ul li a .num {
  font-size: 9px;
  font-weight: 600;
  color: #e8380d;
  letter-spacing: 0.05em;
}
.btn-demo {
  margin-left: 36px;
  flex-shrink: 0;
  background: #e8380d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-demo:hover {
  background: #c42e08;
}

/* Demo page nav-right */
.nav-right {
  width: 50%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.nav-back {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
  transition: color 0.2s;
  font-family: "Epilogue", sans-serif;
}
.nav-back:hover {
  color: #111;
}
.nav-back svg {
  width: 14px;
  height: 14px;
}
.nav-step {
  font-size: 11px;
  font-weight: 600;
  color: #e8380d;
  letter-spacing: 0.08em;
}

/* ─── DIVIDER SYSTEM ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.split.light {
  background: #fff;
  color: #111;
  border-bottom-color: #e8e8e8;
}
.split.dark {
  background: #111;
  color: #fff;
  border-bottom-color: #2a2a2a;
}
.split::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  z-index: 2;
  pointer-events: none;
}
.split.light::before {
  background: #e8e8e8;
}
.split.dark::before {
  background: #2a2a2a;
}
/* Sections with full-width content — suppress the centre line */
.split.no-divider::before {
  display: none;
}
.split.no-divider .cross {
  display: none;
}
.split .cross {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  z-index: 3;
  pointer-events: none;
}
.split .cross::before,
.split .cross::after {
  content: "";
  position: absolute;
  background: currentColor;
  opacity: 0.3;
}
.split .cross::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.split .cross::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.split.light .cross {
  color: #111;
}
.split.dark .cross {
  color: #fff;
}

.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.sec-label .sec-num {
  color: #e8380d;
}
.ofirst::first-letter {
  color: #e8380d;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 60px;
}
.hero-left {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 60px);
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #111;
  max-width: 580px;
}
.hero-h1 .orange {
  color: #e8380d;
}
.hero-body {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  max-width: 380px;
  margin-top: auto;
  padding-top: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid #e8e8e8;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hstat .val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111;
  display: block;
}
.hstat .key {
  font-size: 11px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

button#navHamburger {
  position: absolute;
  right: 0;
}

.hero-right {
  background: #111;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
}
.feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0;
}
.rec-dot {
  width: 8px;
  height: 8px;
  background: #e8380d;
  border-radius: 50%;
  animation: recpulse 1.5s ease-in-out infinite;
}
@keyframes recpulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.feed-header span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.feed-clock {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  font-family: monospace;
  letter-spacing: 0.08em;
}
.feed-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
}
.feed-events {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.feed-event {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  position: relative;
}
@keyframes feedSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feed-event {
  animation: feedSlide 0.35s ease forwards;
}
.fe-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.fe-pip {
  width: 5px;
  height: 5px;
  background: #e8380d;
  border-radius: 50%;
  flex-shrink: 0;
}
.fe-pip.green {
  background: #22c55e;
}
.fe-pip.orange {
  background: #fb923c;
}
.fe-id {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  font-family: monospace;
}
.fe-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fe-status.blocked {
  color: #e8380d;
}
.fe-status.resolved {
  color: #22c55e;
}
.fe-status.analyzing {
  color: #fb923c;
}
.fe-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.fe-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-family: monospace;
  margin-top: 6px;
}
.feed-sidebar {
  border-left: 1px solid #2a2a2a;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 140px;
}
.fs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 0;
}
.fs-row:first-child {
  border-top: 1px solid #2a2a2a;
}
.fs-num {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.fs-num.red {
  color: #e8380d;
}

/* ─── PRODUCT ─── */
#product {
  padding-top: 0;
}
.product-left {
  padding: 80px 40px;
}
.product-h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #111;
}
.product-h2 .orange {
  color: #e8380d;
}
.product-right {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  align-content: start;
}
.feat h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #111;
  margin-bottom: 12px;
}
.feat p {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
}

/* ─── BELIEF ─── */
#belief {
  background: #111;
}
.belief-inner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.belief-h2 {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 900px;
}
.belief-h2 .orange {
  color: #e8380d;
}
.btn-outline-white {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  cursor: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}
.belief-screen {
  width: 100%;
  max-width: 720px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  position: relative;
  overflow: hidden;
}
.bs-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid #2a2a2a;
}
.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.bs-main {
  aspect-ratio: 16/8;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bs-label {
  position: absolute;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-family: monospace;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.bbox {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
}
.bbox::before,
.bbox::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: #fff;
  border-style: solid;
}
.bbox::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.bbox::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}
.bbox-pip {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #e8380d;
  border-radius: 50%;
}
.bs-infobox {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #e8380d;
  padding: 10px 14px;
  min-width: 160px;
}
.bsi-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bsi-val {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

/* ─── CAPABILITIES ─── */
#capabilities {
  background: #111;
}
.cap-header {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 80px 64px;
  border-bottom: 1px solid #2a2a2a;
}
.cap-h2 {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.cap-h2 .orange {
  color: #e8380d;
}
.cap-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cap-cell {
  padding: 48px 40px;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.cap-cell:nth-child(3n) {
  border-right: none;
}
.cap-num {
  font-size: 11px;
  font-weight: 700;
  color: #e8380d;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: block;
}
.cap-cell h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 12px;
}
.cap-cell p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ─── INDUSTRIES ─── */
#industries {
  background: #fff;
}
.ind-left {
  padding: 80px 40px;
}
.ind-h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 32px;
}
.ind-h2 .orange {
  color: #e8380d;
}
.ind-sub {
  font-size: 13px;
  font-weight: 500;
  color: #e8380d;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.ind-body {
  font-size: 13px;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}
.accordion {
  border-top: 1px solid #e8e8e8;
  margin-bottom: 36px;
}
.acc-row {
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
}
.acc-label {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  letter-spacing: -0.2px;
}
.acc-arr {
  font-size: 14px;
  color: #e8380d;
}
.btn-book {
  display: inline-block;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  transition: background 0.2s;
}
.btn-book:hover {
  background: #333;
}
.ind-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.ind-right svg {
  flex: 1;
}
.svc-photo-sim {
  flex: 1;
  margin-top: 48px;
  min-height: 300px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* ─── SERVICES ─── */
#services {
  background: #111;
}
.svc-left {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
}
.svc-h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 0;
}
.svc-h2 .orange {
  color: #e8380d;
}
.svc-right {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-sublabel {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.svc-accordion {
  border-top: 1px solid #2a2a2a;
}
.svc-row {
  border-bottom: 1px solid #2a2a2a;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  transition: color 0.2s;
}
.svc-row:hover .svc-row-label {
  color: #fff;
}
.svc-row-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.2px;
  transition: color 0.2s;
}
.svc-arr {
  font-size: 14px;
  color: #e8380d;
}
.btn-contact {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 12px 24px;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: none;
  margin-top: 32px;
  transition: border-color 0.2s;
}
.btn-contact:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ─── CLIENTS ─── */
#clients {
  background: #fff;
}
.clients-inner {
  grid-column: 1 / -1;
  padding: 80px 40px;
}
.clients-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 60px;
}
.clients-h2 .orange {
  color: #e8380d;
}
.mq {
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 60px;
  position: relative;
}
.mq::before,
.mq::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.mq::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.mq::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.mq-track {
  display: flex;
  animation: mqrun 28s linear infinite;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mq-logo {
  flex-shrink: 0;
  padding: 20px 44px;
  border-right: 1px solid #e8e8e8;
  white-space: nowrap;
  cursor: none;
}
.mq-logo span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #ccc;
  transition: color 0.2s;
}
.mq-logo:hover span {
  color: #666;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e8e8e8;
}
.sg-cell {
  padding: 36px 32px;
  border-right: 1px solid #e8e8e8;
  cursor: none;
  transition: background 0.2s;
}
.sg-cell:last-child {
  border-right: none;
}
.sg-cell:hover {
  background: #fafafa;
}
.sg-n {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  color: #111;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.sg-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 3px;
}
.sg-s {
  font-size: 11px;
  color: #ccc;
}

/* ─── CTA ─── */
#cta {
  background: #111;
}
.cta-inner {
  grid-column: 1 / -1;
  padding: 120px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.cta-h2 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;
  color: #fff;
  max-width: 720px;
}
.cta-h2 .orange {
  color: #e8380d;
}
.cta-sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 400px;
}
.btn-cta-primary {
  background: #e8380d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  font-family: "Epilogue", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: none;
  transition: background 0.2s;
  letter-spacing: -0.2px;
}
.btn-cta-primary:hover {
  background: #c42e08;
}

/* ─── FOOTER ─── */
footer {
  background: #111;
  border-top: 1px solid #222;
  padding: 56px 40px 32px;
}
.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.ft-brand-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-brand-logo .logo-icon {
  background: #fff;
}
.ft-about {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.ft-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
}
.ft-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-col ul a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-col ul a:hover {
  color: #fff;
}
.ft-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-bottom p {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
}
.ft-sys {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}
.sys-pip {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  animation: recpulse 2.5s ease-in-out infinite;
}

/* ════════════════════════════════════════
   DEMO PAGE STYLES
════════════════════════════════════════ */
.page-wrap {
  min-height: 100vh;
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.page-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e8e8e8;
  z-index: 2;
  pointer-events: none;
}
.left-panel {
  background: #111;
  min-height: calc(100vh - 60px);
  padding: 64px 48px 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.left-kicker {
  font-size: 11px;
  font-weight: 600;
  color: #e8380d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.left-h1 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}
.left-h1 .orange {
  color: #e8380d;
}
.left-body {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 56px;
  position: relative;
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  border-top: 1px solid #2a2a2a;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
}
.expect-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #333;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.expect-icon svg {
  width: 12px;
  height: 12px;
}
.expect-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.expect-text span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}
.left-stats {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.lstat .val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  display: block;
}
.lstat .key {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.right-panel {
  background: #fff;
  min-height: calc(100vh - 60px);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.form-kicker {
  font-size: 11px;
  font-weight: 600;
  color: #e8380d;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1 / -1;
}
label {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 13px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: #bbb;
  font-weight: 400;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}
input.error,
select.error,
textarea.error {
  border-color: #e8380d;
  box-shadow: 0 0 0 3px rgba(232, 56, 13, 0.08);
}
textarea {
  resize: none;
  height: 96px;
}
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #888;
  pointer-events: none;
}
.phone-wrap {
  display: flex;
}
.phone-prefix {
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-right: none;
  padding: 13px 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-wrap input {
  border-left: none;
}
.phone-wrap input:focus {
  border-left: 1px solid #111;
}
.field-err {
  font-size: 11px;
  font-weight: 500;
  color: #e8380d;
  margin-top: 4px;
  display: none;
}
.field-err.show {
  display: block;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.size-pill {
  font-family: "Epilogue", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: none;
  transition: all 0.15s;
  user-select: none;
}
.size-pill:hover {
  border-color: #aaa;
  color: #555;
}
.size-pill.active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.check-item:hover {
  border-color: #ccc;
}
.check-item.checked {
  border-color: #111;
  background: #fafafa;
}
.check-box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.check-item.checked .check-box {
  background: #111;
  border-color: #111;
}
.check-box svg {
  display: none;
}
.check-item.checked .check-box svg {
  display: block;
}
.check-label {
  font-size: 12px;
  font-weight: 500;
  color: #555;
}
.check-item.checked .check-label {
  color: #111;
}

.form-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-submit {
  width: 100%;
  background: #e8380d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: "Epilogue", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  cursor: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: #c42e08;
}
.btn-submit:active {
  transform: scale(0.99);
}
.btn-submit .btn-arrow {
  transition: transform 0.2s;
}
.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-submit.loading .btn-text,
.btn-submit.loading .btn-arrow {
  display: none;
}
.btn-submit.loading .btn-spinner {
  display: block;
}
.form-note {
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}
.form-note a {
  color: #888;
  text-decoration: underline;
  cursor: none;
}

.success-overlay {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.success-overlay.show {
  display: flex;
}
.form-body.hidden {
  display: none;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-icon svg {
  width: 24px;
  height: 24px;
}
.success-h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #111;
  margin-bottom: 12px;
}
.success-h2 .orange {
  color: #e8380d;
}
.success-p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 36px;
}
.success-detail {
  border-top: 1px solid #e8e8e8;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.sd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.sd-label {
  color: #aaa;
  font-weight: 400;
}
.sd-val {
  color: #111;
  font-weight: 600;
}
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  background: transparent;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-back-home:hover {
  border-color: #111;
  background: #fafafa;
}

.live-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #1e1e1e;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  font-size: 9px;
  font-weight: 700;
  color: #e8380d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px;
  border-right: 1px solid #222;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: #111;
}
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
  padding: 0 28px;
  border-right: 1px solid #1e1e1e;
  height: 36px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-item .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}
.ticker-item .dot.red {
  background: #e8380d;
}
.ticker-item .dot.green {
  background: #22c55e;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: #111;
  color: #fff;
  flex-shrink: 0;
}
.step.inactive .step-num {
  background: #f0f0f0;
  color: #aaa;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.03em;
}
.step.inactive .step-label {
  color: #bbb;
}
.step-line {
  flex: 1;
  height: 1px;
  background: #e8e8e8;
  margin: 0 12px;
  min-width: 20px;
}

/* ─── CONTACT MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #aaa;
  cursor: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #111;
}
.modal-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8380d;
  margin-bottom: 8px;
}
.modal-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 20px;
}
.contact-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-group.full {
  grid-column: 1 / -1;
}
.contact-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}
.contact-group input,
.contact-group textarea,
.contact-group select {
  width: 100%;
  font-family: "Epilogue", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.contact-group textarea {
  resize: vertical;
  min-height: 90px;
}
.contact-group input:focus,
.contact-group textarea:focus,
.contact-group select:focus {
  border-color: #111;
}
.contact-group input.cerr,
.contact-group textarea.cerr,
.contact-group select.cerr {
  border-color: #e8380d;
}
.contact-ferr {
  font-size: 10px;
  color: #e8380d;
  display: none;
}
.contact-ferr.show {
  display: block;
}
.btn-contact-send {
  width: 100%;
  background: #e8380d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-contact-send:hover {
  background: #c42e08;
}
.btn-contact-send .cspin {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-contact-send.loading .csend-text {
  display: none;
}
.btn-contact-send.loading .cspin {
  display: block;
}
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}
.contact-success.show {
  display: flex;
}
.contact-success-icon {
  width: 52px;
  height: 52px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-success h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 10px;
}
.contact-success p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  max-width: 300px;
}

/* ─── CERTIFICATIONS ─── */
.certs-inner {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
}
.certs-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111;
  margin-bottom: 14px;
}
.certs-h2 .orange {
  color: #e8380d;
}
.certs-sub {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 52px;
}
.cert-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border: 1px solid #e8e8e8;
}
.cert-card {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  padding: 36px 24px;
  border-right: 1px solid #e8e8e8;
  text-align: center;
  transition: background 0.2s;
}
.cert-card:last-child {
  border-right: none;
}
.cert-card:hover {
  background: #fafafa;
}
.cert-badge {
  width: 56px;
  height: 56px;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}
.cert-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.cert-card p {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
}

/* ─── FOUNDERS ─── */
.founders-inner {
  grid-column: 1 / -1;
  padding: 90px 40px;
}
.founders-header {
  text-align: center;
  margin-bottom: 60px;
}
.founders-h2 {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.founders-h2 .orange {
  color: #e8380d;
}
.founders-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #2a2a2a;
}
.founder-card {
  padding: 40px 36px;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  transition: background 0.2s;
}
.founder-card:nth-child(even) {
  border-right: none;
}
.founder-card:nth-last-child(-n + 2) {
  border-bottom: none;
}
.founder-card:hover {
  background: rgba(255, 255, 255, 0.02);
}
.founder-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 800;
  color: #e8380d;
  letter-spacing: -0.5px;
}
.founder-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.founder-title {
  font-size: 11px;
  font-weight: 600;
  color: #e8380d;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.founder-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder-prev {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
.founder-prev span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.up.on {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   TABLET  (max 1100px) 
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-h1 {
    font-size: clamp(32px, 4.5vw, 58px);
    letter-spacing: -1.5px;
  }
  .nav-links ul {
    gap: 20px;
  }
  .cap-cell {
    padding: 36px 28px;
  }
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg-cell:nth-child(2) {
    border-right: none;
  }
  .sg-cell:nth-child(3) {
    border-right: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
  }
  .sg-cell:nth-child(4) {
    border-top: 1px solid #e8e8e8;
    border-right: none;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ─────────────────────────────────────────
   TABLET SMALL / LARGE MOBILE  (max 900px)
───────────────────────────────────────── */
@media (max-width: 900px) {
  html {
    scroll-padding-top: 70px;
  }
  /* ── Body & cursor ── */
  body {
    cursor: auto;
  }
  #cur {
    display: none;
  }
  nav.sidebar-nav {
    display: block;
    margin-top: 0;
    flex: unset;
    overflow: unset;
    height: unset;
    position: unset;
  }
  /* ── NAV ── */
  nav {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
  .nav-logo {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    height: 52px;
    padding: 0 20px;
  }
  .nav-links {
    width: 100%;
    border-right: none;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
  }
  .nav-links ul {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    width: 100%;
    padding: 0 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links ul::-webkit-scrollbar {
    display: none;
  }
  .nav-links ul li a {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
  .btn-demo {
    margin: 10px 16px 12px;
    width: calc(100% - 32px);
    text-align: center;
    padding: 11px 22px;
    cursor: pointer;
  }
  .nav-right {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border-right: none;
    border-bottom: none;
    justify-content: space-between;
  }
  .nav-back {
    cursor: pointer;
  }

  /* ── SPLIT grid collapse ── */
  .split {
    display: flex;
    flex-direction: column;
  }
  .split::before,
  .split .cross {
    display: none;
  }

  /* ── Page offset for taller nav ── */
  #page-main {
    padding-top: 0;
  }
  #hero {
    padding-top: 0;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: auto;
  }
  .hero-left {
    padding: 32px 20px 36px;
    min-height: auto;
    order: 1;
  }
  .hero-h1 {
    font-size: clamp(30px, 7vw, 46px);
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
  .hero-body {
    font-size: 13px;
    padding-top: 24px;
    max-width: 100%;
  }
  .hero-stats {
    gap: 24px;
    padding-top: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .hstat .val {
    font-size: 22px;
  }

  .hero-right {
    min-height: 320px;
    order: 2;
  }
  .feed-events {
    padding: 16px;
    gap: 8px;
  }
  .feed-sidebar {
    min-width: 110px;
    padding: 16px 12px;
  }
  .fs-num {
    font-size: 12px;
  }
  .fe-desc {
    font-size: 11px;
  }

  /* ─── PRODUCT ─── */
  .product-left {
    padding: 48px 20px 28px;
    order: 1;
  }
  .product-h2 {
    font-size: clamp(26px, 6vw, 42px);
    letter-spacing: -1px;
  }
  .product-right {
    padding: 0 20px 48px;
    grid-template-columns: 1fr;
    gap: 28px;
    order: 2;
  }
  .feat h3 {
    font-size: 15px;
  }
  .feat p {
    font-size: 13px;
  }

  /* ─── BELIEF ─── */
  .belief-inner {
    padding: 64px 20px 48px;
    gap: 28px;
  }
  .belief-h2 {
    font-size: clamp(22px, 5.5vw, 40px);
    letter-spacing: -1px;
  }
  .belief-screen {
    max-width: 100%;
  }
  .btn-outline-white {
    cursor: pointer;
  }

  /* ─── CAPABILITIES ─── */
  .cap-header {
    padding: 56px 20px 40px;
  }
  .cap-h2 {
    font-size: clamp(22px, 5.5vw, 38px);
    letter-spacing: -1px;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cap-cell {
    padding: 28px 20px;
    border-right: none;
  }
  .cap-cell:nth-child(odd) {
    border-right: 1px solid #2a2a2a;
  }
  .cap-cell:nth-child(even) {
    border-right: none;
  }
  /* Last row — keep bottom borders tidy */
  .cap-cell:nth-last-child(-n + 1) {
    border-bottom: none;
  }
  .cap-cell h3 {
    font-size: 15px;
  }
  .cap-cell p {
    font-size: 12px;
  }

  /* ─── INDUSTRIES ─── */
  .ind-left {
    padding: 48px 20px;
    order: 1;
  }
  .ind-right {
    order: 2;
    min-height: 280px;
  }
  .ind-h2 {
    font-size: clamp(26px, 6vw, 40px);
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .ind-body {
    font-size: 13px;
    max-width: 100%;
  }
  .acc-label {
    font-size: 13px;
  }
  .btn-book {
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 13px 24px;
  }

  /* ─── SERVICES ─── */
  .svc-left {
    padding: 48px 20px 32px;
    order: 1;
  }
  .svc-right {
    padding: 0 20px 48px;
    order: 2;
  }
  .svc-h2 {
    font-size: clamp(24px, 5.5vw, 38px);
    letter-spacing: -1px;
  }
  .svc-photo-sim {
    min-height: 220px;
    margin-top: 28px;
  }
  .svc-row-label {
    font-size: 13px;
  }
  .btn-contact {
    cursor: pointer;
    width: 100%;
    text-align: center;
  }

  /* ─── CLIENTS ─── */
  .clients-inner {
    padding: 48px 20px;
  }
  .clients-h2 {
    font-size: clamp(28px, 6.5vw, 44px);
    letter-spacing: -1.2px;
    margin-bottom: 36px;
  }
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sg-cell:nth-child(2) {
    border-right: none;
  }
  .sg-cell:nth-child(3) {
    border-top: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
  }
  .sg-cell:nth-child(4) {
    border-top: 1px solid #e8e8e8;
    border-right: none;
  }
  .sg-n {
    font-size: 30px;
  }

  /* ─── CERTIFICATIONS ─── */
  .certs-inner {
    padding: 56px 20px;
  }
  .certs-h2 {
    font-size: clamp(24px, 6vw, 40px);
  }
  .cert-cards {
    flex-direction: column;
    border: 1px solid #e8e8e8;
  }
  .cert-card {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 28px 20px;
  }
  .cert-card:last-child {
    border-bottom: none;
  }

  /* ─── FOUNDERS ─── */
  .founders-inner {
    padding: 56px 20px;
  }
  .founders-h2 {
    font-size: clamp(22px, 5.5vw, 38px);
    letter-spacing: -1px;
  }
  .founders-sub {
    font-size: 13px;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .founder-card {
    border-right: none !important;
    border-bottom: 1px solid #2a2a2a !important;
    padding: 32px 20px;
  }
  .founder-card:last-child {
    border-bottom: none !important;
  }
  .founder-name {
    font-size: 16px;
  }
  .founder-bio {
    font-size: 12px;
  }

  /* ─── CTA ─── */
  .cta-inner {
    padding: 72px 20px;
    gap: 24px;
  }
  .cta-h2 {
    font-size: clamp(32px, 8vw, 56px);
    letter-spacing: -2px;
  }
  .cta-sub {
    font-size: 14px;
  }
  .btn-cta-primary {
    cursor: pointer;
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 20px 28px;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ft-about {
    max-width: 100%;
    font-size: 12px;
  }
  .ft-col h4 {
    font-size: 10px;
  }
  .ft-col ul a {
    font-size: 12px;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* ─── CONTACT MODAL ─── */
  .modal-box {
    padding: 32px 20px;
    max-height: 95vh;
  }
  .modal-title {
    font-size: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-group.full {
    grid-column: 1;
  }
  .btn-contact-send {
    cursor: pointer;
  }

  /* ─── DEMO PAGE ─── */
  .page-wrap {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
  .page-wrap::before {
    display: none;
  }
  .left-panel {
    min-height: auto;
    padding: 40px 20px 80px;
  }
  .left-h1 {
    font-size: clamp(26px, 6vw, 40px);
    letter-spacing: -1.2px;
  }
  .left-body {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 36px;
  }
  .expect-item {
    gap: 12px;
    padding: 16px 0;
  }
  .expect-text strong {
    font-size: 12px;
  }
  .expect-text span {
    font-size: 11px;
  }
  .left-stats {
    gap: 24px;
    padding-top: 32px;
  }
  .lstat .val {
    font-size: 20px;
  }
  .right-panel {
    padding: 36px 20px 48px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .interest-grid {
    grid-template-columns: 1fr;
  }
  .form-title {
    font-size: 18px;
  }
  .size-pills {
    gap: 6px;
  }
  .size-pill {
    font-size: 11px;
    padding: 7px 12px;
    cursor: pointer;
  }
  .btn-submit {
    cursor: pointer;
  }
  .btn-back-home {
    cursor: pointer;
  }
  .progress-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .step-label {
    font-size: 10px;
  }
  .step-line {
    min-width: 12px;
  }

  /* ─── All interactive elements — restore browser cursor ── */
  button,
  a,
  input,
  select,
  textarea,
  .acc-row,
  .svc-row,
  .check-item,
  .size-pill,
  .sg-cell,
  .mq-logo,
  .cap-cell,
  .feat,
  .cert-card,
  .founder-card,
  .modal-close {
    cursor: auto;
  }
  button,
  .btn-demo,
  .btn-book,
  .btn-contact,
  .btn-submit,
  .btn-cta-primary,
  .btn-outline-white,
  .btn-back-home,
  .btn-contact-send,
  .modal-close,
  .nav-back {
    cursor: pointer;
  }
}

/* ─────────────────────────────────────────
   MOBILE  (max 600px) — phones
───────────────────────────────────────── */
@media (max-width: 600px) {
  button.nav-back {
    display: none;
  }
  /* ── NAV — single row logo + button only ── */
  .nav-links ul li a .num {
    display: none;
  }
  .nav-links ul li a {
    font-size: 11px;
  }
  .nav-links ul {
    gap: 0;
    padding: 0;
  }
  .nav-links ul li {
    flex: 0 0 auto;
  }

  /* ── Hero ── */
  .hero-h1 {
    font-size: clamp(26px, 8vw, 36px);
    letter-spacing: -0.8px;
  }
  .hero-right {
    min-height: 280px;
  }
  .feed-sidebar {
    display: none;
  } /* hide number grid — too narrow */
  .feed-grid {
    grid-template-columns: 1fr;
  }
  .feed-events {
    padding: 12px;
  }
  .hero-stats {
    gap: 16px;
  }
  .hstat .val {
    font-size: 20px;
  }
  .hstat .key {
    font-size: 10px;
  }

  /* ── Capabilities — single column ── */
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-cell {
    border-right: none !important;
  }
  .cap-cell:last-child {
    border-bottom: none;
  }

  /* ── Clients sector grid — single column ── */
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .sg-cell {
    border-right: none !important;
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 20px;
  }
  .sg-cell:last-child {
    border-bottom: none;
  }
  .sg-cell:nth-child(3),
  .sg-cell:nth-child(4) {
    border-top: none;
  }

  /* ── Footer — stacked ── */
  .ft-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ── Demo form ── */
  .progress-steps {
    gap: 0;
  }
  .step-label {
    display: none;
  }
  .step-line {
    min-width: 16px;
  }

  /* ── Belief screen ── */
  .bs-infobox {
    padding: 8px 10px;
    min-width: 130px;
  }
  .bsi-val {
    font-size: 10px;
  }
  .bs-main {
    aspect-ratio: 16/9;
  }

  /* ── Modal ── */
  .modal-overlay {
    align-items: flex-end;
  }
  .modal-box {
    max-height: 92vh;
    border-radius: 0;
    padding: 28px 16px;
  }
  .modal-title {
    font-size: 20px;
  }

  /* ── CTA ── */
  .cta-h2 {
    font-size: clamp(28px, 9vw, 44px);
    letter-spacing: -1.5px;
  }

  /* ── Marquee logos ── */
  .mq-logo {
    padding: 16px 28px;
  }
  .mq-logo span {
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────
   VERY SMALL MOBILE  (max 380px)
───────────────────────────────────────── */
@media (max-width: 380px) {
  .nav-links ul li a {
    font-size: 10px;
    padding: 10px 10px;
  }
  .btn-demo {
    font-size: 12px;
    padding: 10px 18px;
  }

  .hero-h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  .hero-body {
    font-size: 12px;
  }

  .product-h2 {
    font-size: 24px;
  }
  .belief-h2 {
    font-size: 20px;
  }
  .cap-h2 {
    font-size: 20px;
  }
  .ind-h2 {
    font-size: 22px;
  }
  .svc-h2 {
    font-size: 22px;
  }
  .clients-h2 {
    font-size: 24px;
  }
  .cta-h2 {
    font-size: 26px;
  }
  .founders-h2 {
    font-size: 20px;
  }
  .certs-h2 {
    font-size: 22px;
  }

  .left-h1 {
    font-size: 24px;
  }
  .form-title {
    font-size: 16px;
  }

  .sg-n {
    font-size: 26px;
  }
  .size-pill {
    padding: 6px 10px;
    font-size: 10px;
  }

  .founder-avatar {
    width: 48px;
    height: 48px;
    font-size: 13px;
  }
  .founder-name {
    font-size: 14px;
  }
}

/* ─── HAMBURGER (mobile only) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 12px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── OVERLAY ─── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 800;
  pointer-events: none;
  transition: background 0.35s ease;
}
.sidebar-overlay.open {
  background: rgba(0, 0, 0, 0.6);
  pointer-events: all;
}

/* ─── SIDEBAR DRAWER ─── */
.sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid #ddd;
  will-change: transform;
}
.sidebar-drawer.open {
  transform: translateX(0);
}

/* Header */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-bottom: 1px solid #e8e8e8;
  flex-shrink: 0;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-close {
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "Epilogue", sans-serif;
}
.sidebar-close:hover {
  background: #f5f5f5;
  color: #111;
}

/* Nav links */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
  cursor: pointer;
}
.sidebar-link:hover {
  background: #fafafa;
}
.s-num {
  font-size: 10px;
  font-weight: 700;
  color: #e8380d;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 20px;
}
.s-label {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  flex: 1;
}
.s-arr {
  font-size: 16px;
  color: #ccc;
  flex-shrink: 0;
}

/* Footer */
.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  flex-shrink: 0;
}
.sidebar-btn-demo {
  width: 100%;
  background: #e8380d;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: background 0.2s;
}
.sidebar-btn-demo:hover {
  background: #c42e08;
}
.sidebar-cert-note {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.02em;
}
.subtitle {
  opacity: 0.7;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.25px;
}
.sidebar-logo {
  display: none;
}
/* ─── SHOW HAMBURGER ON MOBILE ─── */
@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }

  /* Hide desktop nav links on mobile — hamburger takes over */
  .nav-links {
    display: none !important;
  }

  /* Keep logo full width when links hidden */
  .nav-logo {
    width: 100% !important;
    border-right: none !important;
    border-bottom: none !important;
    flex: 1;
  }

  /* Prevent body scroll when drawer is open */
  body.sidebar-open {
    overflow: hidden;
  }
  span.nav-step {
    display: none;
  }
  span.s-num {
    display: none;
  }
}
