:root {
  --ink: #16181b;
  --ink-soft: #53565c;
  --ink-faint: #5f6268;
  --paper: #fbfaf8;
  --mist: #f2efe9;
  --card: #ffffff;
  --line: #e6e1d8;
  --line-soft: #efebe3;
  --brand: #ec6a2a;
  --brand-text: #a83e10;
  --brand-deep: #c8501a;
  --brand-btn: #b8480f;
  --brand-btn-hover: #9c3c0f;
  --brand-tint: #fdece0;
  --brand-ink: #7a350f;
  --brand-ondark: #ff9457;
  --night: #131417;
  --night-2: #1b1d22;
  --night-line: #33353b;
  --night-text: #f2f0ec;
  --night-sub: #a7a9ae;
  --display: 'Urbanist', 'Segoe UI', Helvetica, Arial, sans-serif;
  --body: 'Urbanist', 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'Urbanist', 'Segoe UI', Helvetica, Arial, sans-serif;
  --container: 1440px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(22,24,27,0.04), 0 1px 1px rgba(22,24,27,0.03);
  --shadow-2: 0 12px 32px -12px rgba(22,24,27,0.16);
  --shadow-3: 0 24px 60px -20px rgba(22,24,27,0.28);
  --ease: cubic-bezier(.16,1,.3,1);
}

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

* {
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
  font-weight: 700;
  letter-spacing: -0.01em;
}
button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
}

section {
  position: relative;
}
.section-pad {
  padding: 112px 0;
}
.section-pad-sm {
  padding: 88px 0;
}
@media (max-width: 900px) {
  .section-pad {
    padding: 76px 0;
  }
  .section-pad-sm {
    padding: 64px 0;
  }
}
@media (max-width: 560px) {
  .section-pad {
    padding: 60px 0;
  }
  .section-pad-sm {
    padding: 52px 0;
  }
}

.bg-paper {
  background: var(--paper);
}
.bg-mist {
  background: var(--mist);
}
.bg-night {
  background: var(--night);
  color: var(--night-text);
}
.bg-night h1,
.bg-night h2,
.bg-night h3,
.bg-night h4 {
  color: var(--night-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-text);
  margin: 0 0 16px;
}
.bg-night .eyebrow {
  color: var(--brand-ondark);
}

.h2 {
  font-size: clamp(30px,3.8vw,44px);
  line-height: 1.16;
}
.h2 em,
.h1 em {
  font-style: normal;
  color: var(--brand-text);
}
.bg-night .h2 em,
.bg-night .h1 em {
  color: var(--brand-ondark);
}
.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.bg-night .lede {
  color: var(--night-sub);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head .side {
  flex: 0 0 auto;
  max-width: 340px;
  padding-bottom: 2px;
}
@media (max-width: 820px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-head .side {
    max-width: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .25s var(--ease);
}
.btn-primary {
  background: var(--brand-btn);
  color: #fff;
  box-shadow: 0 1px 2px rgba(22,24,27,0.06);
}
.btn-primary:hover {
  background: var(--brand-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(184,72,15,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--mist);
  transform: translateY(-2px);
}
.bg-night .btn-ghost {
  color: var(--night-text);
  border-color: var(--night-line);
}
.bg-night .btn-ghost:hover {
  border-color: #8a8d94;
  background: rgba(255,255,255,0.04);
}
.btn:hover svg {
  transform: translateX(2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
}
.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease);
}
.link-arrow:hover {
  color: var(--brand-deep);
  border-color: var(--brand-deep);
  gap: 11px;
}
.bg-night .link-arrow {
  color: var(--night-text);
  border-color: var(--night-line);
}
.bg-night .link-arrow:hover {
  color: #ff9457;
  border-color: #ff9457;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

header.site {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251,250,248,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid #EEEFF1;
  border-top: none;
  border-radius: 0 0 22px 22px;
  transition: box-shadow .2s var(--ease);
}
header.site.scrolled {
  box-shadow: 0 8px 24px -16px rgba(22,24,27,0.25);
}

section[id],
.ind-row[id] {
  scroll-margin-top: 166px;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 1080px) {
  .brand-logo {
    height: 60px;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item {
  position: relative;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 15px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
  transition: color .18s var(--ease);
}
.nav-link svg {
  width: 14px;
  height: 14px;
  color: var(--ink-faint);
  transition: transform .2s var(--ease), color .18s var(--ease);
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--brand-deep);
}
.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
  color: var(--brand-deep);
}

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-3);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  z-index: 50;
}
.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%,0);
}
.mega-grid {
  display: grid;
  gap: 28px;
}
.mega-col-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}
.mega-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-list a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 9px;
  font-size: 15.3px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  transition: background .2s var(--ease),color .2s var(--ease);
}
.mega-list a:hover {
  background: var(--mist);
  color: var(--brand-ink);
}
.mega-ico {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease);
}
.mega-list a svg {
  width: 16px;
  height: 16px;
  color: var(--brand-deep);
  flex: 0 0 auto;
  transition: color .18s var(--ease);
}
.mega-list a:hover .mega-ico {
  background: var(--brand);
}
.mega-list a:hover svg {
  color: #fff;
}
.mega.mega-solutions {
  width: 700px;
}
.mega.mega-solutions .mega-grid {
  grid-template-columns: 1fr 1fr;
}
.mega.mega-cyber {
  width: 640px;
}
.mega.mega-cyber .mega-grid {
  grid-template-columns: 1fr 1fr;
}
.mega.mega-industries {
  width: 580px;
}
.mega.mega-industries .mega-grid {
  grid-template-columns: 1fr 1fr;
}
.mega.mega-company {
  width: 300px;
  left: auto;
  right: 0;
  transform: translate(0,8px);
}
.mega.mega-company:hover,
.nav-item:hover .mega.mega-company {
  transform: translate(0,0);
}
.mega.mega-company .mega-grid {
  grid-template-columns: 1fr;
}
.mega-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nav-burger {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  transition: color .18s var(--ease);
}
.nav-burger:hover {
  color: var(--brand);
}
.nav-burger svg {
  width: 33px;
  height: 33px;
}

@media (max-width: 1080px) {
  .nav-main,
  .nav-cta .btn-ghost,
  .nav-cta .btn-primary {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19,20,23,0.5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px,88vw);
  background: #fff;
  z-index: 301;
  box-shadow: -24px 0 60px rgba(0,0,0,0.25);
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex;
  flex-direction: column;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
}
.drawer-close svg {
  width: 18px;
  height: 18px;
}
.drawer-body {
  padding: 12px 10px;
  overflow-y: auto;
  flex: 1;
}
.dacc {
  border-bottom: 1px solid var(--line-soft);
}
.dacc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.dacc-head svg {
  width: 16px;
  height: 16px;
  transition: transform .2s var(--ease);
  color: var(--ink-faint);
}
.dacc.open .dacc-head svg {
  transform: rotate(180deg);
}
.dacc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s var(--ease);
}
.dacc.open .dacc-panel {

  max-height: 700px;
}
.dacc-panel a {
  display: block;
  padding: 9px 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.dacc-group-title {
  padding: 14px 14px 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-text);
}
.dacc-group-title:not(:first-child) {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.dacc-simple>a {
  display: block;
  padding: 16px 12px;
  font-weight: 600;
  font-size: 16px;
}
.drawer-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero {
  padding: 64px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-grid > div:first-child {
  padding-top: 38px;
}
@media (max-width: 520px) {
  .hero-grid > div:first-child {
    padding-top: 20px;
  }
}
.hero h1 {
  font-size: clamp(40px,5.4vw,68px);
  line-height: 1.08;
  background: linear-gradient(100deg, var(--brand-text) 0%, var(--brand) 55%, var(--brand-ondark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-subhead {
  margin-top: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(19px,2.3vw,24px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 600px;
}
.hero-intro {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-faint);
  max-width: 520px;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-ctas .btn {
  padding: 15px 28px;
  font-size: 16.5px;
}
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 28px 0 56px;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero-visual-lock {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-lock {
  position: relative;
  z-index: 1;
  width: min(400px, 92%);
  height: auto;
}
.hero-lock-stop-1 {
  animation: heroLockFlicker1 2.8s ease-in-out infinite;
}
.hero-lock-stop-2 {
  animation: heroLockFlicker2 2.4s ease-in-out infinite;
}
.hero-lock-stop-3 {
  animation: heroLockFlicker3 3.2s ease-in-out infinite;
}
@keyframes heroLockFlicker1 {
  0%, 100% { stop-color: #a83e10; }
  30% { stop-color: #c8501a; }
  60% { stop-color: #8a2e08; }
}
@keyframes heroLockFlicker2 {
  0%, 100% { stop-color: #ec6a2a; }
  40% { stop-color: #ff8a3d; }
  70% { stop-color: #d4581f; }
}
@keyframes heroLockFlicker3 {
  0%, 100% { stop-color: #ff9457; }
  35% { stop-color: #ffc266; }
  65% { stop-color: #ff7a33; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lock-stop-1,
  .hero-lock-stop-2,
  .hero-lock-stop-3 {
    animation: none;
  }
}
@media (max-width: 1080px) {
  .hero-visual-lock {
    min-height: 300px;
    margin-top: 12px;
  }
  .hero-lock {
    width: min(300px, 78%);
  }
}
@media (max-width: 520px) {
  .hero-visual-lock {
    min-height: 260px;
  }
}

.hero-v2 h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 22px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #1b2330;
  -webkit-text-fill-color: #1b2330;
}
.hero-v2 h1 em {
  font-style: normal;
  color: var(--brand);
  -webkit-text-fill-color: var(--brand);
}

.hero-v2 .eyebrow {
  font-weight: 700;
  letter-spacing: .09em;
  color: #c8501a;
  margin: 0 0 18px;
}
.hero-v2 .lede {
  font-size: 18px;
  line-height: 1.65;
  color: #5b6472;
  max-width: 46ch;
  margin: 0 0 34px;
}

.hero-visual-img {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(20, 22, 26, 0.35);
  aspect-ratio: 4 / 3;
}
.hero-visual-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1080px) {
  .hero-visual-img {
    order: -1;
  }
}

.hv-dots {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(var(--line) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 72%);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 40px;
  padding: 26px 0;
}
.trust-row p {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-right: 6px;
}
.trust-row .tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-row .tick svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.grid {
  display: grid;
  gap: 22px;
}
.grid-2 {
  grid-template-columns: repeat(2,1fr);
}
.grid-3 {
  grid-template-columns: repeat(3,1fr);
}
.grid-4 {
  grid-template-columns: repeat(4,1fr);
}
@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-2);
  border-color: #ded8cc;
  transform: translateY(-3px);
}
.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .25s var(--ease);
}
.icon-chip svg {
  width: 22px;
  height: 22px;
  color: var(--brand-deep);
  transition: color .2s var(--ease);
}
.card h4 {
  font-size: 17.5px;
  margin-bottom: 9px;
  line-height: 1.3;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.card .tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.bg-night .card {
  background: var(--night-2);
  border-color: var(--night-line);
}
.bg-night .card p {
  color: var(--night-sub);
}
.bg-night .card:hover {
  border-color: #494c54;
}
.bg-night .icon-chip {
  background: rgba(236,106,42,0.14);
}
.bg-night .icon-chip svg {
  color: #ff9457;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .03em;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid var(--night-line);
  color: var(--night-text);
  background: var(--night-2);
}

.orbit-wrap {
  display: grid;
  grid-template-columns: minmax(280px,540px) 1fr;
  gap: 88px;
  align-items: center;
  margin-top: 32px;
}
.orbit {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.orbit::before {
  content: "";
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle, rgba(236,106,42,0.16), rgba(236,106,42,0) 68%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.orbit-path {
  position: absolute;
  inset: 14%;
  border: 1px dashed var(--night-line);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: orbitSpin 60s linear infinite;
}
.orbit-spokes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
.orbit-spokes line {
  stroke: var(--night-line);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  transition: stroke .3s var(--ease);
}
.orbit-spokes line.is-active {
  stroke: var(--brand);
  stroke-dasharray: 5 7;
  animation: spokeFlow 1s linear infinite;
}
.orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 32%;
  height: 32%;
  border-radius: 50%;
  background: var(--night-2);
  border: 1px solid var(--night-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  z-index: 2;
  animation: hubPulse 3.2s ease-in-out infinite;
}
.orbit-hub svg {
  width: 20px;
  height: 20px;
  color: #ff9457;
}
.orbit-hub span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--night-text);
  line-height: 1.35;
}
.orbit-node {
  position: absolute;
  width: 66px;
  height: 66px;
  margin: -33px 0 0 -33px;
  border-radius: 50%;
  background: var(--night);
  border: 1px solid var(--night-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 3;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.orbit-node::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  opacity: 0;
  pointer-events: none;
}
.orbit-node.is-active::after {
  animation: nodePing 1.8s ease-out infinite;
}
.orbit-node svg {
  width: 19px;
  height: 19px;
  color: #ff9457;
  transition: color .3s var(--ease);
}
.orbit-node-num {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--night-sub);
  transition: color .3s var(--ease);
}
.orbit-node-0 {
  top: 0%;
  left: 50%;
}
.orbit-node-1 {
  top: 50%;
  left: 100%;
}
.orbit-node-2 {
  top: 100%;
  left: 50%;
}
.orbit-node-3 {
  top: 50%;
  left: 0%;
}
.orbit-node:hover,
.orbit-node:focus-visible,
.orbit-node.is-active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(236,106,42,0.14), 0 8px 20px -6px rgba(236,106,42,0.55);
}
.orbit-node:hover svg,
.orbit-node:focus-visible svg,
.orbit-node.is-active svg {
  color: #fff;
}
.orbit-node:hover .orbit-node-num,
.orbit-node:focus-visible .orbit-node-num,
.orbit-node.is-active .orbit-node-num {
  color: #fff;
}
.orbit-caption {
  position: relative;
  min-height: 230px;
}
.orbit-pane {
  display: none;
}
.orbit-pane.is-active {
  display: block;
  animation: solPaneIn .4s var(--ease);
}
.orbit-pane-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ff9457;
  margin-bottom: 14px;
}
.orbit-pane h4 {
  font-size: 31px;
  line-height: 1.26;
  margin-bottom: 17px;
  color: var(--night-text);
}
.orbit-pane p {
  font-size: 18.5px;
  line-height: 1.72;
  color: var(--night-sub);
  max-width: 560px;
}
.orbit-pane-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 700;
  font-size: 17px;
  color: #ff9457;
}
.orbit-pane-link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease);
}
.orbit-pane-link:hover svg {
  transform: translateX(4px);
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spokeFlow {
  to {
    stroke-dashoffset: -24;
  }
}
@keyframes hubPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(236,106,42,0.22);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(236,106,42,0);
  }
}
@keyframes nodePing {
  0% {
    transform: scale(1);
    opacity: .55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@media (max-width: 860px) {
  .orbit-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .orbit-caption {
    text-align: center;
    min-height: 0;
  }
  .orbit-pane p {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 520px) {
  .orbit {
    max-width: 280px;
  }
  .orbit-node {
    width: 54px;
    height: 54px;
    margin: -27px 0 0 -27px;
  }
  .orbit-node svg {
    width: 17px;
    height: 17px;
  }
  .orbit-hub span {
    font-size: 9px;
  }
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.stat-card:hover {
  border-color: #ded8cc;
  box-shadow: var(--shadow-1);
  transform: translateY(-3px);
}
.stat-card b {
  display: block;
  font-family: var(--display);
  font-size: 36px;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-faint);
  font-family: var(--mono);
  letter-spacing: .03em;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mini-item {
  border-left: 3px solid var(--brand);
  padding-left: 18px;
  transition: border-color .2s var(--ease);
}
.mini-item:hover {
  border-color: var(--brand-deep);
}
.mini-item p {
  font-size: 15px;
}

.about-quote {
  background: var(--night);
  border-radius: var(--radius-md);
  padding: 28px;
}
.about-quote p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}

.banner {
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.banner p.lead {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.banner p.lead em {
  font-style: normal;
  color: var(--brand-deep);
}
.banner p.sub {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}

.converge {
  position: relative;
  background: var(--night);
  color: var(--night-text);
  border-radius: var(--radius-lg);
  padding: 52px 40px 46px;
  overflow: hidden;
}
.converge::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  width: 56%;
  height: 46%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236,106,42,0.16), rgba(236,106,42,0) 70%);
  pointer-events: none;
}
.converge::after {
  content: "";
  position: absolute;
  bottom: -22%;
  left: 50%;
  width: 64%;
  height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(236,106,42,0.14), rgba(236,106,42,0) 70%);
  pointer-events: none;
}
.converge-top,
.converge-bottom {
  position: relative;
  display: flex;
  justify-content: center;
}
.converge-hub {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.45);
}
.converge-hub svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.converge-hub-final {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 34px -10px rgba(236,106,42,0.55);
}
.converge-links {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  overflow: visible;
}
.converge-links path {
  fill: none;
  stroke: var(--night-line);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.converge-links circle {
  fill: var(--brand);
  opacity: .9;
}
.converge-pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.converge-pillar {
  background: var(--night-2);
  border: 1px solid var(--night-line);
  border-radius: 14px;
  padding: 26px 20px 24px;
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.converge-pillar:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}
.converge-pillar-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(236,106,42,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.converge-pillar-icon svg {
  width: 21px;
  height: 21px;
  color: #ff9457;
}
.converge-pillar h4 {
  font-size: 16.5px;
  margin-bottom: 16px;
  color: var(--night-text);
}
.converge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}
.converge-tags span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  color: var(--night-sub);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--night-line);
  padding: 6px 11px;
  border-radius: 999px;
}
@media (max-width: 760px) {
  .converge {
    padding: 40px 22px 34px;
  }
  .converge-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .converge-links {
    display: none;
  }
  .converge-top {
    margin-bottom: 22px;
  }
  .converge-bottom {
    margin-top: 22px;
  }
}

.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink-soft);
  letter-spacing: .01em;
  transition: border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.partner-tile:hover {
  border-color: var(--brand);
  color: var(--ink);
  box-shadow: var(--shadow-1);
  transform: translateY(-3px);
}
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 64px;
}
.partner-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.92;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.partner-logo:hover {
  transform: translateY(-3px);
  opacity: 1;
}
@media (max-width: 520px) {
  .partner-grid {
    gap: 28px 36px;
  }
  .partner-logo {
    height: 42px;
    max-width: 120px;
  }
}

.sol-cat-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.sol-cat-num {
  display: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  color: var(--line);
  line-height: 1;
}
.sol-cat-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: none;
  align-items: center;
  justify-content: center;
}
.sol-cat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-deep);
}
.sol-cat-head h3 {
  font-size: clamp(24px,3.2vw,36px);
  line-height: 1.1;
  color: #c98862;
}
@media (max-width: 520px) {
  .sol-cat-head {
    gap: 14px;
  }
  .sol-cat-icon {
    width: 38px;
    height: 38px;
  }
  .sol-cat-icon svg {
    width: 19px;
    height: 19px;
  }
}

.sol-switcher {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.sol-switch-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.sol-switch-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 6px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .25s var(--ease), background .25s var(--ease);
}
.sol-switch-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .25s var(--ease);
}
.sol-switch-num {
  display: none;
  flex: 0 0 auto;
  width: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-faint);
  transition: color .25s var(--ease);
}
.sol-switch-icon-sm {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  transition: color .25s var(--ease);
}
.sol-switch-icon-sm svg {
  width: 18px;
  height: 18px;
}
.sol-switch-title {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.sol-switch-chevron {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.sol-switch-item:hover,
.sol-switch-item:focus-visible,
.sol-switch-item.is-active {
  background: var(--mist);
  padding-left: 14px;
}
.sol-switch-item:hover::before,
.sol-switch-item:focus-visible::before,
.sol-switch-item.is-active::before {
  background: var(--brand);
}
.sol-switch-item:hover .sol-switch-num,
.sol-switch-item:focus-visible .sol-switch-num,
.sol-switch-item.is-active .sol-switch-num,
.sol-switch-item:hover .sol-switch-icon-sm,
.sol-switch-item:focus-visible .sol-switch-icon-sm,
.sol-switch-item.is-active .sol-switch-icon-sm {
  color: var(--brand);
}
.sol-switch-item:hover .sol-switch-title,
.sol-switch-item:focus-visible .sol-switch-title,
.sol-switch-item.is-active .sol-switch-title {
  color: var(--ink);
}
.sol-switch-item:hover .sol-switch-chevron,
.sol-switch-item:focus-visible .sol-switch-chevron,
.sol-switch-item.is-active .sol-switch-chevron {
  opacity: 1;
  transform: translateX(0);
}
.sol-switch-preview {
  position: sticky;
  top: 110px;
  min-height: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px;
}
.sol-switch-pane {
  display: none;
}
.sol-switch-pane.is-active {
  display: block;
  animation: solPaneIn .4s var(--ease);
}
@keyframes solPaneIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sol-switch-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-switch-icon svg {
  width: 27px;
  height: 27px;
  color: var(--brand-deep);
}
.sol-switch-pane h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--ink);
}
.sol-switch-pane p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
}
.sol-switch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--brand-deep);
}
.sol-switch-link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease);
}
.sol-switch-link:hover svg {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .sol-switcher {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sol-switch-preview {
    position: static;
    min-height: 0;
    padding: 32px 28px;
  }
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
@media (max-width: 900px) {
  .ai-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width: 560px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}
.ai-tile {
  position: relative;
  padding: 6px 30px 6px 0;
  border-left: 1px solid var(--line);
  margin-left: 28px;
}
.ai-tile:first-child {
  border-left: none;
  margin-left: 0;
}
@media (max-width: 900px) {
  .ai-tile {
    border-left: none;
    margin-left: 0;
    padding-right: 0;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .ai-tile:first-child {
    border-top: none;
    padding-top: 6px;
  }
}
.ai-num {
  display: none;
  position: absolute;
  top: -14px;
  right: 24px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 60px;
  color: var(--line);
  line-height: 1;
  z-index: 0;
  user-select: none;
  transition: color .3s var(--ease);
}
@media (max-width: 900px) {
  .ai-num {
    right: 0;
  }
}
.ai-tile-inner {
  position: relative;
  z-index: 1;
  padding-left: 28px;
}
.ai-tile:first-child .ai-tile-inner {
  padding-left: 0;
}
@media (max-width: 900px) {
  .ai-tile-inner {
    padding-left: 0;
  }
}
.ai-icon {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .25s var(--ease);
}
.ai-icon svg {
  width: 23px;
  height: 23px;
  color: var(--brand-deep);
  transition: color .25s var(--ease);
}
.ai-tile h4 {
  font-size: 17px;
  margin-bottom: 9px;
  line-height: 1.3;
}
.ai-tile p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.ai-tile:hover .ai-num {
  color: var(--brand-tint);
}
.ai-tile:hover .ai-icon {
  background: var(--brand);
}
.ai-tile:hover .ai-icon svg {
  color: #fff;
}

.ot-list {
  display: flex;
  flex-direction: column;
}
.ot-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 4px;
  border-top: 1px solid var(--night-line);
  transition: background .22s var(--ease), padding-left .22s var(--ease);
}
.ot-list .ot-row:last-child {
  border-bottom: 1px solid var(--night-line);
}
.ot-row:hover {
  background: rgba(236,106,42,0.08);
  padding-left: 14px;
}

.ind-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 264px;
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  background: var(--mist);
  border: 1px solid transparent;
  overflow: hidden;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.ind-num {
  display: none;
  position: absolute;
  top: 26px;
  right: 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-faint);
  opacity: .45;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.ind-card .icon-chip {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 22px;
  transition: background .25s var(--ease);
}
.ind-card .icon-chip svg {
  width: 23px;
  height: 23px;
}
.ind-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ind-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1 1 auto;
}
.ind-card-foot {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  transition: border-color .25s var(--ease);
}
.ind-badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-text);
  background: var(--brand-tint);
  padding: 5px 10px;
  border-radius: 6px;
}
.ind-card-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease);
}
.ind-card-arrow svg {
  width: 15px;
  height: 15px;
}
.ind-card:hover {
  background: #fff;
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
  border-color: var(--line);
}
.ind-card:hover .ind-card-foot {
  border-color: var(--line);
}
.ind-card:hover .icon-chip {
  background: var(--brand);
}
.ind-card:hover .icon-chip svg {
  color: #fff;
}
.ind-card:hover .ind-num {
  opacity: .9;
  color: var(--brand);
}
.ind-card:hover .ind-card-arrow {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(-45deg);
}

.why-list {
  display: flex;
  flex-direction: column;
}
.why-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.why-list .why-row:last-child {
  border-bottom: 1px solid var(--line);
}
.why-index {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink-faint);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.why-index svg {
  width: 18px;
  height: 18px;
  transition: color .25s var(--ease);
}
.why-row:hover .why-index {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.why-row h4 {
  font-size: 18.5px;
  margin-bottom: 8px;
}
.why-row p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 600px;
}

.cs-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cs-card:hover {
  box-shadow: var(--shadow-2);
  border-color: #ded8cc;
  transform: translateY(-3px);
}
.cs-visual {
  height: 168px;
  position: relative;
  background: linear-gradient(135deg,var(--night) 0%, #24262c 100%);
  overflow: hidden;
}
.cs-visual .hv-dots {
  opacity: .28;
  mask-image: radial-gradient(circle at 30% 30%, black, transparent 75%);
  transition: transform .5s var(--ease);
}
.cs-card:hover .cs-visual .hv-dots {
  transform: scale(1.12);
}
.cs-visual .cs-mark {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: #ff9457;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cs-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cs-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-tint);
  padding: 5px 10px;
  border-radius: 6px;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.cs-card:hover .cs-tag {
  background: var(--brand-deep);
  color: #fff;
}
.cs-body h4 {
  font-size: 18px;
  line-height: 1.35;
}
.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-faint);
}
.cs-meta b {
  color: var(--ink-soft);
  font-weight: 600;
}
.cs-status {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-faint);
  font-family: var(--mono);
}

.bl-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.bl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.bl-card:hover {
  border-color: #ded8cc;
  box-shadow: var(--shadow-1);
  transform: translateY(-3px);
}
.bl-card:hover::before {
  transform: scaleX(1);
}
.bl-topic {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.bl-topic svg {
  width: 13px;
  height: 13px;
  color: var(--brand);
  transition: color .22s var(--ease);
}
.bl-card:hover .bl-topic svg {
  color: var(--brand-deep);
}
.bl-card h4 {
  font-size: 18px;
  line-height: 1.4;
}
.bl-card p {
  font-size: 15px;
  color: var(--ink-soft);
}

.cta-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--brand);
  padding: 84px 40px;
  text-align: center;
}
.cta-wrap .cta-dots {
  opacity: .14;
}
.cta-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content .eyebrow {
  justify-content: center;
}
.cta-content .lede {
  margin: 16px auto 0;
}
.cta-content .hero-ctas {
  margin-top: 32px;
  justify-content: center;
}
@media (max-width: 520px) {
  .cta-wrap {
    padding: 56px 24px;
    border-radius: 12px;
  }
  .cta-content .hero-ctas .btn {
    width: 100%;
  }
}

footer.site {
  background: #0e0f11;
  color: var(--night-sub);
  padding-top: 80px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--night-line);
}
.foot-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--night-sub);
  max-width: 280px;
  margin-top: 16px;
}
.foot-brand .brand-logo {
  height: 58px;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7d8087;
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col a {
  font-size: 14.5px;
  color: var(--night-sub);
  transition: color .15s var(--ease);
}
.foot-col a:hover {
  color: #fff;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--night-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-social a svg {
  width: 16px;
  height: 16px;
}
.foot-social a:hover {
  border-color: #fff;
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13.5px;
  color: #7d8087;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom-links {
  display: flex;
  gap: 22px;
}
@media (max-width: 980px) {
  .foot-top {
    grid-template-columns: repeat(3,1fr);
    row-gap: 40px;
  }
  .foot-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .foot-top {
    grid-template-columns: repeat(2,1fr);
  }
  footer.site {
    padding-top: 56px;
  }
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6);
  z-index: 250;
  transition: transform .2s var(--ease);
}
.wa-float:hover {
  transform: scale(1.06);
}
.wa-float svg {
  width: 25px;
  height: 25px;
  color: #fff;
}
@media (max-width: 560px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 21px;
    height: 21px;
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 249;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), visibility .25s var(--ease), transform .25s var(--ease);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top .ring {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}
.scroll-top .ring-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 3;
}
.scroll-top .ring-progress {
  fill: none;
  stroke: var(--brand);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}
.scroll-top .chevron {
  position: relative;
  width: 19px;
  height: 19px;
  color: var(--brand);
}
@media (max-width: 560px) {
  .scroll-top {
    right: 16px;
    bottom: 72px;
    width: 48px;
    height: 48px;
  }
  .scroll-top .ring {
    width: 48px;
    height: 48px;
  }
  .scroll-top .chevron {
    width: 17px;
    height: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: opacity .01ms, visibility .01ms;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}
@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-tint);
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.page-header {
  position: relative;
  overflow: hidden;
}
.page-header-dots {
  z-index: 0;
}
.page-header-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: center;
}
.page-header-inner {
  max-width: 560px;
}
.page-header-inner .eyebrow {
  justify-content: flex-start;
}
.page-header-rule {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  margin: 16px 0 20px;
  background: linear-gradient(100deg, var(--brand-text), var(--brand-ondark));
}
.page-h1 {
  font-size: clamp(34px,4.8vw,52px);
  line-height: 1.12;
  letter-spacing: -.01em;
  background: linear-gradient(100deg, var(--brand-text) 0%, var(--brand) 55%, var(--brand-ondark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.page-lede {
  margin: 20px 0 0;
  max-width: 500px;
  font-size: 17px;
}
.page-header-ctas {
  justify-content: flex-start;
}
.page-header-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.contact-orbit {
  width: min(360px, 92%);
  height: auto;
  overflow: visible;
}
.connect-ring {
  animation: connectDash 11s linear infinite;
}
.connect-ring-2 {
  animation-duration: 16s;
  animation-direction: reverse;
}
@keyframes connectDash {
  to { stroke-dashoffset: -220; }
}
.connect-center {
  transform-box: fill-box;
  transform-origin: center;
  animation: connectPulse 3.6s ease-in-out infinite;
}
@keyframes connectPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .connect-ring,
  .connect-center {
    animation: none;
  }
}
@media (max-width: 1080px) {
  .page-header-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .page-header-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .page-header-inner .eyebrow {
    justify-content: center;
  }
  .page-header-rule {
    margin: 16px auto 20px;
  }
  .page-lede {
    margin: 20px auto 0;
    max-width: 560px;
  }
  .page-header-ctas {
    justify-content: center;
  }
  .page-header-visual {
    min-height: 260px;
    order: -1;
  }
  .contact-orbit {
    width: min(260px, 74%);
  }
}
@media (max-width: 520px) {
  .page-header-visual {
    min-height: 220px;
  }
  .contact-orbit {
    width: min(210px, 68%);
  }
}

.ring-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-tint);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.ring-icon svg {
  width: 19px;
  height: 19px;
  color: var(--brand-deep);
}
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.contact-strip-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 22px;
  border-left: 1px solid var(--line-soft);
  transition: background .25s var(--ease);
}
.contact-strip-item:hover {
  background: var(--mist);
}
.contact-strip-item:hover .ring-icon {
  border-color: var(--brand);
  background: var(--brand-tint);
  transform: translateY(-2px);
}
.contact-strip-item:first-child {
  border-left: none;
}
.strip-body h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.strip-body p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.strip-action {
  margin-top: 14px;
  display: inline-flex;
}
@media (max-width: 900px) {
  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }
  .contact-strip-item {
    border-left: 1px solid var(--line-soft);
    border-top: none;
  }
  .contact-strip-item:nth-child(odd) {
    border-left: none;
  }
  .contact-strip-item:nth-child(n+3) {
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 560px) {
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .contact-strip-item {
    border-left: none !important;
    border-top: 1px solid var(--line-soft);
  }
  .contact-strip-item:first-child {
    border-top: none;
  }
}

.enquiry-panel {
  position: relative;
  background: linear-gradient(135deg, var(--brand-tint) 0%, var(--paper) 65%);
  border-radius: 28px;
  padding: 64px;
  overflow: hidden;
}
.enquiry-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--line) 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  opacity: .3;
  mask-image: linear-gradient(120deg, black, transparent 55%);
  -webkit-mask-image: linear-gradient(120deg, black, transparent 55%);
}
.enquiry-panel > .two-col {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .enquiry-panel {
    padding: 40px;
  }
}
@media (max-width: 720px) {
  .enquiry-panel {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }
}
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  padding: 40px;
}
@media (max-width: 520px) {
  .contact-form-card {
    padding: 24px;
  }
}
.form-row {
  margin-bottom: 20px;
}
.form-row:last-of-type {
  margin-bottom: 0;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form .req {
  color: var(--brand-deep);
  margin-left: 2px;
}
.contact-form .opt {
  font-weight: 400;
  color: var(--ink-faint);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
  line-height: 1.5;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2353565c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.file-input {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.file-input input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.file-input-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--mist);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  cursor: pointer;
  margin: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.file-input-btn:hover {
  border-color: var(--ink);
  background: #ece7dd;
}
.file-input-name {
  font-size: 13.5px;
  color: var(--ink-faint);
}
.file-input-name.file-input-error {
  color: var(--brand-deep);
  font-weight: 600;
}
.field-hint {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.privacy-notice {
  margin: 26px 0 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-faint);
}
.privacy-notice a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-notice a:hover {
  color: var(--brand-deep);
}
.contact-form button[type="submit"] {
  width: 100%;
}
@media (min-width: 561px) {
  .contact-form button[type="submit"] {
    width: auto;
  }
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
}
.timeline-num {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--brand-tint);
  color: var(--brand-deep);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.timeline-step:hover .timeline-num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.timeline-step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .timeline::before {
    display: none;
  }
}
@media (max-width: 560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.map-embed {
  position: relative;
  aspect-ratio: 4 / 3;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  background: var(--mist);
}
.map-pin-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2);
  border: 3px solid var(--mist);
}
.map-pin-badge svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
@media (max-width: 560px) {
  .map-pin-badge {
    width: 42px;
    height: 42px;
    top: -12px;
    left: -12px;
  }
  .map-pin-badge svg {
    width: 18px;
    height: 18px;
  }
}

.pa-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.pa-tile .ring-icon {
  width: 38px;
  height: 38px;
}
.pa-tile .ring-icon svg {
  width: 17px;
  height: 17px;
}
.pa-tile:hover .ring-icon {
  border-color: var(--brand);
  background: var(--brand-tint);
}
.pa-tile::after {
  content: "";
  margin-left: auto;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6268' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease);
}
.pa-tile:hover {
  border-color: #ded8cc;
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.pa-tile:hover::after {
  background-color: var(--brand);
  border-color: var(--brand);
  transform: rotate(-45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}
