/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --bg: #0A0909;
  --bg-2: #111010;
  --bg-card: #141313;
  --fg: #F2EDE6;
  --fg-mid: rgba(242, 237, 230, 0.5);
  --fg-dim: rgba(242, 237, 230, 0.28);
  --line: rgba(242, 237, 230, 0.08);
  --accent: #E8622A;
  --accent-2: #7B5CF0;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-s: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

html.lenis,
html.lenis body {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  cursor: none;
}

/* ── Cursor ─────────────────────────────────────────────────── */
#cur-dot {
  width: 7px;
  height: 7px;
  background: var(--fg);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .2s, height .2s, background .2s;
}

#cur-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 237, 230, 0.25);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .35s var(--ease), height .35s var(--ease), border-color .2s;
}

body.c-hover #cur-dot {
  width: 13px;
  height: 13px;
  background: var(--accent);
}

body.c-hover #cur-ring {
  width: 52px;
  height: 52px;
  border-color: var(--accent);
}

/* ── Nav ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
  max-width: 100vw;
  box-sizing: border-box;
}

nav.scrolled {
  background: rgba(10, 9, 9, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(242, 237, 230, 0.05);
  color: var(--fg);
  text-decoration: none;
  cursor: none;
  transition: background .2s, border-color .2s;
}

.nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 52px 80px;
  position: relative;
  overflow: hidden;
  column-gap: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Animated background grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Accent glow spots */
.glow-1 {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.glow-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 240, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 44px;
  opacity: 0;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 96px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.03em;
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-headline .row {
  overflow: hidden;
  display: block;
}

.hero-headline .row span {
  display: block;
  transform: translateY(105%);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-headline .dim {
  color: var(--fg-dim);
}

.hero-body {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--fg-mid);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-body strong {
  color: var(--fg);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
}

.btn-fill {
  padding: 15px 36px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  border: none;
  transition: transform .2s var(--ease), box-shadow .3s;
}

.btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232, 98, 42, .35);
}

.btn-outline {
  padding: 15px 36px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: rgba(242, 237, 230, .3);
  color: var(--fg);
}

/* Globe */
.hero-globe-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  justify-self: center;
  align-self: center;
  z-index: 2;
}

#globe-canvas {
  width: 100%;
  height: 100%;
}

.globe-label {
  position: absolute;
  background: rgba(20, 19, 19, 0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}

.globe-label.l1 {
  top: 16%;
  left: -6%;
}

.globe-label.l2 {
  bottom: 20%;
  right: -4%;
}

.globe-label.l3 {
  top: 58%;
  left: -8%;
}

.gl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gl-dot.o {
  background: var(--accent);
  box-shadow: 0 0 7px var(--accent);
}

.gl-dot.p {
  background: #A78BFA;
  box-shadow: 0 0 7px #A78BFA;
}

.gl-dot.g {
  background: #34D399;
  box-shadow: 0 0 7px #34D399;
}

.gl-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.gl-sub {
  font-size: 10px;
  color: var(--fg-dim);
}

/* ── Roadmap (Services) ─────────────────────────────────────── */
.roadmap {
  position: relative;
  max-width: 900px;
  margin: 72px auto 0;
  padding: 0 0 40px;
}

/* Vertical spine */
.roadmap-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.roadmap-spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), #A78BFA, #34D399);
  height: 0;
  transition: height .15s linear;
}

.rm-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 72px;
  position: relative;
}

.rm-step:last-child {
  margin-bottom: 0;
}

/* Node on spine */
.rm-node {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

.rm-node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line);
  position: relative;
  z-index: 2;
  transition: border-color .4s, background .4s, box-shadow .4s;
}

.rm-step.active .rm-node-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(232, 98, 42, .15), 0 0 20px rgba(232, 98, 42, .3);
}

.rm-step:nth-child(2).active .rm-node-dot {
  background: #A78BFA;
  border-color: #A78BFA;
  box-shadow: 0 0 0 6px rgba(167, 139, 250, .15), 0 0 20px rgba(167, 139, 250, .3);
}

.rm-step:nth-child(3).active .rm-node-dot {
  background: #34D399;
  border-color: #34D399;
  box-shadow: 0 0 0 6px rgba(52, 211, 153, .12), 0 0 20px rgba(52, 211, 153, .25);
}

/* Left content */
.rm-left {
  grid-column: 1;
  padding-right: 40px;
  text-align: right;
}

.rm-right {
  grid-column: 3;
  padding-left: 40px;
}

.rm-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .4s;
}

.rm-card.in {
  opacity: 1;
  transform: translateY(0);
}

.rm-card:hover {
  border-color: rgba(242, 237, 230, .18);
}

.rm-step:nth-child(2) .rm-card {
  transition-delay: .08s;
}

.rm-step:nth-child(3) .rm-card {
  transition-delay: .16s;
}

.rm-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.rm-icon-wrap.o {
  background: rgba(232, 98, 42, .1);
}

.rm-icon-wrap.p {
  background: rgba(167, 139, 250, .1);
}

.rm-icon-wrap.g {
  background: rgba(52, 211, 153, .08);
}

.rm-left .rm-icon-wrap {
  margin-left: auto;
}

.rm-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.rm-step-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.rm-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.rm-body {
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.rm-left .rm-tags {
  justify-content: flex-end;
}

.rm-tag {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--fg-dim);
  background: rgba(242, 237, 230, .03);
  transition: border-color .2s, color .2s;
}

.rm-card:hover .rm-tag {
  border-color: rgba(242, 237, 230, .18);
  color: var(--fg-mid);
}

/* ── Advanced Process ───────────────────────────────────────── */
.how-advanced {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease),
    border-color .3s, background .3s;
}

.how-card.in {
  opacity: 1;
  transform: translateY(0);
}

.how-card:hover {
  background: #1c1b1b;
  border-color: rgba(242, 237, 230, .14);
}

.how-card:nth-child(2) {
  transition-delay: .1s;
}

.how-card:nth-child(3) {
  transition-delay: .2s;
}

.how-card:nth-child(4) {
  transition-delay: .3s;
}

/* Big ghost number */
.hc-ghost {
  position: absolute;
  top: -12px;
  right: 10px;
  font-family: var(--serif);
  font-size: 110px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(242, 237, 230, .03);
  pointer-events: none;
  transition: color .3s;
}

.how-card:hover .hc-ghost {
  color: rgba(242, 237, 230, .06);
}

.hc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hc-icon.c1 {
  background: rgba(232, 98, 42, .1);
}

.hc-icon.c2 {
  background: rgba(167, 139, 250, .1);
}

.hc-icon.c3 {
  background: rgba(52, 211, 153, .08);
}

.hc-icon.c4 {
  background: rgba(251, 191, 36, .08);
}

.hc-icon svg {
  width: 22px;
  height: 22px;
}

.hc-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hc-body {
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Progress connector line */
.how-connector {
  display: flex;
  align-items: center;
  margin: 0 -8px;
  pointer-events: none;
}

.hc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent), #A78BFA);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .6s var(--ease) .5s, transform .8s var(--ease) .5s;
}

.hc-line.in {
  opacity: .4;
  transform: scaleX(1);
}

/* ── Marquee ────────────────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.m-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Section util ───────────────────────────────────────────── */
.s-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.s-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.025em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .4s
}

/* ── Services ───────────────────────────────────────────────── */
#services {
  padding: 120px 52px;
  background: var(--bg);
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.services-intro p {
  font-size: 15px;
  color: var(--fg-mid);
  line-height: 1.8;
  max-width: 400px;
}

.services-intro p strong {
  color: var(--fg);
  font-weight: 500;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.svc-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
  cursor: none;
  transition: background .3s;
}

.svc-card:hover {
  background: #1A1919;
}

/* Third card — AI — highlighted */
.svc-card.ai-card {
  background: linear-gradient(145deg, #181420 0%, var(--bg-card) 100%);
}

.svc-card.ai-card:hover {
  background: linear-gradient(145deg, #201830 0%, #1A1919 100%);
}

.ai-soon {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(123, 92, 240, .15);
  border: 1px solid rgba(123, 92, 240, .3);
  color: #A78BFA;
}

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: 36px;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.svc-icon.o {
  background: rgba(232, 98, 42, .12);
}

.svc-icon.p {
  background: rgba(123, 92, 240, .12);
}

.svc-icon.g {
  background: rgba(52, 211, 153, .1);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
}

.svc-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-body {
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.8;
}

.svc-list {
  list-style: none;
  margin-top: 22px;
}

.svc-list li {
  font-size: 12px;
  color: var(--fg-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.svc-list li.p-item::before {
  background: var(--accent-2);
}

/* ── How We Work ────────────────────────────────────────────── */
/* ── Solar System Process ──────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   PROCESS — 3D Orbital Gallery
   ═══════════════════════════════════════════════════════════ */
#how {
  padding: 120px 52px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.how-header {
  text-align: center;
  padding-bottom: 48px;
}

/* ── 3D viewport ──────────────────────────────────────────── */
#orbit-scene-wrap {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  margin-bottom: 80px;
}

/* ── Coordinate anchor — NOT rotated, cards positioned directly ── */
#orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  width: 0;
  height: 0;
}

/* ── Each card — centered on origin, JS moves via translateX/Z ── */
.orbit-card {
  position: absolute;
  width: 320px;
  left: -160px;
  top: -180px;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Card face — never rotated, always faces camera inherently ── */
.card-face {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: border-color .3s, background .3s;
}
.card-face:hover {
  background: #1c1b1b;
  border-color: rgba(242,237,230,.2);
}

/* ── Central axis line ──────────────────────────────────────── */
#orbit-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom, transparent, rgba(242,237,230,.15) 50%, transparent);
  pointer-events: none;
  z-index: 100;
}

/* ── Central sun (hidden) ──────────────────────────────────── */
#orbit-sun {
  position: absolute;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sun-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232,98,42,.15), 0 0 28px rgba(232,98,42,.5);
}
.sun-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,98,42,.1);
}
.sun-ring.r1 { width: 72px;  height: 72px; }
.sun-ring.r2 { width: 130px; height: 130px; }

/* ── Orbit track — pure decorative ellipse ───────────────── */
#orbit-track {
  position: absolute;
  width: 640px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(242,237,230,.05);
  pointer-events: none;
}

/* ── Step label (shared ghost number style) ──────────────── */
.step-n {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(242, 237, 230, .05);
  margin-bottom: 20px;
}

.step-t {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.step-b {
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.75;
}

/* ── Why Prism ──────────────────────────────────────────────── */
#why {
  padding: 120px 52px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .s-heading {
  margin-bottom: 28px;
}

.why-left p {
  font-size: 15px;
  color: var(--fg-mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 18px;
}

.why-left p strong {
  color: var(--fg);
  font-weight: 500;
}

.diff-list {
  margin-top: 36px;
}

.diff-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.diff-item:first-child {
  border-top: 1px solid var(--line);
}

.diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.diff-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.diff-body {
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.7;
}

/* Right visual — big statement */
.why-right {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.why-right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 240, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.big-claim {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.02em;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.big-claim em {
  font-style: italic;
  color: var(--accent);
}

.claim-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.claim-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg-mid);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #34D399;
}

.claim-row strong {
  color: var(--fg);
  font-weight: 500;
}

/* ── CTA Section ────────────────────────────────────────────── */
#cta {
  padding: 140px 52px;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-ring-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid var(--line);
  pointer-events: none;
}

.cta-ring-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(242, 237, 230, .03);
  pointer-events: none;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.cta-tag span {
  color: var(--accent);
}

.cta-head {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.cta-head em {
  font-style: italic;
  color: var(--accent);
}

.cta-sub {
  font-size: 16px;
  color: var(--fg-mid);
  margin-bottom: 52px;
  line-height: 1.7;
}

#mag-zone {
  display: inline-block;
  padding: 28px;
  position: relative;
}

#mag-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 46px;
  border-radius: 100px;
  background: var(--fg);
  color: var(--bg);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: none;
  transition: transform .08s linear, box-shadow .4s;
}

#mag-btn:hover {
  box-shadow: 0 20px 60px rgba(242, 237, 230, .12);
}

#mag-btn .arr {
  transition: transform .4s var(--ease);
}

#mag-btn:hover .arr {
  transform: translateX(6px);
}

.cta-note {
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 24px;
}

.cta-note a {
  color: var(--fg-mid);
}

/* ── Contact Form ───────────────────────────────────────────── */
#form-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(10, 9, 9, 0.7);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

#form-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 52px;
  width: min(560px, 92vw);
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .5s var(--ease);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}

#form-overlay.open .form-box {
  transform: none;
}

.fx {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: var(--fg-mid);
  font-size: 14px;
  transition: background .2s;
}

.fx:hover {
  background: rgba(242, 237, 230, .07);
}

.form-ey {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.form-h {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 36px;
  line-height: 1.1;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 7px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 13px 18px;
  background: rgba(242, 237, 230, .04);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

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

.fg textarea {
  min-height: 100px;
  resize: vertical;
}

.fg option {
  background: var(--bg-card);
}

.form-2c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-sub {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: none;
  transition: opacity .2s, transform .2s;
}

.form-sub:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  padding: 32px 52px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-dim);
}

.f-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.f-logo .lm {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-logo .lm img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.f-links {
  display: flex;
  gap: 24px;
}

.f-links a {
  color: var(--fg-dim);
  text-decoration: none;
  transition: color .2s;
}

.f-links a:hover {
  color: var(--fg);
}

/* ── Tweaks ─────────────────────────────────────────────────── */
#tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  width: 230px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  display: none;
}

#tweaks.open {
  display: block;
}

.tw-h {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 20px;
}

.tw-g {
  margin-bottom: 16px;
}

.tw-l {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}

.tw-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tw-c {
  font-size: 11px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--fg-mid);
  cursor: pointer;
  transition: all .15s;
}

.tw-c.on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.tw-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  color: var(--fg-dim);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 18px 12px;
  }

  @media (max-width: 400px) {
    nav {
      padding: 14px 12px;
    }

    .nav-logo {
      font-size: 14px;
    }

    .logo-mark {
      width: 30px;
      height: 30px;
    }

    .logo-mark img {
      width: 28px;
      height: 28px;
    }

    .nav-btn {
      font-size: 11px;
      padding: 8px 16px;
    }
  }

  .nav-links {
    display: none;
  }

  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }

  .hero-actions {
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions .btn-fill,
  .hero-actions .btn-outline {
    width: 100%;
    min-height: 56px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
  }

  .hero-globe-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  #services,
  #how,
  #why,
  #cta {
    padding: 80px 24px;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .roadmap-spine {
    left: 24px;
  }

  .rm-step {
    grid-template-columns: 0px 48px 1fr;
    margin-bottom: 44px;
  }

  .rm-node {
    justify-content: center;
    padding-top: 0;
  }

  .rm-node-dot {
    display: none;
  }

  .rm-left {
    display: block;
    grid-column: 3;
    padding-right: 0;
    padding-left: 20px;
    text-align: left;
    margin-bottom: 0;
  }

  .rm-left .rm-icon-wrap {
    margin-left: 0;
  }

  .rm-left .rm-tags {
    justify-content: flex-start;
  }

  .rm-right {
    padding-left: 20px;
    grid-column: 3;
  }

  #how {
    padding: 120px 24px 56px;
  }
  #orbit-scene-wrap {
    height: 400px;
    perspective: 800px;
    margin-bottom: 28px;
  }
  #orbit-axis {
    height: 280px;
  }
  .orbit-card {
    width: 210px;
    left: -105px;
    top: -145px;
  }
  .card-face {
    min-height: 290px;
  }

  #why {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  footer {
    padding: 24px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  body {
    cursor: auto;
  }

  #cur-dot,
  #cur-ring {
    display: none;
  }
}
