/* =========================================================
   Sand Dunes Studio — sanddunes.studio
   Brand: Saturated purple × green dot × chunky rounded sans.
   Lifted directly from the company profile.
   ========================================================= */

:root {
  /* Brand */
  --purple:        #6C2BD9;
  --purple-dark:   #4A1FB8;
  --purple-hi:     #7C3AED;
  --purple-soft:   #F1EBFF;
  --green:         #3ED598;   /* the signature dot */
  --green-bright:  #4FE4A7;
  --ink:           #0B0B0B;
  --ink-soft:      #2A2A2A;
  --ink-mute:      #6B6B6B;
  --paper:         #F5F3F1;
  --paper-warm:    #EFEBE5;
  --line:          #E2DED7;
  --panel:         #111111;

  /* Tweakable */
  --accent:        var(--green);
  --bg:            var(--paper);
  --fg:            var(--ink);

  --f-sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
p { margin: 0; }

/* ————— Typography ————— */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--purple);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.eyebrow::before { content: "›"; font-weight: 600; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; }

.display {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

/* The period/dot — brand device */
.dot { color: var(--accent); }

/* Purple pill — used throughout the PDF */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--purple);
  color: white;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.pill.outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.pill.dark {
  background: var(--panel);
  color: white;
}

/* ————— Layout primitives ————— */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(80px, 10vw, 140px);
}

/* ————— Nav ————— */

.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in oklab, var(--bg) 94%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in oklab, var(--bg) 98%, transparent); }

.logo {
  display: inline-flex; align-items: center; gap: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo .s1 { color: var(--fg); font-size: 18px; line-height: 1; }
.logo .s2 { color: var(--fg); font-size: 18px; line-height: 1; }
.logo .dot { color: var(--accent); font-size: 18px; line-height: 1; margin-right: 4px; }
.logo .studio { color: var(--ink-mute); font-size: 12px; font-weight: 600; margin-left: 4px; align-self: flex-end; padding-bottom: 1px; }

.links { display: flex; gap: 32px; flex-wrap: nowrap; }
.links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.links a:hover { color: var(--purple); }

.nav .cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px;
  border-radius: 10px;
  background: var(--purple);
  color: white;
  font-weight: 600;
  font-size: 13px;
}
.nav-cta:hover { background: var(--purple-dark); }
.nav-cta .arr { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.15); align-items: center; justify-content: center; }

/* ————— Hero ————— */

.hero {
  position: relative;
  padding: clamp(30px, 5vw, 60px) var(--gutter) 0;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  background: linear-gradient(135deg, #2D1A5E 0%, #6C2BD9 45%, #7C3AED 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 88px) clamp(32px, 5vw, 72px);
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  color: white;
  isolation: isolate;
}

.hero-inner::before {
  /* halftone dot pattern from the PDF right side */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.22) 1px, transparent 1.6px);
  background-size: 14px 14px;
  mask-image: linear-gradient(250deg, black 10%, transparent 55%);
  -webkit-mask-image: linear-gradient(250deg, black 10%, transparent 55%);
  opacity: .55;
  z-index: 0;
  border-radius: inherit;
}
.hero-inner::after {
  /* diagonal slash accent */
  content: "";
  position: absolute;
  width: 2px; height: 160%;
  background: rgba(255,255,255,.08);
  top: -30%; left: 48%;
  transform: rotate(18deg);
  z-index: 0;
}

.hero-copy { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.9);
  margin-bottom: 32px;
}
.hero-eyebrow .chevron { color: var(--green); }

.hero h1 {
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: white;
}
.hero h1 .line { display: block; }
.hero h1 .dot { color: var(--green); }

.hero-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px 28px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  max-width: 480px;
}
.hero-meta .k {
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  padding-top: 3px;
}
.hero-meta .v { color: white; font-weight: 500; font-size: 14px; }

.hero-ctas {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, background .2s;
}
.btn-white:hover { background: var(--green); }
.btn-white .arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purple); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,.06); }

/* Hero right — character stage */
.hero-stage {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.hero-stage img, .hero-stage svg {
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 560px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.35));
  object-fit: contain;
}
.hero-stage .hero-photo {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  min-height: 620px;
  transform: scale(1.15);
  transform-origin: center center;
}

/* Hero footer strip inside the purple panel */
.hero-footer {
  position: absolute;
  left: clamp(32px, 5vw, 72px);
  right: clamp(32px, 5vw, 72px);
  bottom: 28px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,.6);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 3;
}
.hero-footer .dot-live {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-footer .dot-live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(62,213,152,.25);
}

/* ————— Marquee ————— */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 80px;
}
.marquee .track {
  display: inline-block;
  animation: marquee 42s linear infinite;
}
.marquee .track span { padding-inline: 28px; }
.marquee .sep { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ————— Section head ————— */

.section-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  padding-bottom: 0.08em;
}
.section-head .lede {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
}

/* ————— Intro: We build visuals meant to be built ————— */

.intro {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-grid h2 {
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.intro-cards {
  display: grid;
  gap: 36px;
  padding-top: 20px;
}
.intro-card h3 {
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.intro-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}

/* ————— Mission ————— */

.mission {
  padding-block: clamp(80px, 10vw, 140px);
  text-align: center;
}
.mission .eyebrow { margin-bottom: 22px; }
.mission h2 {
  color: var(--purple);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}
.mission .statement {
  max-width: 24ch;
  margin: 0 auto;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.mission .statement strong { font-weight: 800; }

.mission-scene {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, #E8B04A, #C48B2D);
  position: relative;
}
.mission-scene .cap {
  position: absolute; left: 24px; bottom: 22px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(0,0,0,.3);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ————— What We Do / Where We Fit diagrams ————— */

.fit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 72px;
  align-items: start;
}
.fit-col h3 {
  color: var(--purple);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
}
.fit-col p {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 46ch;
  margin-inline: auto;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
}
.flow-pill {
  width: 100%;
  padding: 22px 12px;
  border-radius: 12px;
  background: var(--purple);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  position: relative;
  box-shadow: 0 6px 18px -8px rgba(108,43,217,.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.flow-pill:hover { transform: translateY(-3px); box-shadow: 0 12px 24px -10px rgba(108,43,217,.7); }
.flow-pill.tall { padding-block: 28px; }
.flow-pill .sub {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,.78);
}
.flow-arrow {
  width: 28px; height: 28px;
  color: var(--ink);
}

/* ————— Services ————— */

.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.services-intro h2 {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.services-intro .toc {
  display: flex; flex-direction: column;
}
.toc a {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 4px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  font-weight: 600;
  transition: color .2s, padding .2s;
}
.toc a:first-child { border-top: 0; }
.toc a .idx {
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.toc a:hover { color: var(--purple); padding-left: 14px; }

.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-block: clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
}
.service:nth-child(even) .s-media { order: -1; }
.service .eyebrow { margin-bottom: 24px; }
.service h3 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  padding-bottom: 0.06em;
}
.service .desc {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 48ch;
}
.deliverables-label {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.deliverables {
  margin-top: 20px;
  display: flex; flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  padding-left: 72px;
}
.deliverables::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 24px;
  width: 1.5px;
  background: var(--ink);
}
.deliverables::after {
  content: "";
  position: absolute;
  left: 0; bottom: 18px;
  width: 50px; height: 10px;
  border-bottom: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  border-bottom-right-radius: 6px;
}
.deliverables .arr-tip {
  position: absolute;
  left: 48px; bottom: 14px;
  width: 0; height: 0;
  border-left: 7px solid var(--ink);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Service media: transparent container when image is present */
.s-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: auto;
  background: transparent;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.s-media:has(> svg) { aspect-ratio: 1 / 1; background: var(--purple); box-shadow: 0 30px 60px -30px rgba(108,43,217,.45); }
.s-media:has(> img) { min-height: 420px; }
.s-media img { width: 100%; height: 100%; object-fit: contain; background: transparent; }
.s-media .badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.s-media .badge.corner-br { top: auto; left: auto; bottom: 18px; right: 18px; }

.s-media.placeholder {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
}
.s-media.placeholder .ph-label {
  color: rgba(255,255,255,.9);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center;
  padding: 14px 18px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 8px;
}

/* Service 02 specialty: 3 sub-cards */
.s2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.s2-card {
  background: var(--purple);
  border-radius: var(--radius);
  padding: 22px 22px 26px;
  color: white;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column;
  transition: transform .25s ease, background .25s ease;
}
.s2-card:hover { transform: translateY(-4px); background: var(--purple-hi); }
.s2-card .icon {
  width: 34px; height: 34px;
  margin-bottom: auto;
  color: white;
}
.s2-card h4 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  margin-top: 20px;
}
.s2-card p {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  margin-top: 10px;
}

/* Service 04 flow (problem → optim → output) */
.s4-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}
.s4-box {
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: white;
}
.s4-box h5 {
  color: var(--purple);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 12px;
}
.s4-box ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.s4-box li { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.s4-arr { align-self: center; color: var(--purple); }

/* ————— Values ————— */

.values {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 140px);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.values-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.values-top h2 {
  font-size: clamp(56px, 9vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.values-toc {
  display: flex; flex-direction: column;
}
.values-toc .row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 4px;
  border-top: 1px solid var(--line);
  font-size: 22px;
  font-weight: 700;
}
.values-toc .row:first-child { border-top: 0; }
.values-toc .row .idx { color: var(--ink-mute); font-size: 14px; font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.values-grid::before,
.values-grid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 1px; background: var(--line);
}
.values-grid::before { left: 33.33%; }
.values-grid::after  { left: 66.66%; }
.value {
  padding: 0 28px;
}
.value .tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--purple);
  color: white;
  border-radius: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1;
  margin-bottom: 32px;
}
.value p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 38ch;
}

/* ————— Why Us — purple block ————— */

.why {
  background: linear-gradient(140deg, #5E23C2 0%, #6C2BD9 50%, #7C3AED 100%);
  color: white;
  padding-block: clamp(80px, 11vw, 160px);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.why .wrap { position: relative; z-index: 1; }
.why-title {
  text-align: center;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.why-title .dot { color: var(--green); }
.why-title .underline {
  display: block;
  width: min(720px, 72%);
  height: 2px;
  background: rgba(255,255,255,.45);
  margin: 18px auto 0;
}

.why-orbit {
  position: relative;
  margin: 72px auto 0;
  width: min(1100px, 100%);
  aspect-ratio: 1.55 / 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px 36px;
  align-items: center;
}
.why-cell {
  max-width: 280px;
}
.why-cell.tl { grid-column: 1; grid-row: 1; text-align: right; justify-self: end; }
.why-cell.tr { grid-column: 3; grid-row: 1; text-align: left; justify-self: start; }
.why-cell.bl { grid-column: 1; grid-row: 2; text-align: right; justify-self: end; }
.why-cell.br { grid-column: 3; grid-row: 2; text-align: left; justify-self: start; }
.why-cell h4 {
  font-size: 20px; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.why-cell p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}

.orbit-center {
  grid-column: 2; grid-row: 1 / span 2;
  position: relative;
  width: 440px; height: 440px;
  align-self: center;
  justify-self: center;
}
.orbit-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
}
.orbit-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 255px; height: 255px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
}
.orbit-icon {
  position: absolute;
  width: 144px; height: 144px;
  border-radius: 50%;
  background: white;
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.25);
}
.orbit-icon svg { width: 56px; height: 56px; }
/* Icons sit on the ring at 45° (NW, NE, SW, SE). Offset = R * cos(45°) = 220 * 0.7071 ≈ 155.5px */
.orbit-icon.i1 { top: 50%; left: 50%; transform: translate(calc(-50% - 155.5px), calc(-50% - 155.5px)); }
.orbit-icon.i2 { top: 50%; left: 50%; transform: translate(calc(-50% + 155.5px), calc(-50% - 155.5px)); }
.orbit-icon.i3 { top: 50%; left: 50%; transform: translate(calc(-50% - 155.5px), calc(-50% + 155.5px)); }
.orbit-icon.i4 { top: 50%; left: 50%; transform: translate(calc(-50% + 155.5px), calc(-50% + 155.5px)); }

.orbit-logo-mark {
  font-size: 63px;
  font-weight: 900;
  color: var(--purple);
  text-align: center;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.orbit-logo-mark .green-dot { color: var(--green); }

/* ————— Voice swap ————— */

.voice {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--bg);
}
.voice-rows {
  margin-top: 64px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.voice-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--purple);
  color: white;
  border-radius: 12px;
  overflow: hidden;
  transition: background .25s ease;
}
.voice-row:hover { background: var(--purple-hi); }
.voice-row .side {
  padding: 22px 32px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.voice-row .side.l { text-align: right; }
.voice-row .side.r { text-align: left; }
.voice-row .arr-chip {
  width: 64px; height: 36px;
  margin: 0 18px;
  background: white;
  color: var(--purple);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ————— Key Messages ————— */

.messages {
  padding-block: clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, var(--bg), #EAE3F5);
  border-top: 1px solid var(--line);
}
.messages-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.msg {
  border-radius: var(--radius-lg);
  padding: 40px 36px 34px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.msg .mark {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.msg .mark .studio { font-size: 10px; font-weight: 600; color: inherit; opacity: .65; display: block; margin-top: 2px;}
.msg q {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  quotes: none;
  margin-top: auto;
}
.msg q::before, .msg q::after { content: none; }

.msg.light { background: white; color: var(--ink); }
.msg.light .mark { color: var(--purple); }
.msg.purple { background: var(--purple); color: white; }
.msg.purple .mark { color: white; }
.msg.dark {
  grid-column: span 2;
  min-height: 220px;
  background: linear-gradient(110deg, var(--purple-dark) 0%, #2A1456 100%);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 48px;
  padding: 48px;
}
.msg.dark .mark { color: white; }
.msg.dark q { text-align: right; max-width: 20ch; margin-left: auto; }

/* ————— Contact ————— */

.contact {
  padding: clamp(40px, 5vw, 72px) var(--gutter);
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background: var(--panel);
}
.contact-l {
  background: var(--panel);
  color: white;
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-l .eyebrow { color: var(--purple-hi); }
.contact-l .eyebrow::before { color: var(--purple-hi); }
.contact-l h2 {
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-top: 28px;
}
.contact-l h2 .dot { color: var(--green); }
.contact-l .cta-primary {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 14px;
  background: var(--purple);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 48px;
  transition: background .2s;
}
.contact-l .cta-primary:hover { background: var(--purple-hi); }
.contact-l .cta-primary .arr {
  width: 28px; height: 28px;
  background: white; color: var(--purple);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-l .foot {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-r {
  background:
    linear-gradient(180deg, rgba(108,43,217,.1), rgba(108,43,217,.25)),
    linear-gradient(135deg, #8557DF, #6C2BD9);
  padding: 0;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.contact-r .top {
  flex: 1;
  background: linear-gradient(135deg, #5F2ABF, #7C3AED);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.contact-r .top::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 14px);
}
.contact-r .plate-logo {
  position: relative; z-index: 1;
  color: white;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: center;
}
.contact-r .plate-logo .dot { color: var(--green); }
.contact-r .plate-logo .studio {
  display: block;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.contact-r .bot {
  background: white;
  padding: 40px 40px 36px;
  color: var(--ink);
  position: relative;
}
.contact-r .bot .eyebrow { color: var(--purple); }
.contact-r .bot .email {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.contact-r .bot .email .dot-live {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(62,213,152,.2);
}
.contact-r .bot .url {
  margin-top: 12px;
  font-size: 14px; color: var(--purple);
  font-weight: 600;
}
.contact-r .bot .addr {
  margin-top: 6px;
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.5;
}
.contact-r .bot .socials {
  margin-top: 22px;
  display: flex; gap: 10px;
}
.contact-r .bot .socials a {
  width: 34px; height: 34px;
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.contact-r .bot .socials a:hover { color: var(--green); }
.contact-r .bot .socials svg { width: 20px; height: 20px; }

/* ————— Footer ————— */

.footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  color: var(--ink-mute);
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}
.footer-logo {
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-size: 16px;
}
.footer-logo .dot { color: var(--green); }

/* ————— Reveal ————— */

section[id] { scroll-margin-top: 80px; }

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

/* ————— Tweaks panel ————— */

.tweaks {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  width: 280px;
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.2);
  display: none;
  overflow: hidden;
}
.tweaks.on { display: block; }
.tweaks .t-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
}
.tweaks .t-head .dot {
  display: inline-flex; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-right: 8px;
}
.tweaks .t-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.tweaks label {
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-mute);
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.tweaks .seg {
  display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.tweaks .seg button {
  flex: 1; padding: 8px 8px; color: var(--ink-soft);
  border-right: 1px solid var(--line);
  font-weight: 600; font-size: 11px; text-transform: none; letter-spacing: 0;
}
.tweaks .seg button:last-child { border-right: 0; }
.tweaks .seg button[aria-pressed="true"] { background: var(--purple); color: white; }
.tweaks .swatches { display: flex; gap: 6px; }
.tweaks .swatch { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line); cursor: pointer; }
.tweaks .swatch[aria-pressed="true"] { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ————— Mobile nav ————— */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform .24s, opacity .2s, top .24s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter) 32px;
  display: flex; flex-direction: column; gap: 2px;
  z-index: 49;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.2);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 16px 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mm-cta {
  margin-top: 16px;
  background: var(--purple);
  color: white;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  justify-content: center;
  border-bottom: 0;
}

@media (max-width: 900px) {
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ————— Responsive ————— */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { order: 2; min-height: 360px; }
  .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .intro-grid, .section-head, .values-top, .services-intro, .fit-block { grid-template-columns: 1fr; gap: 32px; }
  .service { grid-template-columns: 1fr; gap: 36px; }
  .service:nth-child(even) .s-media { order: 0; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid::before, .values-grid::after { display: none; }
  .value { padding: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .messages-grid { grid-template-columns: 1fr; }
  .msg.dark { grid-column: span 1; grid-template-columns: 1fr; text-align: left; gap: 24px; }
  .msg.dark q { text-align: left; margin-left: 0; }
  .why-orbit { display: flex; flex-direction: column; aspect-ratio: auto; }
  .why-cell { text-align: left !important; justify-self: stretch !important; max-width: 100%; }
  .orbit-center { width: 220px; height: 220px; margin: 24px auto; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
  .s4-flow { grid-template-columns: 1fr; }
  .s4-arr { transform: rotate(90deg); justify-self: center; }
  .links { display: none; }
  .s2-cards { grid-template-columns: 1fr; }
  .voice-row { grid-template-columns: 1fr; text-align: center !important; }
  .voice-row .side { text-align: center !important; }
  .voice-row .arr-chip { margin: 0 auto 0; transform: rotate(90deg); }
}

/* ————— Tablet ————— */
@media (max-width: 900px) {
  .hero h1 { font-size: clamp(72px, 14vw, 128px); }
  .hero-inner { gap: 36px; }
  .hero-meta { grid-template-columns: 100px 1fr; gap: 10px 18px; font-size: 13px; }
  .nav .cta-wrap .nav-cta { font-size: 12px; padding: 10px 14px; }
  .contact-l, .contact-r .bot { padding: 36px 28px; }
  .marquee .track { font-size: clamp(18px, 4vw, 32px); }
  .mission-scene { aspect-ratio: 16 / 9; }
  .services-intro h2, .values-top h2, .why-title { font-size: clamp(48px, 9vw, 96px) !important; }
  .intro-grid h2 { font-size: clamp(44px, 9vw, 88px); }
}

/* ————— Mobile ————— */
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .nav { padding: 12px var(--gutter); }
  .nav .cta-wrap .nav-cta { display: none; }
  .nav .cta-wrap { display: flex; }
  .hero { padding-block: 60px 40px; }
  .hero-copy { gap: 24px; }
  .hero h1 { font-size: clamp(64px, 18vw, 120px); line-height: 0.9; }
  .hero-stage { min-height: 320px; }
  .hero-stage .hero-photo { min-height: 320px; transform: scale(1.08); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 11px; }
  .hero-meta { grid-template-columns: 84px 1fr; gap: 8px 14px; font-size: 12px; }

  .section { padding-block: 72px; }
  .mission { padding-block: 72px; }
  .mission .statement { font-size: clamp(26px, 7vw, 36px); }
  .mission-scene { aspect-ratio: 16 / 11; margin-top: 36px; }
  .mission-scene .cap { font-size: 10px; left: 14px; bottom: 14px; padding: 6px 10px; }

  .intro-card { padding: 24px; }
  .intro-card h3 { font-size: 16px; }
  .intro-card p { font-size: 14px; }

  .services-intro h2, .values-top h2, .why-title { font-size: clamp(40px, 12vw, 72px) !important; line-height: 0.95 !important; }
  .intro-grid h2 { font-size: clamp(40px, 12vw, 72px); }
  .service h3 { font-size: clamp(32px, 9vw, 56px) !important; }

  .s-media { border-radius: var(--radius-md); }
  .s-media:has(> img) { min-height: 260px; }

  .deliverables { padding-left: 48px; }
  .deliverables::before { top: 6px; bottom: 20px; }
  .deliverables::after { width: 32px; height: 8px; }
  .deliverables .arr-tip { left: 32px; }

  .marquee .track { font-size: clamp(16px, 5vw, 22px); gap: 16px; }

  .contact-card { border-radius: var(--radius-md); }
  .contact-l { padding: 36px 24px; }
  .contact-l .huge { font-size: clamp(40px, 12vw, 64px); }
  .contact-r .plate-logo { font-size: clamp(40px, 12vw, 64px); }
  .contact-r .bot { padding: 28px 24px 28px; }
  .contact-r .bot .email { font-size: clamp(18px, 5vw, 24px); flex-wrap: wrap; gap: 10px; }
  .contact-r .top { min-height: 220px; }

  .tweaks {
    right: 12px; bottom: 12px; left: 12px;
    width: auto; max-width: none;
  }

  .orbit-center { width: 180px; height: 180px; }
  .why-cell { padding: 0 !important; }
  .why-cell h3 { font-size: 22px !important; }

  .msg q { font-size: clamp(22px, 6vw, 30px) !important; }
  .voice-row h4 { font-size: clamp(28px, 8vw, 44px) !important; }

  .fit-col p { font-size: 14px; }
  .flow-pill { padding: 18px 10px; font-size: 12px; }

  .btn-white, .btn-ghost { padding: 14px 20px; font-size: 13px; }
}

/* ————— Small mobile (≤380px) ————— */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .hero h1 { font-size: clamp(56px, 16vw, 96px); }
  .links { gap: 14px; }
}

/* ————— Prefer reduced motion ————— */
@media (prefers-reduced-motion: reduce) {
  .marquee .track { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}

