﻿/*
Theme Name: Modero Tresmares v3
Theme URI: https://modero.ee/
Author: Modero
Author URI: https://modero.ee/
Description: Premium WordPress theme for MODERO, combining cinematic Tresmares-style scroll effects with MODERO web design agency content.
Version: 1.3.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: modero-capital
*/

:root {
  --bg: #070807;
  --ink: #f6f5ef;
  --muted: rgba(246, 245, 239, 0.68);
  --line: rgba(246, 245, 239, 0.14);
  --line-strong: rgba(246, 245, 239, 0.28);
  --paper: #0d0f0e;
  --panel: #bdbbb6;
  --accent: #d7ff54;
  --accent-dark: #b8f12e;
  --accent-soft: rgba(215, 255, 84, 0.14);
  --danger: #d7ff54;
  --dark: #050505;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(135, 215, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(215, 255, 84, 0.10), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  display: grid;
  grid-template-columns: 240px 1fr 268px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.78);
  backdrop-filter: blur(18px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 7, 0.94);
  border-color: rgba(246, 245, 239, 0.18);
}

.brand,
.portal-link,
.lang-switch,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.brand {
  padding-left: var(--gutter);
  border-right: 1px solid var(--line);
}

.brand img,
.brand-logo,
.brand-mark {
  width: clamp(138px, 13vw, 184px);
  height: auto;
  color: var(--ink);
  display: block;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.primary-nav a,
.solutions-trigger {
  border: 0;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  cursor: pointer;
  font-size: 14px;
}

.primary-nav a::after,
.solutions-trigger::after,
.hero-link::after,
.text-link::after,
.footer-link::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s ease;
}

.primary-nav a,
.solutions-trigger,
.hero-link,
.text-link,
.footer-link {
  position: relative;
}

.primary-nav a:hover::after,
.solutions-trigger:hover::after,
.hero-link:hover::after,
.text-link:hover::after,
.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.solutions-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(225deg) translateY(-1px);
}

.header-actions {
  display: grid;
  grid-template-columns: 118px 1fr;
  border-left: 1px solid var(--line);
}

.lang-switches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}

.lang-switch {
  justify-content: center;
  font-size: 12px;
  min-height: 64px;
  color: rgba(246,245,239,.76);
}

.lang-switch:hover {
  color: var(--accent);
}

.portal-link {
  justify-content: center;
  background: var(--accent);
  color: #050505;
  font-size: 14px;
  transition: background 0.25s ease;
}

.portal-link:hover {
  background: #ffffff;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.mega-menu {
  position: fixed;
  top: 64px;
  left: 50%;
  right: auto;
  z-index: 45;
  width: min(280px, calc(100vw - 32px));
  min-height: 0;
  background: rgba(8, 9, 8, 0.96);
  color: #fff;
  padding: 8px;
  border: 1px solid var(--line);
  transform: translate(-50%, -10px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mega-menu.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-grid {
  display: block;
}

.mega-grid > div:first-child,
.mega-note {
  display: none;
}

.mega-eyebrow,
.section-eyebrow,
.card-eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mega-menu h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.9;
  margin: 0;
  max-width: 520px;
  font-weight: 500;
}

.mega-list {
  display: grid;
  border-top: 0;
}

.mega-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 13px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  transition: background .22s ease, color .22s ease;
}

.mega-list a:hover {
  background: rgba(215,255,84,.1);
  color: var(--accent);
}

.mega-list a:last-child {
  border-bottom: 0;
}

.mega-list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  align-self: center;
}

.mega-note {
  color: rgba(255, 255, 255, 0.72);
  max-width: 260px;
  line-height: 1.35;
}

.hero {
  position: relative;
  min-height: 96vh;
  padding: 64px var(--gutter) 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 64px 0 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(215, 255, 84, 0.16), transparent 0 18%, transparent 45%),
    linear-gradient(90deg, rgba(7, 8, 7, 0.98), rgba(7, 8, 7, 0.52)),
    url("assets/images/modero-growth-bg.png") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.05);
  transition: transform 0.2s linear;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -10%;
  right: -10%;
  height: 24vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(7, 8, 7, 0.78) 0 34%, rgba(7, 8, 7, 0) 72%);
  filter: blur(14px);
}

.hero::before {
  bottom: 10vh;
  transform: translateX(-8%);
}

.hero::after {
  bottom: -6vh;
  transform: translateX(12%);
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(74px, 11vh, 140px);
  max-width: 780px;
  font-size: clamp(76px, 11vw, 148px);
  line-height: 0.8;
  font-weight: 520;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  transform: translateY(28px);
  opacity: 0;
  animation: titleIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-title span:nth-child(2) {
  padding-left: clamp(34px, 7vw, 100px);
  animation-delay: 0.12s;
}

.hero-title span:nth-child(3) {
  padding-left: clamp(76px, 13vw, 168px);
  animation-delay: 0.24s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0 0 clamp(54px, 9vh, 118px);
  max-width: 340px;
  font-size: clamp(20px, 2.3vw, 28px);
}

.hero-copy p {
  margin: 0 0 22px;
}

.hero-link,
.text-link {
  font-size: 14px;
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 44px;
  z-index: 2;
  color: rgba(34, 34, 34, 0.38);
  font-size: 13px;
}

.scroll-cue::before {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(34, 34, 34, 0.2);
  margin-bottom: 10px;
  transform-origin: top;
  animation: cue 1.6s ease-in-out infinite;
}

section {
  position: relative;
}

.intro {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 100px var(--gutter);
  background: linear-gradient(180deg, var(--paper), var(--bg));
  overflow: hidden;
}

.intro h2,
.strategy-head h2,
.map-copy h2,
.people h2,
.contact-cta h2 {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: 0.92;
}

.intro-mark {
  position: absolute;
  left: var(--gutter);
  top: 42%;
  width: 6px;
  height: 6px;
  background: var(--danger);
  border-radius: 50%;
}

.stats {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 120px);
  padding: 0 var(--gutter) 140px;
  background: var(--paper);
}

.stats-copy {
  position: sticky;
  top: 32vh;
  align-self: start;
  padding-right: clamp(28px, 6vw, 80px);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.12;
}

.stats-copy p {
  margin: 0 0 24px;
}

.stats-tower {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.88fr);
  align-items: start;
  padding-top: 70px;
}

.stat-card {
  min-height: 338px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  display: grid;
  align-content: start;
  gap: 24px;
}

.stat-card:nth-child(2) {
  transform: translateY(110px);
}

.stat-card:nth-child(3) {
  transform: translateY(-1px);
}

.stat-card:nth-child(4) {
  transform: translateY(109px);
}

.stat-value {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.85;
  font-weight: 400;
}

.stat-label {
  max-width: 260px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.25;
}

.strategies {
  background: var(--bg);
  padding-top: 120px;
}

.strategy-head {
  min-height: 56vh;
  display: grid;
  align-items: center;
  padding: 0 var(--gutter) 64px;
}

.strategy-stage {
  height: 400vh;
  position: relative;
  background: #bdbbb6;
  color: #202020;
}

.solution-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: clamp(24px, 4vw, 64px);
  padding: 88px var(--gutter) 0;
  overflow: hidden;
  background: #bdbbb6;
  color: #202020;
}

.solution-sticky::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: #ecebea;
  z-index: 0;
}

.strategy-nav {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 18px;
  align-self: start;
  padding-top: 72px;
}

.strategy-tab {
  border: 0;
  background: transparent;
  color: rgba(34, 34, 34, 0.48);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.strategy-tab.is-active {
  color: var(--ink);
}

.solution-scenes {
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.solution-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16vh) scale(1.04);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.solution-scene.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ghost-title {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 31%;
  color: rgba(34, 34, 34, 0.24);
  font-size: clamp(86px, 12vw, 178px);
  line-height: 0.82;
  font-weight: 520;
  max-width: 980px;
  transform: translate3d(var(--scene-shift, 0px), 0, 0);
  transition: transform 0.25s linear;
}

.red-block {
  position: absolute;
  z-index: 3;
  background: rgba(215, 25, 32, 0.94);
  mix-blend-mode: multiply;
  transform: translate3d(calc(var(--scene-shift, 0px) * -0.22), 0, 0);
  transition: transform 0.25s linear;
}

.red-block.wide {
  width: 44%;
  height: 18%;
  left: 10%;
  top: 34%;
}

.red-block.low {
  width: 36%;
  height: 18%;
  left: 45%;
  top: 58%;
}

.red-block.top {
  top: 16%;
}

.red-block.square {
  width: 16%;
  aspect-ratio: 1 / 1;
  left: 47%;
  top: 42%;
}

.red-block.stair {
  width: 12%;
  aspect-ratio: 1 / 1;
}

.red-block.stair.one {
  left: 55%;
  top: 52%;
}

.red-block.stair.two {
  left: 63%;
  top: 62%;
}

.red-block.circle {
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1 / 1;
  left: 42%;
  top: 38%;
  border-radius: 50%;
}

.organic-line {
  position: absolute;
  z-index: 2;
  left: 48%;
  top: 3%;
  width: 2px;
  height: 92%;
  background: rgba(20, 20, 20, 0.8);
  transform: rotate(-5deg);
}

.organic-line::before,
.organic-line::after {
  content: "";
  position: absolute;
  width: 44vw;
  max-width: 520px;
  height: 1px;
  background: rgba(20, 20, 20, 0.48);
  transform-origin: left center;
}

.organic-line::before {
  top: 28%;
  transform: rotate(-28deg);
}

.organic-line::after {
  top: 58%;
  transform: rotate(24deg);
}

.organic-line.two {
  left: 56%;
  transform: rotate(42deg);
}

.organic-line.three {
  left: 52%;
  transform: rotate(8deg);
}

.organic-line.four {
  left: 44%;
  transform: rotate(-22deg);
}

.solution-copy {
  position: absolute;
  z-index: 4;
  left: var(--gutter);
  bottom: 64px;
  width: min(300px, 26vw);
}

.strategy-panel {
  display: none;
}

.strategy-panel.is-active {
  display: block;
  animation: fadeLift 0.48s ease both;
}

.strategy-panel h3 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.92;
  font-weight: 520;
}

.strategy-panel p {
  color: rgba(34, 34, 34, 0.72);
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.solution-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 28px;
  align-self: end;
  padding-bottom: 78px;
  text-align: right;
}

.solution-metrics div {
  display: grid;
  gap: 8px;
}

.solution-metrics strong {
  font-size: 11px;
  text-transform: uppercase;
}

.solution-metrics span {
  color: rgba(34, 34, 34, 0.72);
  font-size: 14px;
}

.portfolio {
  padding: 116px var(--gutter);
  background: var(--paper);
}

.portfolio-head {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.portfolio h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 500;
}

.portfolio-head p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
  font-size: 20px;
  line-height: 1.35;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.case-card {
  min-height: 370px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  transition: background 0.35s ease, color 0.35s ease;
}

.case-card:hover {
  background: var(--accent);
  color: #050505;
}

.case-card:nth-child(3n) {
  border-right: 0;
}

.case-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 0.96;
  font-weight: 500;
}

.case-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.case-card:hover p {
  color: rgba(5, 5, 5, 0.72);
}

.map-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 88vh;
  background: var(--dark);
  color: #fff;
}

.map-copy {
  padding: 110px var(--gutter);
  display: grid;
  align-content: center;
}

.map-copy h2 {
  text-align: left;
  margin: 0 0 34px;
}

.map-copy p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  line-height: 1.35;
}

.office-list {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.office-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.map-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 42%, rgba(15, 118, 110, 0.34), transparent 0 18%, transparent 42%),
    linear-gradient(135deg, #323232, #1d1d1d);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.36;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 18px rgba(15, 118, 110, 0.18);
}

.map-pin::after {
  content: attr(data-city);
  position: absolute;
  left: 22px;
  top: -4px;
  color: #fff;
  font-size: 13px;
}

.map-pin.tallinn { left: 58%; top: 30%; }
.map-pin.tartu { left: 62%; top: 46%; }
.map-pin.riga { left: 45%; top: 56%; }
.map-pin.vilnius { left: 52%; top: 70%; }

.people {
  padding: 126px var(--gutter);
  background: var(--bg);
}

.people h2 {
  margin-bottom: 64px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.person-card {
  min-height: 330px;
  padding: 24px;
  background: var(--bg);
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: end;
  overflow: hidden;
  position: relative;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto;
  height: 180px;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.32), rgba(34, 34, 34, 0.08));
  transform: translateY(12px);
  transition: transform 0.35s ease;
}

.person-card:hover::before {
  transform: translateY(0) scale(1.04);
}

.fit-visual {
  position: relative;
  z-index: 1;
  align-self: start;
  width: min(100%, 330px);
  height: 178px;
  margin: 6px auto 34px;
}

.mini-screen {
  position: absolute;
  display: block;
  width: 136px;
  height: 92px;
  border: 1px solid rgba(246,245,239,.24);
  background: rgba(246,245,239,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
  overflow: hidden;
}

.mini-screen::before {
  content: "";
  display: block;
  height: 14px;
  background: rgba(246,245,239,.16);
  border-bottom: 1px solid rgba(246,245,239,.12);
}

.mini-screen i,
.mini-screen b,
.mini-screen em {
  position: absolute;
  display: block;
  font-style: normal;
}

.old-site {
  left: 8%;
  top: 46px;
  transform: rotate(-8deg);
  background: linear-gradient(135deg, rgba(82,54,45,.42), rgba(22,24,22,.8));
}

.old-site i {
  left: 14px;
  top: 28px;
  width: 86px;
  height: 11px;
  background: rgba(255,255,255,.22);
}

.old-site b,
.old-site em {
  left: 14px;
  right: 24px;
  height: 6px;
  background: rgba(255,255,255,.12);
}

.old-site b { top: 50px; }
.old-site em { top: 64px; width: 48px; }

.new-site {
  right: 7%;
  top: 28px;
  transform: rotate(5deg);
  background: linear-gradient(135deg, rgba(215,255,84,.18), rgba(6,36,32,.9));
}

.new-site i {
  inset: 28px 14px auto;
  height: 26px;
  background: var(--accent);
}

.new-site b,
.new-site em {
  left: 14px;
  bottom: 16px;
  height: 7px;
  border-radius: 999px;
  background: rgba(246,245,239,.62);
}

.new-site b { width: 70px; }
.new-site em { left: 92px; width: 24px; background: rgba(215,255,84,.75); }

.editor {
  left: 7%;
  top: 32px;
  transform: rotate(-4deg);
}

.editor i {
  left: 12px;
  top: 30px;
  width: 28px;
  height: 48px;
  background: rgba(215,255,84,.22);
}

.editor b {
  left: 50px;
  top: 30px;
  width: 64px;
  height: 10px;
  background: rgba(246,245,239,.45);
}

.editor em {
  left: 50px;
  top: 50px;
  width: 74px;
  height: 28px;
  border: 1px solid rgba(215,255,84,.55);
}

.dashboard {
  right: 8%;
  top: 48px;
  transform: rotate(6deg);
}

.dashboard i,
.dashboard b,
.dashboard em {
  top: 30px;
  width: 28px;
  border-radius: 4px;
  background: rgba(215,255,84,.64);
}

.dashboard i { left: 16px; height: 44px; }
.dashboard b { left: 54px; height: 30px; }
.dashboard em { left: 92px; height: 52px; }

.ads {
  left: 8%;
  top: 42px;
  transform: rotate(-5deg);
}

.ads i,
.ads b,
.ads em {
  left: 14px;
  height: 9px;
  border-radius: 999px;
}

.ads i { top: 30px; width: 90px; background: var(--accent); }
.ads b { top: 48px; width: 64px; background: rgba(246,245,239,.5); }
.ads em { top: 66px; width: 100px; background: rgba(246,245,239,.25); }

.landing {
  right: 8%;
  top: 26px;
  transform: rotate(4deg);
  background: linear-gradient(160deg, rgba(215,255,84,.2), rgba(255,255,255,.045));
}

.landing i {
  left: 14px;
  top: 30px;
  width: 108px;
  height: 28px;
  background: rgba(246,245,239,.72);
}

.landing b {
  left: 14px;
  bottom: 16px;
  width: 58px;
  height: 12px;
  background: var(--accent);
}

.landing em {
  right: 14px;
  bottom: 16px;
  width: 28px;
  height: 12px;
  background: rgba(246,245,239,.18);
}

.analytics {
  left: 7%;
  top: 34px;
  transform: rotate(-5deg);
}

.analytics i {
  left: 16px;
  right: 16px;
  bottom: 20px;
  height: 42px;
  border-left: 2px solid rgba(246,245,239,.36);
  border-bottom: 2px solid rgba(246,245,239,.36);
}

.analytics b {
  left: 24px;
  bottom: 30px;
  width: 74px;
  height: 35px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  transform: skew(-25deg);
}

.analytics em {
  right: 20px;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}

.support {
  right: 7%;
  top: 48px;
  transform: rotate(5deg);
}

.support i,
.support b,
.support em {
  left: 15px;
  right: 15px;
  height: 12px;
  border-radius: 999px;
  background: rgba(246,245,239,.22);
}

.support i { top: 30px; background: rgba(215,255,84,.7); }
.support b { top: 50px; }
.support em { top: 70px; width: 58px; }

.person-card h3,
.person-card p {
  position: relative;
  margin: 0;
}

.person-card h3 {
  font-size: 26px;
  font-weight: 500;
}

.person-card p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-cta {
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: 110px var(--gutter);
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.btn.secondary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 54px var(--gutter) 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 42px;
}

.footer-logo {
  width: min(210px, 64vw);
  margin-bottom: 28px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titleIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeLift {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bloom {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.18; }
  50% { transform: translate(-50%, -50%) scale(1.28); opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr 112px;
  }

  .brand {
    border-right: 0;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    color: var(--ink);
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-label {
    align-self: center;
    color: rgba(246, 245, 239, 0.72);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    width: 24px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: transform 0.25s ease;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: relative;
  }

  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 6px; }

  .menu-toggle[aria-expanded="true"] span {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span::before {
    transform: rotate(90deg) translateX(7px);
  }

  .menu-toggle[aria-expanded="true"] span::after {
    transform: scaleX(0);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 64px 0 0;
    z-index: 44;
    background: var(--dark);
    color: #fff;
    padding: 28px var(--gutter) 96px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

.mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: clamp(20px, 6vw, 28px);
  }

  .mobile-languages {
    display: flex;
    gap: 18px;
    padding-bottom: 16px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .mobile-languages a {
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
    color: var(--accent);
  }

  .mega-menu {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-title {
    margin-top: 100px;
    margin-bottom: 34px;
  }

  .hero-copy {
    margin: 0 0 80px;
  }

  .stats,
  .portfolio-head,
  .map-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-copy {
    position: relative;
    top: auto;
  }

  .stats-tower {
    grid-template-columns: 1fr 1fr;
    padding-top: 10px;
  }

  .stat-card:nth-child(2),
  .stat-card:nth-child(4) {
    transform: translateY(48px);
  }

  .stat-card:nth-child(3) {
    transform: none;
  }

  .solution-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding-top: 86px;
  }

  .strategy-nav {
    position: relative;
    top: auto;
  }

  .strategy-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .strategy-nav::-webkit-scrollbar {
    display: none;
  }

  .strategy-tab {
    white-space: nowrap;
  }

  .solution-scenes {
    min-height: 58vh;
  }

  .solution-copy {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 36px;
    width: auto;
    max-width: 390px;
  }

  .solution-metrics {
    position: absolute;
    right: var(--gutter);
    bottom: 34px;
    width: 180px;
    opacity: 0.55;
  }

  .case-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-title {
    font-size: clamp(54px, 17vw, 72px);
    line-height: 0.84;
  }

  .hero-title span:nth-child(2) {
    padding-left: clamp(22px, 8vw, 34px);
  }

  .hero-title span:nth-child(3) {
    padding-left: clamp(36px, 10vw, 48px);
  }

  .intro,
  .portfolio,
  .people,
  .contact-cta,
  .map-copy {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .stats {
    padding-bottom: 54px;
  }

  .case-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .case-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .stats-tower {
    grid-template-columns: 1fr;
  }

  .stat-card:nth-child(2),
  .stat-card:nth-child(4) {
    transform: none;
  }

  .solution-sticky {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ghost-title {
    top: 28%;
    left: 0;
    font-size: clamp(58px, 19vw, 84px);
  }

  .red-block.wide,
  .red-block.low {
    width: 62%;
    height: 14%;
  }

  .solution-copy {
    left: 20px;
    right: 20px;
    bottom: 54px;
  }

  .solution-metrics {
    display: none;
  }

  .footer-bottom,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

.red-block {
  background: rgba(215, 255, 84, 0.92);
}

.service-deck {
  height: 520vh;
  background: #080908;
  color: var(--ink);
  position: relative;
}

.service-deck-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 120px);
  padding: 104px var(--gutter) 72px;
  overflow: hidden;
}

.service-deck-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(215, 255, 84, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  pointer-events: none;
}

.service-deck-nav,
.service-deck-main {
  position: relative;
  z-index: 2;
}

.service-deck-nav {
  align-self: center;
  display: grid;
  gap: 8px;
}

.service-pill {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: rgba(246,245,239,0.72);
  text-align: left;
  cursor: pointer;
  transition: min-height .35s ease, background .35s ease, color .35s ease, transform .35s ease;
}

.service-pill span {
  color: var(--accent);
}

.service-pill.is-active {
  min-height: 78px;
  color: var(--ink);
  background: rgba(215,255,84,0.12);
  transform: translateX(18px);
}

.service-deck-main {
  align-self: center;
  min-height: 610px;
}

.service-detail {
  display: none;
  max-width: 980px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.service-detail.is-active {
  display: block;
  animation: serviceIn .58s cubic-bezier(.2,.8,.2,1) both;
}

.service-detail h2 {
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 106px);
  line-height: .9;
  font-weight: 500;
}

.service-detail > p:not(.card-eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.32;
}

.mini-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.mini-process div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}

.mini-process strong {
  display: block;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 14px;
}

.mini-process span {
  color: var(--muted);
  line-height: 1.35;
}

@keyframes serviceIn {
  from { opacity: 0; transform: translateY(30px) scale(.985); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.orbit-work {
  height: 330vh;
  background: #f7f6f1;
  color: #242424;
  position: relative;
}

.orbit-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 80px var(--gutter);
}

.orbit-copy {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.orbit-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6.5vw, 104px);
  line-height: .92;
  font-weight: 500;
}

.orbit-copy p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(34,34,34,.66);
  font-size: 20px;
  line-height: 1.35;
}

.orbit-stage {
  position: absolute;
  inset: 8vh 0 auto;
  height: 72vh;
  transform: rotate(calc(var(--orbit-rotation, 0deg) * -1));
  transition: transform .12s linear;
}

.orbit-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(190px, 18vw, 310px);
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(34,34,34,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  transform-origin: 50% 170%;
}

.orbit-card:nth-child(1) { transform: translate(-50%, -50%) rotate(-58deg) translateY(-330px) rotate(48deg); }
.orbit-card:nth-child(2) { transform: translate(-50%, -50%) rotate(-24deg) translateY(-330px) rotate(14deg); }
.orbit-card:nth-child(3) { transform: translate(-50%, -50%) rotate(10deg) translateY(-330px) rotate(-20deg); }
.orbit-card:nth-child(4) { transform: translate(-50%, -50%) rotate(44deg) translateY(-330px) rotate(-54deg); }
.orbit-card:nth-child(5) { transform: translate(-50%, -50%) rotate(78deg) translateY(-330px) rotate(-88deg); }

.orbit-card span {
  color: var(--accent);
  background: #101110;
  display: inline-flex;
  padding: 6px 8px;
  margin-bottom: 52px;
}

.orbit-card strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.orbit-card em {
  display: block;
  margin-top: 12px;
  color: rgba(34,34,34,.62);
  font-style: normal;
  line-height: 1.25;
}

.process-map-section {
  min-height: 160vh;
}

.process-map-visual {
  min-height: 100vh;
}

.process-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-base,
.process-active {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.process-base {
  stroke: rgba(255,255,255,.16);
}

.process-active {
  stroke: var(--accent);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--process-progress, 0));
  pathLength: 1;
}

.map-pin.audit { left: 70%; top: 16%; }
.map-pin.ux { left: 76%; top: 38%; }
.map-pin.code { left: 58%; top: 57%; }
.map-pin.launch { left: 66%; top: 78%; }

.process-runner {
  position: absolute;
  left: calc(58% + (var(--process-progress, 0) * 18%));
  top: calc(16% + (var(--process-progress, 0) * 62%));
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #050505;
  font-size: 22px;
  transform: rotate(calc(var(--process-progress, 0) * 84deg));
}

.finish-flag {
  position: absolute;
  right: 12%;
  bottom: 12%;
  padding: 14px 18px;
  background: var(--accent);
  color: #050505;
  opacity: var(--finish-opacity, 0);
  transform: translateY(calc((1 - var(--finish-opacity, 0)) * 20px));
}

.contact-section {
  min-height: 138vh;
  padding: 150px var(--gutter);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 16% 12%, rgba(215,255,84,.11), transparent 28rem),
    #080908;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1fr);
  gap: clamp(36px, 7vw, 110px);
  max-width: 1280px;
  margin: 0 auto;
}

.contact-intro h2 {
  margin: 0 0 26px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: .94;
  font-weight: 500;
}

.contact-intro p:last-child {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

[data-contact-step] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-contact-step].is-step-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.modero-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.modero-form .form-row.is-step-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: rgba(246,245,239,.76);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.modero-form input,
.modero-form select,
.modero-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 15px 16px;
  border-radius: 0;
  font: inherit;
}

.modero-form select option {
  background: #101110;
  color: var(--ink);
}

.modero-form textarea {
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

.choice-grid input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 1px solid rgba(246,245,239,.38);
  background: #050605;
  position: relative;
  cursor: pointer;
}

.choice-grid input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.choice-grid input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #050605;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.choice-grid label span {
  display: block;
  line-height: 1.12;
}

.modero-form .btn {
  justify-self: start;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  box-shadow: 0 18px 44px rgba(215,255,84,.18);
  font-weight: 600;
}

.modero-form .btn:hover {
  color: #050505;
  background: #fff;
  transform: translateY(-1px);
}

.form-success {
  grid-column: 1 / -1;
  padding: 16px 18px;
  background: var(--accent);
  color: #050505;
}

.whatsapp-sticky {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #050505;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.whatsapp-sticky span {
  font-size: 25px;
}

.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1020px) {
  .service-deck-sticky,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .service-deck-nav {
    align-self: end;
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .service-pill {
    min-width: 230px;
  }

  .service-pill.is-active {
    transform: none;
  }

  .mini-process,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .strategy-nav,
  .service-deck-nav {
    scroll-snap-type: none;
    scroll-padding-left: 0;
  }

  .strategy-tab,
  .service-pill {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .strategy-stage {
    height: 420vh;
  }

  .solution-sticky {
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding-top: 82px;
  }

  .strategy-nav {
    position: absolute;
    left: 20px;
    right: 0;
    top: 66px;
    gap: 10px;
    z-index: 8;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, rgba(189,187,182,.96), rgba(189,187,182,.72), transparent);
  }

  .solution-scenes {
    padding-top: 76px;
  }

  .strategy-tab {
    min-width: max-content;
    padding: 10px 14px;
    border: 1px solid rgba(34,34,34,.28);
    background: rgba(255,255,255,.44);
    color: rgba(20,20,20,.78);
    font-size: 14px;
    font-weight: 600;
  }

  .strategy-tab.is-active {
    background: #fff;
    color: #050505;
  }

  .service-deck {
    height: 560vh;
  }

  .service-deck-sticky {
    min-height: 100svh;
    padding: 82px 18px 22px;
    gap: 14px;
    align-content: start;
    overflow: hidden;
  }

  .service-deck-nav {
    align-self: start;
    gap: 8px;
    margin: 0 -18px;
    padding: 0 18px 8px;
  }

  .service-pill {
    grid-template-columns: 24px 1fr;
    min-width: 178px;
    min-height: 46px;
    padding: 0 12px;
    font-size: 14px;
  }

  .service-pill.is-active {
    min-height: 50px;
  }

  .service-deck-main {
    min-height: 0;
    align-self: start;
  }

  .service-detail {
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    max-height: calc(100svh - 168px);
    overflow: hidden;
  }

  .service-detail h2,
  .orbit-copy h2,
  .contact-intro h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .service-detail h2 {
    margin-bottom: 14px;
    font-size: clamp(38px, 12vw, 50px);
  }

  .service-detail > p:not(.card-eyebrow) {
    font-size: 15px;
    line-height: 1.23;
  }

  .mini-process {
    gap: 8px;
    margin-top: 14px;
  }

  .mini-process div {
    min-height: 0;
    padding: 12px;
  }

  .mini-process strong {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .mini-process span {
    font-size: 13px;
    line-height: 1.2;
  }

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

  .orbit-sticky {
    padding: 72px 20px;
  }

  .orbit-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .orbit-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: .98;
  }

  .orbit-copy p:last-child {
    max-width: 100%;
    font-size: 16px;
  }

  .orbit-card {
    width: 210px;
    min-height: 190px;
  }

  .orbit-card:nth-child(1) { transform: translate(-50%, -50%) rotate(-70deg) translateY(-250px) rotate(60deg); }
  .orbit-card:nth-child(2) { transform: translate(-50%, -50%) rotate(-30deg) translateY(-250px) rotate(20deg); }
  .orbit-card:nth-child(3) { transform: translate(-50%, -50%) rotate(10deg) translateY(-250px) rotate(-20deg); }
  .orbit-card:nth-child(4) { transform: translate(-50%, -50%) rotate(50deg) translateY(-250px) rotate(-60deg); }
  .orbit-card:nth-child(5) { transform: translate(-50%, -50%) rotate(90deg) translateY(-250px) rotate(-100deg); }

  .process-map-section {
    min-height: 230vh;
    display: block;
  }

  .process-map-visual {
    position: sticky;
    top: 64px;
    min-height: calc(100svh - 64px);
    overflow: hidden;
  }

  .process-path {
    transform: translateY(-4%) scaleY(1.34);
    transform-origin: top center;
  }

  .map-pin.audit { left: 62%; top: 7%; }
  .map-pin.ux { left: 75%; top: 46%; }
  .map-pin.code { left: 55%; top: 82%; }
  .map-pin.launch { left: 66%; top: 112%; }

  .finish-flag {
    bottom: 7%;
  }
}
