/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --ink: #000;
  --line: rgba(255, 255, 255, .10);
  --line2: rgba(255, 255, 255, .18);
  --paper: #f4f1e8;
  --mut: #dddcd9;
  --dim: #ffffff;
  --accent: #f26522;
  --accent-soft: #ff8a4d;
  --gold: #ff8a4d;
  --gold-bright: #f26522;
  --display: 'Inter Tight', sans-serif;
  --serif: 'Instrument Serif', serif;
  --body: 'Hanken Grotesk', sans-serif;


  /* ── COMMON SPACING TOKENS ── */
  --section-py: clamp(2rem, 8vw, 4rem);
  --section-px: clamp(1rem, 5vw, 2rem);
  --container: 1240px;
  --gap-lg: clamp(20px, 4vw, 50px);
  --gap-md: clamp(20px, 3vw, 36px);
  --gap-sm: clamp(12px, 2vw, 20px);

  /* ── FONT FLOORS ── */
  --fs-body: clamp(16px, 1.6vw, 17px);
  --fs-sm: clamp(14px, 1.3vw, 15px);
  /* labels, mono — smallest allowed visible */
  --fs-mono: clamp(12px, 1.1vw, 16px);
}

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

html,
body {
  height: 100%;
}



a {
  text-decoration: none;
}

a:hover {
  color: inherit;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes flow {
  0% {
    background-position: -100% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes d1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-5vw, 6vh)
  }
}

@keyframes d2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(6vw, -5vh)
  }
}

@keyframes auroraA {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(8vw, 5vh) scale(1.12)
  }
}

@keyframes detailInY {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes industryIn {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 101, 34, .4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(242, 101, 34, 0)
  }
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ── NAV ──────────────────────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
}

#subnav {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 0 var(--section-px);
  background: rgba(0, 0, 0, .8);
  border-bottom: 1px solid var(--line);
  font-family: var(--body);
  font-size: var(--fs-sm);

}

#subnav a {
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}

#subnav a:hover {
  color: var(--paper);
}

header {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 var(--section-px);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--paper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-text .mx {
  color: var(--accent);
}

nav.desktop {
  margin-left: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--body);
  font-size: var(--fs-sm);
  font-weight: 500;
}

nav.desktop a {
  color: var(--mut);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

nav.desktop a:hover,
nav.desktop a.ai {
  color: var(--paper);
}

nav.desktop a.ai .spark {
  color: var(--accent);
  font-size: 12px;
}

.badge {
  font-family: var(--body);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.cta-pill {
  font-family: var(--body);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242, 101, 34, .35);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--paper);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--paper);
  border-radius: 1px;
  transition: transform .25s, opacity .15s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-glow {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1.5px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  background-size: 50% 100%;
  animation: flow 6s linear infinite;
  opacity: .75;
}

/* ── SLIDEOUT ─────────────────────────────────────────────── */
#backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

#backdrop.show {
  opacity: 1;
  visibility: visible;
}

#drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 92vw);
  z-index: 70;
  background: rgba(10, 10, 10, .98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--line2);
  box-shadow: -30px 0 80px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  height: 56px;
  flex: none;
}

.drawer-head .label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
}

.drawer-close {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--paper);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.drawer-section {
  padding: 18px 8px 8px;
  border-bottom: 1px solid var(--line);
}

.drawer-section-title {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.drawer-section a {
  display: block;
  padding: 7px 0;
  text-decoration: none;
  color: var(--paper);
  font-size: var(--fs-body);
  font-weight: 500;
  transition: color .15s, padding-left .15s;
}

.drawer-section a:hover {
  color: var(--gold-bright);
  padding-left: 6px;
}

.drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}

.drawer-footer a {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
}

.drawer-footer a.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line2);
}

.drawer-footer a.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 26px rgba(242, 101, 34, .4);
}

/* ── HERO ─────────────────────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 38%, rgba(242, 101, 34, .20), transparent 60%),
    radial-gradient(50% 45% at 20% 72%, rgba(233, 185, 73, .12), transparent 60%),
    radial-gradient(40% 40% at 50% 0%, rgba(155, 109, 214, .10), transparent 60%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(100% 80% at 50% 40%, #000, transparent 75%);
  mask-image: radial-gradient(100% 80% at 50% 40%, #000, transparent 75%);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--section-px) var(--section-py);
}

.brand {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  animation: rise .7s .05s forwards;
}

.brand b {
  color: var(--accent);
  font-weight: 500
}



.sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--mut);
  text-align: center;
  max-width: 54ch;
  margin: 0 auto 20px;
  opacity: 0;
  animation: rise .7s .2s forwards;
  line-height: 1.6;
}

.hero-box {
  width: min(680px, 94vw);
  opacity: 0;
  animation: rise .7s .28s forwards;
  background-color: inherit;
}

.field {
  background: linear-gradient(180deg, rgba(28, 24, 18, .92), rgba(14, 11, 7, .96));
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 16px 16px 12px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  transition: border-color .25s, box-shadow .25s;
}

.field:focus-within {
  border-color: rgba(242, 101, 34, .6);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .65), 0 0 0 4px rgba(242, 101, 34, .10)
}

.field input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--paper);
  font-family: var(--body);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.4;
  padding: 6px 4px;
}

.field input::placeholder {
  color: var(--dim)
}

.search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.ico {
  display: flex;
  gap: 8px
}

.ico span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line2);
  color: var(--dim);
  font-family: var(--body);
  font-size: 14px;
}

.send {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 8px 22px rgba(242, 101, 34, .45);
  transition: transform .15s, filter .15s;
}

.send:hover {
  transform: translateY(-1px);
  filter: brightness(1.08)
}

.send:active {
  transform: translateY(0)
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center
}

.chip {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line2);
  color: var(--mut);
  transition: all .2s;
}

.chip:hover {
  color: var(--paper);
  border-color: var(--gold);
  background: rgba(233, 185, 73, .08)
}

.stats {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 13px);
  letter-spacing: .04em;
  color: var(--dim);
  opacity: 0;
  animation: rise .7s .36s forwards;
}

.stats b {
  color: var(--gold);
  font-weight: 500
}

.results {
  width: min(680px, 94vw);
  margin-top: 18px;
  display: none
}

.results.show {
  display: block;
  animation: rise .5s forwards
}

.answer {
  background: linear-gradient(180deg, rgba(20, 16, 8, .94), rgba(10, 8, 4, .97));
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

.answer .lead {
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 17px);
  margin-bottom: 6px
}

.answer .body {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--mut)
}

.answer .cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px
}

.answer .card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line2);
  border-radius: 13px;
  padding: 13px 15px;
  color: var(--paper);
  transition: border-color .2s, transform .15s, background .2s;
}

.answer .card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  background: rgba(233, 185, 73, .06)
}

.answer .card .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--accent), var(--gold))
}

.answer .card .txt {
  flex: 1;
  min-width: 0
}

.answer .card .t {
  font-weight: 600;
  font-size: var(--fs-body)
}

.answer.card .k {
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 13px);
  color: var(--dim);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.answer .card .arrow {
  color: var(--dim);
  font-size: 18px;
  flex: none
}

.answer .card:hover .arrow {
  color: var(--gold)
}

.answer .card {
  display: flex;
  flex-direction: row;
  margin: 0;
}

.talk {
  margin-top: 16px;
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 13px;
  padding: 14px 18px;
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 17px);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 8px 22px rgba(242, 101, 34, .4);
  transition: transform .15s, filter .15s;
}

.talk:hover {
  transform: translateY(-1px);
  filter: brightness(1.08)
}

.foot {
  margin-top: 30px;
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 13px);
  color: var(--dim);
  letter-spacing: .06em;
  opacity: 0;
  animation: rise .7s .44s forwards;
  text-align: center;
}

.hint {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--line2);
  border-radius: 6px
}

/* ── SECTION CHROME ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  display: block;
}

.section-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--paper);
  max-width: 22ch;
}

.section-heading .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 54ch;
}

/* ── SERVICES SECTION ────────────────────────────────────── */
#services {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: #fff;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.services-header .section-heading {
  color: #15110a;
}

.services-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: var(--gap-md);
  align-items: center;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list-label {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 4px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-label span {
  width: 20px;
  height: 1px;
  background: var(--gold-bright);
  opacity: .5;
  display: block;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(20, 16, 8, .10);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: background .25s, border-color .25s, box-shadow .25s, transform .25s;
}

.svc-row:hover,
.svc-row.active {
  background: #15110a;
  border-color: #15110a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  transform: translateX(6px);
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: none;
  background: rgba(233, 185, 73, .16);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s;
}

.svc-row:hover .svc-icon,
.svc-row.active .svc-icon {
  background: rgba(242, 101, 34, .30);
  color: var(--accent-soft);
}

.svc-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 16px);
  color: #15110a;
  letter-spacing: -.01em;
  line-height: 1.15;
  transition: color .25s;
}

.svc-row:hover .svc-name,
.svc-row.active .svc-name {
  color: #fff;
}

.svc-kicker {
  font-family: var(--body);
  font-size: clamp(11px, 1vw, 12px);
  letter-spacing: .06em;
  color: #86806f;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s;
}

.svc-row:hover .svc-kicker,
.svc-row.active .svc-kicker {
  color: var(--gold-bright);
}

.svc-arrow {
  font-family: var(--body);
  font-size: 15px;
  color: #86806f;
  transition: color .25s, transform .25s;
  margin-left: auto;
}

.svc-row:hover .svc-arrow,
.svc-row.active .svc-arrow {
  color: var(--accent-soft);
  transform: translateX(2px);
}

/* Detail panel */
.svc-detail {
  background: linear-gradient(180deg, rgba(20, 16, 8, .96), rgba(8, 6, 2, .98));
  border: 1px solid var(--line2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .7);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 360px;
  position: relative;
  animation: industryIn .4s ease forwards;
}

.svc-content {
  padding: clamp(20px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.svc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-meta-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(242, 101, 34, .18);
  color: var(--accent-soft);
  border: 1px solid rgba(242, 101, 34, .35);
  display: grid;
  place-items: center;
}

.svc-tag {
  font-family: var(--body);
  font-size: clamp(11px, 1vw, 12px);
  letter-spacing: .16em;
  color: var(--gold);
}

.svc-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--paper);
}

.svc-kicker-detail {
  font-family: var(--body);
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: .1em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.svc-msg {
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.5;
  max-width: 38ch;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chip-sm {
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  color: var(--paper);
  white-space: nowrap;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(242, 101, 34, .45);
  transition: transform .15s;
}

.btn-orange:hover {
  transform: translateY(-1px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line2);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: border-color .2s, color .2s;
}

.btn-ghost-dark:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.svc-visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.svc-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2008 0%, #000000 100%) !important;
}

.svc-visual-dot {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .3;
}

.svc-visual-label {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--body);
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .78);
  background: rgba(0, 0, 0, .42);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.visual-inner {
  position: absolute;
  inset: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.visual-header .bar {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: #f26522 !important;

}

.visual-header .label {
  font-family: var(--body);
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f26522 !important;
}

.vis-item {
  flex: 1;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  min-height: 0;
  transition: transform .2s;
  background: #15110a !important;
  border-color: #15110a !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  transform: translateX(6px);
}

.vis-item:hover {
  transform: translateX(4px);
}

.vis-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.04em;
  color: #fff;
  background: rgba(242, 101, 34, .30) !important;
  color: var(--accent-soft) !important;
}

.vis-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 14px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.012em;
}

.vis-sub {
  font-family: var(--body);
  font-size: clamp(15px, .9vw, 16px);
  color: rgba(255, 255, 255, .65);
  letter-spacing: .06em;
  margin-top: 2px;
}

.vis-arrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  color: #f26522 !important;

}

.vis-cta {
  padding: 9px 15px;
  border-radius: 999px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
  font-family: var(--display);
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  background: #f26522 !important;
}

/* ── CREDENTIALS ─────────────────────────────────────────── */
#credentials {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: #000;
  overflow: hidden;
}

.cred-bridge-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--accent) 100%);
  opacity: .7;
  z-index: 1;
}

.cred-bridge-dot {
  position: absolute;
  top: 116px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 32px rgba(242, 101, 34, .55);
  z-index: 1;
}

.cred-echo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: radial-gradient(rgba(233, 185, 73, .16) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, transparent 100%);
}

.cred-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(233, 185, 73, .015);
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
}

.stat-cell {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.stat-cell:not(:last-child) {
  border-right: 1px solid var(--line);
}

.stat-num {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--paper);
}

.stat-num .suffix {
  margin-left: 4px;
  font-size: .55em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 16px);
  letter-spacing: -.005em;
  color: var(--paper);
}

.stat-sub {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ── INDUSTRIES ──────────────────────────────────────────── */
#industries {
  position: relative;
  padding: var(--section-py) 0 calc(var(--section-py) * 1.2);
  background: #000;
  overflow: hidden;
}

.ind-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 185, 73, .10) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.ind-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
  position: relative;
  z-index: 2;
  padding: 0 var(--section-px);
}

.ind-rows {
  padding: 0 clamp(16px, 3vw, 40px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

/* ── INDUSTRY PANEL — accordion-style height ── */
.ind-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
  transition: flex .55s cubic-bezier(.34, 1.1, .5, 1), height .55s cubic-bezier(.34, 1.1, .5, 1),
    box-shadow .35s, border-color .35s;
  background: linear-gradient(180deg, rgba(8, 6, 4, .88) 60%, rgba(8, 6, 4, .96) 100%);

  /* Collapsed: show just the face — natural compact height */
  flex: 0 0 auto;
  min-height: 0;
  height: 96px;
  /* collapsed height */
  transition: all 300ms linear;

}

.ind-panel.expanded {
  flex: 1 1 auto;
  /* height:400px;          expanded height */
  box-shadow: 0 24px 50px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
}

/* Face */
.ind-face {
  position: absolute;
  inset: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  opacity: 1;
  transition: opacity .2s;
}

.ind-panel.expanded .ind-face {
  opacity: 0;
  pointer-events: none;
}

.ind-badge {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .18em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ind-face-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.15;
  letter-spacing: -.012em;
  color: var(--paper);
}

.ind-face-stat {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ind-face-icon {
  margin-left: auto;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

/* Expanded content */
.ind-expanded {
  position: absolute;
  inset: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  opacity: 0;
  transition: opacity .35s .15s;
  pointer-events: none;
}

.ind-panel.expanded .ind-expanded {
  opacity: 1;
  pointer-events: auto;
}

.ind-exp-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ind-exp-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ind-exp-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex: none;
  display: grid;
  place-items: center;
}

.ind-exp-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.05;
  letter-spacing: -.018em;
  color: var(--paper);
}

.ind-exp-stat {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ind-exp-blurb {
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.45;
}

.ind-uc-title {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  color: var(--dim);
  text-transform: uppercase;
}

.ind-uc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-size: var(--fs-body);
}

.ind-uc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: none;
}

.ind-svc-title {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ind-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 5px;
  border-radius: 999px;
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 500;
  white-space: nowrap;
}

.ind-exp-right {
  flex: 0 0 32%;
  align-self: stretch;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.ind-exp-right img {
  object-fit: contain !important;
}

.ind-cta {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
}

.ind-footer-cta {
  margin-top: var(--gap-lg);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* collapsed face — vertical layout */
.ind-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  /* was: row */
  justify-content: space-between;
  opacity: 1;
  transition: opacity .2s;
}

/* new: top section holds icon + vertical title */
.ind-face-vert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  padding: 14px 0 0 14px;
  gap: 10px;
  flex: 1;
}

/* vertical title */
.ind-face-name {
  /* writing-mode: vertical-rl; */
  /* text-orientation: mixed; */
  /* transform: rotate(180deg); */
  /* reads bottom-to-top */
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--paper);
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-height: 130px; */
}

/* new: image box pinned to bottom */
.ind-face-imgbox {
  flex: none;
  height: 88px;
  margin: 0 8px 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .06);
}

.ind-face-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SPOTLIGHT ───────────────────────────────────────────── */
.spot {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #0c0906 50%, #000 100%);
  padding: clamp(24px, 5vw, 40px) 0 clamp(24px, 5vw, 40px);
  overflow: hidden
}

.spf {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.spot__glow {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(242, 101, 34, .14), transparent 70%)
}


.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.head {
  text-align: center;
  margin-bottom: 24px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: .5
}

.h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.22;
  letter-spacing: -.025em;
  color: var(--paper);
  margin-bottom: 8px
}

.h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--acc), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}



.ticker {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 6, 4, .5);
  margin: 20px 0
}

.tlabel {
  flex: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(242, 101, 34, .14);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc);
  border-right: 1px solid var(--line)
}

.tlabel i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acc);
  animation: pulse 1.8s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 101, 34, .55)
  }

  70% {
    box-shadow: 0 0 0 9px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent
  }
}

.ttrack {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent)
}

.tinner {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  padding-left: 100%;
  animation: marq 89s linear infinite
}

.ticker:hover .tinner {
  animation-play-state: paused
}

.titem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--mut)
}

.titem b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acc)
}

@keyframes marq {
  to {
    transform: translateX(-100%)
  }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 22px
}

.fbtn {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--mut);
  transition: all .22s;
  user-select: none;
  position: relative
}

.fbtn:hover {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .28)
}

.fbtn.active-all,
.fbtn.active-ai,
.fbtn.active-mendix,
.fbtn.active-siemens,
.fbtn.active-altair,
.fbtn.active-industries {
  background: linear-gradient(120deg, #f26522, #f26522cc);
  color: #0a0806;
  border-color: transparent;
  box-shadow: 0 6px 18px #f2652240
}

/* 
    .fbtn.active-ai {
      background: linear-gradient(120deg, #f26522, #f26522cc);
      color: #0a0806;
      border-color: transparent;
      box-shadow: 0 6px 18px #f2652240
    }

    .fbtn.active-mendix {
      background: linear-gradient(120deg, #e9b949, #e9b949cc);
      color: #0a0806;
      border-color: transparent;
      box-shadow: 0 6px 18px #e9b94940
    }

    .fbtn.active-siemens {
      background: linear-gradient(120deg, #2f8fd0, #2f8fd0cc);
      color: #0a0806;
      border-color: transparent;
      box-shadow: 0 6px 18px #2f8fd040
    }

    .fbtn.active-altair {
      background: linear-gradient(120deg, #c92a2a, #c92a2acc);
      color: #0a0806;
      border-color: transparent;
      box-shadow: 0 6px 18px #c92a2a40
    }

    .fbtn.active-industries {
      background: linear-gradient(120deg, #9b6dd6, #9b6dd6cc);
      color: #0a0806;
      border-color: transparent;
      box-shadow: 0 6px 18px #9b6dd640
    } */

/* .bar {
      height: 3px;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      background: rgba(255, 255, 255, .5);
      border-radius: 999px;
      transition: width .1s linear
    } */

.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.fb-card {
  --c: #f26522;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  padding: 20px 20px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  min-height: 180px;
  transition: border-color .25s, transform .25s, background .25s, opacity .4s
}

.fb-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--c) 55%, transparent);
  background: linear-gradient(165deg, color-mix(in srgb, var(--c) 10%, transparent), rgba(255, 255, 255, .01))
}

.fb-card.hidden {
  display: none
}

.fb-card.fade-in {
  animation: fadein .4s both
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.ctop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.ccat {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c);
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 34%, transparent)
}

.ctime {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .05em;
  color: var(--dim)
}

.ctitle {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--paper)
}

.cbody {
  font-size: 16px;
  line-height: 1.5;
  color: var(--mut)
}

.cfoot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 5px
}

.cmeta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dim)
}

.carrow {
  font-family: var(--mono);
  color: var(--c);
  transform: translateX(-4px);
  opacity: 0;
  transition: .25s
}

.card:hover .carrow {
  transform: translateX(0);
  opacity: 1
}

@media(max-width:900px) {
  .fb-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .fb-grid {
    grid-template-columns: 1fr
  }
}

/* ── MARKETPLACE ─────────────────────────────────────────── */
#marketplace {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: #0a0a0a;
  overflow: hidden;
}

.mkt-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.mkt-card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: industryIn .6s ease both;
}

.mkt-count {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
}

.mkt-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--paper);
  letter-spacing: -.01em;
}

.mkt-desc {
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.5;
}

.mkt-link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: #0a0a0a;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(242, 101, 34, .16), transparent 70%);
  pointer-events: none;
}

.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 22px;
}

.contact-eyebrow span {
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  display: block;
}

.contact-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--paper);
}

.contact-p {
  margin-top: 18px;
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 44ch;
}

.contact-info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: var(--fs-body);
}

.contact-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex: none;
  background: rgba(242, 101, 34, .16);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 15px;
}

.contact-form {
  background: linear-gradient(180deg, rgba(20, 16, 8, .85), rgba(8, 6, 2, .95));
  border: 1px solid var(--line2);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 5px !important;
}

.form-label {
  font-family: var(--body);
  font-size: 14px;
  /* letter-spacing: .12em; */
  /* text-transform: uppercase; */
  color: var(--dim);
  margin-bottom: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04) !important; 
  border: 1px solid var(--line2) !important;
  color: var(--paper) !important;
  font-family: var(--body);
  font-size: var(--fs-body);
  outline: none;
  transition: border-color .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

.form-select option {
  background: #16120b;
  color:  #fff !important;
}

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

.form-submit {
  margin-top: 4px;
  padding: 15px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-family: var(--body);
  font-size: clamp(16px, 1.5vw, 17px);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(242, 101, 34, .45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .15s;
}

.form-submit:hover {
  transform: translateY(-1px);
}

.form-note {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .06em;
  color: var(--dim);
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  position: relative;
  background: #000;
  border-top: 1px solid var(--line2);
  padding: clamp(48px, 6vw, 80px) var(--section-px) 36px;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}

.footer-logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 18px;
}

.footer-logo-text .mx {
  color: var(--accent);
}

.footer-p {
  color: var(--mut);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 34ch;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line2);
  color: var(--mut);
  display: grid;
  place-items: center;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s, border-color .2s;
}

.footer-social:hover {
  color: var(--paper);
  border-color: var(--gold);
}

.footer-col-title {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--mut);
  text-decoration: none;
  font-size: var(--fs-body);
  margin-bottom: 10px;
  transition: color .2s;
}

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

.footer-bottom {
  /* max-width: var(--container); */
  /* margin: 40px auto 0; */
  /* padding-top: 24px;
      border-top: 1px solid var(--line); */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-copy {
  font-family: var(--body);
  font-size: var(--fs-mono);
  color: var(--dim);
  letter-spacing: .04em;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .04em;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--paper);
}

/* ── FLOATING AI ─────────────────────────────────────────── */
#floating-ai {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-menu {
  width: 280px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(12, 10, 8, .96);
  border: 1px solid var(--line2);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: detailInY .3s ease;
}

.floating-menu-title {
  font-family: var(--body);
  font-size: var(--fs-mono);
  letter-spacing: .14em;
  color: var(--gold);
  padding: 6px 8px 4px;
}

.floating-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}

.floating-menu a:hover {
  background: rgba(255, 255, 255, .05);
}

.floating-menu-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.floating-menu-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--paper);
}

.floating-menu-sub {
  font-family: var(--body);
  font-size: var(--fs-mono);
  color: var(--dim);
  letter-spacing: .06em;
}

.floating-btn {
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-family: var(--body);
  font-size: var(--fs-sm);
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(242, 101, 34, .5);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

/* ── MODAL ───────────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 52;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(6px);
}

.overlay.show {
  display: flex;
  animation: fade .25s
}

.modal {
  position: relative;
  width: min(540px, 100%) !important;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #16120b, #0b0905) !important;
  border: 1px solid var(--line2) !important;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
  animation: pop .3s;
  display: block !important;
  left: 0 !important;
  right: 0  !important;
  margin: 0 auto;
}

.modal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.02em
}

.modal p {
  color: var(--mut);
  font-size: var(--fs-body);
  margin-top: 6px;
  margin-bottom: 18px;
  line-height: 1.5
}

.modal .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.lbl {
  font-family: var(--body);
  font-size: var(--fs-mono);
  color: var(--dim);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.inp {
  width: 100%;
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid var(--line2) !important;
  border-radius: 11px;
  padding: 8px 13px;
  color: var(--paper) !important;
  font-family: var(--body);
  font-size: var(--fs-body);
  outline: none;
  transition: border-color .2s;
}

.inp:focus {
  border-color: var(--accent)
}

select.inp {
  appearance: none;
  cursor: pointer
}

select.inp option {
  background: #16120b
}

textarea.inp {
  resize: vertical;
  min-height: 78px
}

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

.modal .actions {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.btn-primary {
  flex: 1;
  border: none;
  cursor: pointer;
  border-radius: 11px;
  padding: 13px;
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--fs-body);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 8px 22px rgba(242, 101, 34, .4);
}

.btn-ghost {
  border: 1px solid var(--line2);
  cursor: pointer;
  border-radius: 11px;
  padding: 13px 18px;
  background: none;
  color: var(--mut);
  font-family: var(--body);
  font-size: var(--fs-body);
}

.btn-ghost:hover {
  color: var(--paper)
}

.close {
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  color: var(--dim);
  font-size: 22px;
  background: none;
  border: none
}

.success {
  text-align: center;
  padding: 14px 0
}

.success .tick {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold))
}


/* ── INDUSTRIES ──────────────────────────────────────── */
#industries {
  position: relative;
  padding: var(--section-py) var(--section-px);
  background: #000;
  overflow: hidden;
}

.ind-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(233, 185, 73, .10) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
}

.ind-header {
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 40px);
}

.ind-rows {
  padding: 0 clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ind-row {
  display: flex;
  gap: 8px;
  height: 430px;
}

.ind-panel {
  flex: 1 1 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
  transition: flex .6s cubic-bezier(.34, 1.2, .5, 1), box-shadow .35s, border-color .35s;
  background: linear-gradient(180deg, rgba(8, 6, 4, .88) 60%, rgba(8, 6, 4, .96) 100%);
  height: auto;
}



.ind-face {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  opacity: 1;
  transition: opacity .25s;
}

.ind-panel.expanded .ind-face {
  opacity: 0;
  pointer-events: none;
}

.ind-badge {
  font-family: var(--body);
  font-size: 8.5px;
  letter-spacing: .18em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ind-face-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.012em;
  color: var(--paper);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .7);
}

.ind-panel .ind-face-stat {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: none !important;
}

.ind-panel.expanded .ind-face-stat {
  display: block;
}


.ind-face-icon {
  margin-top: auto;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.ind-expanded {
  position: absolute;
  inset: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.ind-panel.expanded .ind-expanded {
  opacity: 1;
  pointer-events: auto;
}


.ind-exp-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
}

.ind-panel.expanded .ind-exp-left {
  opacity: 1;
}

.ind-exp-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ind-exp-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  flex: none;
  display: grid;
  place-items: center;
}

.ind-exp-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.018em;
  color: var(--paper);
}


.ind-panel.expanded {
  flex: 5 1 0;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.ind-exp-stat {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ind-exp-blurb {
  color: var(--mut);
  font-size: 16px;
  line-height: 1.45;
}

.ind-uc-title {
  font-family: var(--body);
  font-size: 16px;
  /* letter-spacing: .14em; */
  color: var(--dim);
  text-transform: uppercase;
}

.ind-uc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-size: 15px;
}

.ind-uc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: none;
}

.ind-svc-title {
  font-family: var(--body);
  font-size: 16px;
  /* letter-spacing: .14em; */
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ind-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 4px 5px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.ind-exp-right {
  flex: 0 0 36%;
  align-self: stretch;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}

.ind-cta {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
}

.ind-footer-cta {
  margin-top: clamp(32px, 4vw, 56px);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Smooth flex expansion */
.ind-panel {
  transition: flex 500ms cubic-bezier(.34, 1.1, .5, 1),
    border-color .35s ease,
    box-shadow .35s ease;
}

/* Face fades out smoothly */
.ind-face {
  transition: opacity .2s ease;
}

.ind-panel.expanded .ind-face {
  opacity: 0;
  pointer-events: none;
}

/* Expanded content waits for panel to grow, then fades in */
.ind-expanded {
  transition: opacity .25s ease .3s;
  /* ← .3s delay is the key */
  opacity: 0;
  pointer-events: none;
}

.ind-panel.expanded .ind-expanded {
  opacity: 1;
  pointer-events: auto;
}

/* ── SPOTLIGHT ───────────────────────────────────────── */


/* ── MARKETPLACE ─────────────────────────────────────── */
#marketplace {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0a0a0a;
  overflow: hidden;
}

.mkt-header {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 60px);
}

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.mkt-card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: industryIn .6s ease both;
}

.mkt-count {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.03em;
}

.mkt-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  color: var(--paper);
  letter-spacing: -.01em;
}

.mkt-desc {
  color: var(--mut);
  font-size: 13.5px;
  line-height: 1.5;
}

.mkt-link {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ════════════════════════════════════════════════════════════
       RESPONSIVE — TABLET (≤ 1024px)
       ════════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .svc-detail {
    grid-template-columns: 1fr;
  }

  .svc-visual {
    height: 200px;
    border-left: none;
    border-top: 1px solid var(--line);
  }

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

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .stat-cell:nth-child(2),
  .stat-cell:nth-child(4) {
    border-right: none;
  }

  .mkt-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ════════════════════════════════════════════════════════════
       RESPONSIVE — MOBILE (≤ 768px)
       ════════════════════════════════════════════════════════════ */
@media (max-width:991px) {
  :root {
    --section-py: clamp(44px, 7vw, 72px);
    --section-px: clamp(16px, 5vw, 24px);
  }

  /* Nav */
  #subnav {
    display: none;
  }

  nav.desktop {
    display: none;
  }

  .cta-pill .arrow {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 52px);
  }

  /* Services */
  .services-layout {
    grid-template-columns: 1fr;
  }

  .svc-detail {
    grid-template-columns: 1fr;
  }

  .svc-visual {
    height: auto;
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .svc-row {
    transform: none !important;
  }

  .svc-row:hover,
  .svc-row.active {
    transform: none;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell {
    padding: 24px 16px;
  }

  .stat-num {
    font-size: clamp(36px, 11vw, 52px);
  }

  /* Industries */
  .ind-rows {
    padding: 0 16px;
  }

  .ind-row {
    flex-direction: column;
    gap: 6px;
    height: auto;
  }

  .ind-panel {
    width: 100%;
    height: 100% !important;
    flex: 0 0 auto;
    transform: none !important;
    flex:  none !important;
  }

  .ind-panel.expanded {
    height: 420px ;
    position: static;
  }

  .ind-expanded {
    flex-direction: column;
    position: static;
    opacity: 1;
  }

  .ind-exp-right {
    display: none;
  }

  .ind-face {
    display: none;
  }

  .ind-badge {
    display: none;
  }

  .ind-face-name {
    display: none;
  }

  .ind-exp-left {
    gap: 16px
  }


  /* Marketplace */
  .mkt-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .mkt-card {
    padding: 18px 14px;
  }

  .mkt-count {
    font-size: 28px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contact-form {
    padding: 20px 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Modal */
  .modal .grid {
    grid-template-columns: 1fr;
  }

  .drawer-body {
    grid-template-columns: 1fr;
  }

  /* Floating */
  #floating-ai {
    right: 14px;
    bottom: 14px;
  }

  .svc-visual {
    display: none;
  }

  .ind-exp-left {
    opacity: 1;
  }

  .ind-face-icon {
    display: none;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
.svc-icon{
  display: none;
}
.svc-arrow{display: none;}
  .svc-kicker {
    display: none;
  }

  .svc-row {
    width: 48%;
    justify-content: center;
  }
  .svc-name{
    text-align: center;
  }
}


/* ════════════════════════════════════════════════════════════
       RESPONSIVE — SMALL MOBILE (≤ 480px)
       ════════════════════════════════════════════════════════════ */
@media (max-width:480px) {
  .mkt-grid {
    grid-template-columns: 1fr !important;
  }

  .spot-num {
    font-size: 80px;
  }
}

.header-trans .header-nav {
  justify-content: space-between;
}

/* ////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////// */

/* ---------- HEADER SHELL ---------- */
.siteheader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51
}

/* utility strip */
.ubar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 0 clamp(14px, 3vw, 32px);
  background: rgba(0, 0, 0, .8);
  border-bottom: 1px solid var(--line);
  font-family: var(--body);
  font-size: 12.5px
}

.ubar a {
  color: var(--dim);
  transition: color .2s
}

.ubar a:hover {
  color: var(--paper)
}

@media(max-width:980px) {
  .ubar {
    display: none
  }
}

/* main bar */
.mbar {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(14px, 3vw, 32px);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line)
}

.mbar__logo {
  flex-shrink: 0;
}
.mbar__logo img {
  height: 40px;
  width: 150px;
  object-fit: contain;
}

.mnav {
  margin-left: 28px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500
}

.mnav__item {
  position: static
}

.mnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 11px;
  border-radius: 8px;
  color: #ffffffc5;
  transition: color .2s;
  font-size: 14px;
}

.mnav__item:hover .mnav__link,
.mnav__item.active .mnav__link,
.mnav__link.lit {
  color: var(--paper)
}

.mnav__link .star {
  color: var(--accent);
  font-size: 12px
}

.mnav__link .badge {
  font-family: var(--mono);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase
}

.mnav__link .car {
  font-size: 9px;
  color: var(--dim);
  transition: transform .2s
}

.mnav__item:hover .mnav__link .car,
.mnav__item.active .mnav__link .car {
  transform: rotate(180deg)
}

@media(max-width:980px) {
  .mnav {
    display: none
  }
}

.mbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px
}

.mbar__cta {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242, 101, 34, .35);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.mbar__cta .ar {
  font-family: var(--mono)
}

.mtoggle {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--paper);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: grid;
  place-items: center
}

.mtoggle div {
  width: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mtoggle span {
  height: 1.5px;
  background: var(--paper);
  border-radius: 1px;
  transition: transform .25s, opacity .15s
}

.mtoggle.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg)
}

.mtoggle.open span:nth-child(2) {
  opacity: 0
}

.mtoggle.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg)
}

@media(max-width:980px) {
  .mbar__cta .full {
    display: none
  }

  .mbar__cta .ar {
    display: none
  }

  .mbar__cta::after {
    content: 'Start'
  }
}

/* flow underline */
.mbar__flow {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1.5px;
  width: 100%;
  opacity: .75;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  background-size: 50% 100%;
  animation: flow 6s linear infinite
}

@keyframes flow {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200% 0
  }
}

/* ---------- MEGA PANELS ---------- */
.mega {
  display: none;
  background: #0a0907;
  border-bottom: 1px solid var(--line2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .6)
}

.mega.open {
  display: block;
  animation: megaIn .25s ease
}

@keyframes megaIn {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.mega__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: 36px;
  align-items: start
}

.mega__inner--1 {
  grid-template-columns: 1.1fr 2.2fr
}

.mega__inner--3 {
  grid-template-columns: 1.1fr repeat(3, 1fr)
}

.mega__feat {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  align-self: stretch;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line2)
}

.mega__feat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .85))
}

.mega__feat-txt {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2
}

.mega__feat-k {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.mega__feat-h {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.01em
}

.mega__col-h {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px
}

.mega__col a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--mut);
  font-size: 13.5px;
  font-weight: 500;
  transition: background .15s, color .15s, padding-left .15s
}

.mega__col a:hover {
  background: rgba(255, 255, 255, .05);
  color: var(--paper);
  padding-left: 15px
}

/* ---------- SLIDE-OUT DRAWER (hamburger) ---------- */
.drawer-bg {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s
}

.drawer-bg.open {
  opacity: 1;
  visibility: visible
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(520px, 92vw);
  z-index: 70;
  background: rgba(10, 10, 10, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--line2);
  box-shadow: -30px 0 80px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.drawer.open {
  transform: translateX(0)
}

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  height: 56px;
  flex: none
}

.drawer__head .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim)
}

.drawer__close {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--paper);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1
}

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px
}

@media(max-width:560px) {
  .drawer__body {
    grid-template-columns: 1fr
  }
}

.drawer__sec {
  padding: 18px 8px 8px;
  border-bottom: 1px solid var(--line)
}

.drawer__sec-h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px
}

.drawer__sec a {
  display: block;
  padding: 7px 0;
  color: var(--mut);
  font-size: 14px;
  transition: color .15s, padding-left .15s
}

.drawer__sec a:hover {
  color: var(--paper);
  padding-left: 5px
}

/* demo content (delete on integration) */
.page-body {
  padding-top: 120px;
  padding-inline: clamp(14px, 3vw, 32px);
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em
}


.megawrap {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 40;
}

.mega {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s;
}

.mega.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  display: block;
}

/* ---------- FOOTER ---------- */
.sitefooter{position:relative;background:#000;border-top:1px solid var(--line2);
  padding:80px clamp(40px,5vw,80px) 36px}
.sitefooter__inner{max-width:1240px;margin:0 auto}
.sitefooter__grid{display:grid;grid-template-columns:1.4fr repeat(4,1fr);gap:40px}
@media(max-width:860px){.sitefooter__grid{grid-template-columns:1fr 1fr;gap:36px}}
@media(max-width:560px){.sitefooter__grid{grid-template-columns:1fr;gap:34px}}

.foot-brand__logo{height:28px;width:auto;margin-bottom:18px}
.foot-brand p{color:var(--mut);font-size:13.5px;line-height:1.6;max-width:34ch}
.foot-social{display:flex;gap:10px;margin-top:20px}
.foot-social a{width:36px;height:36px;border-radius:9px;border:1px solid var(--line2);color:var(--mut);
  display:grid;place-items:center;font-size:13px;font-family:var(--body);transition:color .2s,border-color .2s}
.foot-social a:hover{color:var(--paper);border-color:var(--gold)}

.foot-col__h{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.foot-col__links{display:flex;flex-direction:column;gap:10px}
.foot-col__links a{color:var(--mut);font-size:13.5px;transition:color .2s}
.foot-col__links a:hover{color:var(--paper)}

.sitefooter__bottom{margin-top:56px;padding-top:24px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
@media(max-width:560px){.sitefooter__bottom{flex-direction:column;align-items:flex-start}}
.sitefooter__copy{font-family:var(--mono);font-size:11px;color:var(--dim);letter-spacing:.04em}
.sitefooter__legal{display:flex;gap:22px}
.sitefooter__legal a{font-family:var(--mono);font-size:11px;letter-spacing:.04em;color:var(--dim);transition:color .2s}
.sitefooter__legal a:hover{color:var(--paper)}

/* demo content (delete on integration) */
.page-body{padding:120px clamp(40px,5vw,80px);color:var(--dim);font-family:var(--mono);font-size:12px;letter-spacing:.06em}




.error-message {
    color: #dc2626;
    font-size: 13px;
    /* min-height: 18px; */
  }
 
  .input-error {
    border: 1px solid #dc2626 !important;
  }
 
  #responseMessage {
    margin-top: 15px;
    font-weight: 600;
  }
 
  #leadResponseMessage {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
  }
 