:root {
  --purple: #7433ad;
  --purple-bright: #9c5cdf;
  --purple-deep: #1b082e;
  --ink: #12051f;
  --cream: #f4f0e9;
  --white: #fff;
  --muted: #b9adc4;
  --line: rgba(116, 51, 173, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Alexandria", "Segoe UI", Tahoma, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: var(--purple); color: white; }

.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.loader {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-content: center; gap: 22px;
  background: var(--ink); color: white; transition: opacity .8s var(--ease), visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark { font-size: clamp(4rem, 10vw, 8rem); font-weight: 300; letter-spacing: -.12em; color: var(--purple-bright); }
.loader-line { width: 180px; height: 1px; background: rgba(255,255,255,.18); overflow: hidden; }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--purple-bright); transform: scaleX(0); transform-origin: right center; }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 999; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: white; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid white; transition: width .25s, height .25s; }
.cursor-ring.active { width: 58px; height: 58px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90; height: 92px; padding: 12px 5vw;
  display: flex; align-items: center; justify-content: space-between; color: white;
  transition: background .4s, height .4s, box-shadow .4s;
}
.site-header.scrolled {
  height: 74px; color: var(--ink); background: rgba(244,240,233,.88);
  backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(27,8,46,.08);
}
.brand { width: 84px; height: 64px; display: grid; place-items: center; }
.brand img { width: 58px; max-height: 58px; object-fit: contain; }
.desktop-nav { display: flex; gap: 34px; font-size: .84rem; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 5px; width: 0; height: 1px; background: currentColor; transition: width .35s; }
.desktop-nav a:hover::after { width: 100%; }
.language-switch {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 0;
  background: transparent; color: currentColor; cursor: pointer; font-size: .68rem;
  letter-spacing: .08em; border-radius: 99px; transition: background .3s;
}
.language-switch:hover { background: rgba(255,255,255,.1); }
.scrolled .language-switch:hover { background: rgba(116,51,173,.08); }
.language-switch i { width: 20px; height: 1px; background: currentColor; opacity: .38; }
.language-current { font-weight: 700; color: #c99bf6; }
.scrolled .language-current { color: var(--purple); }
.mobile-language { display: none; }
.header-cta { display: flex; align-items: center; gap: 18px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.38); border-radius: 99px; font-size: .8rem; }
.scrolled .header-cta { border-color: var(--line); }
.header-cta .arrow { font-size: 1.2rem; }
.menu-toggle, .mobile-menu { display: none; }

.section { padding: 130px 7vw; }
.section-label { display: flex; align-items: center; gap: 14px; margin-bottom: 64px; color: var(--purple); font-size: .8rem; letter-spacing: .05em; }
.section-label::after { content: ""; width: 64px; height: 1px; background: currentColor; opacity: .35; }
.section-label span { font-size: .67rem; opacity: .62; }
.section-label.light { color: white; }
.eyebrow { font-size: .72rem; letter-spacing: .22em; font-weight: 500; }
.split-title { margin: 0; font-size: clamp(2.6rem, 5.8vw, 6.7rem); line-height: 1.12; letter-spacing: -.055em; font-weight: 500; }
.split-title em { color: var(--purple); font-style: normal; font-weight: 300; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: white; overflow: hidden; background: var(--ink); }
.hero-media, .hero-wash { position: absolute; inset: -8%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-wash { background: linear-gradient(90deg, rgba(18,5,31,.25), rgba(18,5,31,.9) 72%), linear-gradient(0deg, rgba(18,5,31,.68), transparent 55%); }
.route-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .4; }
.route-lines path { fill: none; stroke: rgba(207,163,255,.72); stroke-width: 1.3; stroke-dasharray: 10 14; animation: dash 18s linear infinite; }
.route-lines path:last-child { opacity: .35; animation-direction: reverse; }
@keyframes dash { to { stroke-dashoffset: -400; } }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 150px 7vw 80px; }
.hero h1 { margin: 24px 0 44px; font-size: clamp(3.3rem, 8vw, 9rem); line-height: .98; letter-spacing: -.07em; font-weight: 600; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero h1 .line > span { display: block; }
.hero h1 .accent { color: #c99bf6; font-weight: 300; }
.hero-bottom { width: min(680px, 70%); display: flex; align-items: center; gap: 48px; }
.hero-bottom p { max-width: 480px; margin: 0; color: rgba(255,255,255,.72); line-height: 2; font-size: .98rem; }
.circle-link { width: 92px; height: 92px; flex: 0 0 92px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-content: center; text-align: center; gap: 4px; font-size: .72rem; transition: background .35s, color .35s; }
.circle-link:hover { background: white; color: var(--ink); }
.scroll-cue { position: absolute; left: 4vw; bottom: 45px; z-index: 2; writing-mode: vertical-rl; display: flex; align-items: center; gap: 16px; font-size: .52rem; letter-spacing: .18em; opacity: .65; }
.scroll-cue i { width: 1px; height: 54px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-cue i::after { content:""; position:absolute; inset: 0; background: white; animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 55%,100% { transform: translateY(100%); } }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; }
.intro-copy { border-right: 1px solid var(--line); padding-right: 34px; }
.intro-copy p { margin: 0 0 22px; color: #64596d; line-height: 2.15; }
.stats { margin-top: 120px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 42px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-right: 1px solid var(--line); }
.stat strong { font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 300; letter-spacing: -.06em; color: var(--purple); }
.stat b { color: var(--purple); font-size: 1.2rem; font-weight: 400; }
.stat span { display: block; margin-top: 10px; color: #746979; font-size: .74rem; }

.manifesto { position: relative; min-height: 105svh; display: grid; place-items: center; overflow: hidden; color: white; }
.manifesto-media, .manifesto-overlay { position: absolute; inset: -8%; }
.manifesto-media img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-overlay { background: linear-gradient(rgba(18,5,31,.48), rgba(18,5,31,.72)); }
.manifesto-content { position: relative; z-index: 2; width: min(1060px, 86%); text-align: center; }
.manifesto-content > span { display: block; color: #d6b3f4; margin-bottom: 36px; }
.manifesto-content blockquote { font-size: clamp(2.6rem, 6vw, 6.2rem); }
.manifesto-content p { color: rgba(255,255,255,.72); margin-top: 40px; }

.services { background: var(--ink); color: white; }
.services .section-label { color: #c99bf6; }
.services-head { display: grid; grid-template-columns: .45fr 1fr; align-items: start; margin-bottom: 90px; }
.services-head .section-label { margin: 18px 0 0; }
.services .split-title em { color: #c99bf6; }
.service-list { border-top: 1px solid rgba(255,255,255,.14); }
.service-card {
  position: relative; display: grid; grid-template-columns: 120px 1fr auto; gap: 38px; align-items: center;
  min-height: 180px; padding: 30px 12px; border-bottom: 1px solid rgba(255,255,255,.14);
  transition: padding .45s var(--ease), background .45s; overflow: hidden;
}
.service-card::before { content: attr(data-index); position: absolute; left: 12px; top: 18px; font-size: .62rem; color: rgba(255,255,255,.3); }
.service-card:hover { padding-right: 36px; background: rgba(116,51,173,.12); }
.service-icon { width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(201,155,246,.35); border-radius: 50%; }
.service-icon svg { width: 38px; fill: none; stroke: #c99bf6; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2.3vw, 2.4rem); font-weight: 500; }
.service-card p { margin: 0; max-width: 640px; color: var(--muted); line-height: 1.9; font-size: .86rem; }
.service-arrow { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; font-size: 1.25rem; transition: transform .4s, background .4s; }
.service-card:hover .service-arrow { transform: rotate(45deg); background: var(--purple); }

html[dir="ltr"] .desktop-nav a::after { right: auto; left: 0; }
html[dir="ltr"] .hero-wash { background: linear-gradient(270deg, rgba(18,5,31,.25), rgba(18,5,31,.9) 72%), linear-gradient(0deg, rgba(18,5,31,.68), transparent 55%); }
html[dir="ltr"] .intro-copy { border-right: 0; border-left: 1px solid var(--line); padding-right: 0; padding-left: 34px; }
html[dir="ltr"] .stat { border-left: 0; border-right: 1px solid var(--line); }
html[dir="ltr"] .stat:first-child { border-left: 1px solid var(--line); }
html[dir="ltr"] .service-card::before { left: auto; right: 12px; }
html[dir="ltr"] .service-card:hover { padding-right: 12px; padding-left: 36px; }
html[dir="ltr"] .network-overlay { background: linear-gradient(270deg, rgba(18,5,31,.2), rgba(18,5,31,.92) 74%), linear-gradient(0deg, rgba(18,5,31,.75), transparent); }
html[dir="ltr"] .network-content .section-label { right: auto; left: 7vw; }
html[dir="ltr"] .split-title { letter-spacing: -.045em; }
html[dir="ltr"] .hero h1 { letter-spacing: -.055em; }

.journey { background: var(--cream); }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.journey-copy { position: sticky; top: 130px; align-self: start; }
.journey-copy p { max-width: 470px; margin-top: 35px; color: #6b606f; line-height: 2; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 38px 8px; border-bottom: 1px solid var(--line); }
.step b { font-size: .7rem; color: var(--purple); font-weight: 500; padding-top: 8px; }
.step h3 { margin: 0 0 8px; font-size: 1.35rem; font-weight: 500; }
.step p { margin: 0; color: #766c7b; line-height: 1.8; font-size: .83rem; }

.network { position: relative; min-height: 105svh; overflow: hidden; color: white; background: var(--ink); }
.network-media, .network-overlay { position: absolute; inset: -7%; }
.network-media img { width: 100%; height: 100%; object-fit: cover; }
.network-overlay { background: linear-gradient(90deg, rgba(18,5,31,.2), rgba(18,5,31,.92) 74%), linear-gradient(0deg, rgba(18,5,31,.75), transparent); }
.network-content { position: relative; z-index: 2; min-height: 105svh; display: flex; flex-direction: column; justify-content: center; }
.network-content .section-label { position: absolute; top: 110px; right: 7vw; }
.network-copy { max-width: 800px; }
.network-copy h2 { margin: 22px 0 38px; }
.network-copy h2 em { color: #c99bf6; }
.network-copy > p:last-child { max-width: 610px; color: rgba(255,255,255,.7); line-height: 2; }
.locations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 60px; max-width: 760px; }
.locations span { padding: 10px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; font-size: .72rem; backdrop-filter: blur(8px); }

.contact { position: relative; min-height: 90svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--cream); overflow: hidden; }
.contact h2 { margin: 26px 0 52px; }
.contact-button { width: 180px; height: 180px; border-radius: 50%; display: grid; place-content: center; background: var(--purple); color: white; font-size: 1rem; line-height: 1.6; text-align: center; box-shadow: 0 24px 80px rgba(116,51,173,.28); transition: transform .4s var(--ease), background .4s; }
.contact-button:hover { background: var(--ink); transform: scale(1.06); }
.contact-details { display: flex; gap: 30px; margin-top: 62px; color: #6d6372; font-size: .75rem; }
.contact-orbit { position: absolute; width: min(780px, 90vw); aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; animation: orbitSpin 28s linear infinite; }
.contact-orbit::before, .contact-orbit::after { content:""; position:absolute; border: 1px solid var(--line); border-radius:50%; inset: 12%; }
.contact-orbit::after { inset: 25%; }
.contact-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  transform: translate(-50%, -50%);
}
/* Each dot is centered exactly on one of the three orbit lines. */
.contact-orbit i:nth-child(1) { top: 8.7%; left: 21.3%; }
.contact-orbit i:nth-child(2) { top: 69%; left: 82.9%; }
.contact-orbit i:nth-child(3) { top: 50%; left: 75%; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.contact > *:not(.contact-orbit) { position: relative; z-index: 2; }

footer { min-height: 160px; padding: 40px 7vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--ink); color: rgba(255,255,255,.6); font-size: .7rem; }
footer img { width: 210px; height: 74px; object-fit: contain; }

.reveal { opacity: 0; visibility: hidden; transform: translateY(40px); }
.service-card { opacity: 0; visibility: hidden; transform: translateY(50px); transition: padding .45s var(--ease), background .45s; }
.hero-media, .manifesto-media, .network-media, .route-lines { will-change: transform; }

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring, .desktop-nav, .header-cta, .desktop-language { display: none; }
  .site-header { height: 76px; padding: 8px 5vw; }
  .brand { width: 70px; height: 56px; }
  .brand img { width: 50px; max-height: 50px; }
  .menu-toggle { display: grid; gap: 7px; border: 0; background: transparent; padding: 12px 0 12px 12px; color: currentColor; }
  .menu-toggle span { width: 28px; height: 1px; background: currentColor; transition: transform .35s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 80; padding: 120px 8vw 50px; background: var(--ink); color: white; flex-direction: column; gap: 24px; justify-content: center; font-size: 2rem; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: .4s var(--ease); }
  .mobile-menu a { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 20px; }
  .mobile-language { display: inline-flex; align-self: flex-start; margin-top: 18px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.18); font-size: .85rem; }
  .menu-open .mobile-menu { display: flex; opacity: 1; visibility: visible; transform: none; }
  .menu-open .site-header { color: white; background: transparent; box-shadow: none; }
  .section { padding: 92px 6vw; }
  .section-label { margin-bottom: 42px; }
  .hero-content { padding: 130px 6vw 70px; }
  .hero h1 { font-size: clamp(3.2rem, 13.5vw, 6.2rem); }
  .hero-wash { background: linear-gradient(0deg, rgba(18,5,31,.9), rgba(18,5,31,.25) 70%); }
  .hero-bottom { width: 100%; align-items: flex-end; justify-content: space-between; gap: 20px; }
  .hero-bottom p { font-size: .82rem; max-width: 68%; }
  .circle-link { width: 72px; height: 72px; flex-basis: 72px; }
  .scroll-cue { display: none; }
  .intro-grid, .journey-grid { grid-template-columns: 1fr; gap: 55px; }
  .intro-copy { border-right: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  html[dir="ltr"] .intro-copy { border-left: 0; padding-left: 0; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 75px; }
  .stat { border-bottom: 1px solid var(--line); }
  .services-head { grid-template-columns: 1fr; gap: 35px; }
  .service-card { grid-template-columns: 75px 1fr auto; gap: 18px; min-height: 150px; }
  .service-icon { width: 62px; height: 62px; }
  .service-card p { font-size: .76rem; }
  .journey-copy { position: static; }
  .network-content .section-label { top: 75px; right: 6vw; }
  html[dir="ltr"] .network-content .section-label { right: auto; left: 6vw; }
  .contact-details { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .hero-media { inset: 0; }
  .hero-media img { object-position: 42% center; }
  .hero-content { align-self: flex-end; padding-bottom: 10vh; }
  .hero .eyebrow { font-size: .56rem; }
  .hero h1 { margin: 18px 0 34px; font-size: clamp(2.65rem, 11.4vw, 3.35rem); line-height: 1.1; letter-spacing: -.055em; }
  .hero h1 .line { overflow: visible; padding-bottom: 0; }
  .hero h1 .line + .line { margin-top: .12em; }
  .hero-bottom { align-items: center; }
  .split-title { font-size: clamp(2.45rem, 12vw, 4rem); }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:first-child { border: 0; border-bottom: 1px solid var(--line); padding: 30px 8px; }
  html[dir="ltr"] .stat, html[dir="ltr"] .stat:first-child { border: 0; border-bottom: 1px solid var(--line); }
  .manifesto { min-height: 88svh; }
  .manifesto-media img { object-position: 62% center; }
  .service-card { grid-template-columns: 55px 1fr; padding: 28px 0; }
  .service-icon { width: 48px; height: 48px; }
  .service-icon svg { width: 27px; }
  .service-arrow { display: none; }
  .service-card h3 { font-size: 1.12rem; }
  .network-media img { object-position: 62% center; }
  .contact {
    min-height: 820px;
    padding: 92px 6vw 76px;
    justify-content: flex-start;
  }
  .contact > .eyebrow {
    margin: 0 0 18px;
    font-size: .68rem;
    letter-spacing: .08em;
  }
  .contact h2 {
    width: 100%;
    margin: 0 0 110px;
    font-size: clamp(2.25rem, 10.2vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -.045em;
    white-space: nowrap;
  }
  .contact-button {
    width: 136px;
    height: 136px;
    font-size: .9rem;
  }
  .contact-orbit {
    top: 265px;
    width: min(250px, 68vw);
  }
  .contact-orbit::after {
    inset: 20%;
  }
  .contact-orbit i {
    width: 7px;
    height: 7px;
  }
  .contact-orbit i:nth-child(3) {
    top: 50%;
    left: 80%;
  }
  .contact-details {
    margin-top: 112px;
    gap: 14px;
    font-size: .74rem;
    line-height: 1.7;
  }
  footer { flex-direction: column; text-align: center; padding: 50px 6vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .service-card { opacity: 1; visibility: visible; transform: none; }
}
