:root {
  --ink: #14213d;
  --ink-soft: #263451;
  --red: #c94f42;
  --red-dark: #a8382f;
  --gold: #c99a3d;
  --ivory: #f8f5ee;
  --paper: #fffcf6;
  --line: rgba(20, 33, 61, 0.16);
  --muted: #687083;
  --white: #fff;
  --font: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --container: min(1420px, calc(100vw - 64px));
  --radius: 30px;
  --shadow: 0 28px 70px rgba(20, 33, 61, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 15% 4%, rgba(201, 154, 61, 0.08), transparent 30%),
    var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-meter {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition:
    padding 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.site-header.is-compact {
  padding-top: 10px;
}

.header-shell {
  width: var(--container);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.84);
  box-shadow: 0 14px 45px rgba(20, 33, 61, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 208px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch button {
  width: 38px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.language-switch button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s ease;
}

.button span:last-child {
  font-size: 1.15em;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.22);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 16px 32px rgba(20, 33, 61, 0.28);
}

.button-red {
  background: var(--red);
  box-shadow: 0 14px 32px rgba(201, 79, 66, 0.26);
  color: var(--white);
}

.button-red:hover {
  background: var(--red-dark);
  box-shadow: 0 20px 40px rgba(201, 79, 66, 0.3);
}

.button-light {
  background: var(--ivory);
  color: var(--ink);
}

.button-large {
  min-height: 66px;
  padding-inline: 30px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle i {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.25s ease;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: 0;
  padding: 152px max(5vw, calc((100vw - 1500px) / 2)) 88px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 13%;
  left: 39%;
  width: 54vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  filter: blur(8px);
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 33, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 40%, #000 85%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 12;
  max-width: 730px;
  padding-left: clamp(0px, 2vw, 34px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 24px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.intro h2,
.services h2,
.social-scene h2,
.packages h2,
.process h2,
.principles h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6.35vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -0.072em;
  line-height: 0.88;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
  font-weight: 400;
}

.hero h1 {
  max-width: 840px;
  text-wrap: balance;
}

.hero h1 em {
  display: inline;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.35vw, 1.35rem);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid rgba(201, 79, 66, 0.38);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 79, 66, 0.08);
}

.hero-network {
  position: relative;
  z-index: 4;
  width: min(59vw, 980px);
  aspect-ratio: 1.18;
  margin-left: -5%;
  perspective: 1000px;
}

.hero-network::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 3%;
  left: 6%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20, 33, 61, 0.18), transparent 68%);
  filter: blur(18px);
}

.hero-connections {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 0.02 0.016;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.85));
  animation: hero-route 2.6s var(--ease) both;
}

.route-red {
  stroke: var(--red);
}

.route-gold {
  stroke: var(--gold);
}

.route-ink {
  stroke: var(--ink);
}

.route-2 {
  animation-delay: 0.28s;
}

.route-3 {
  animation-delay: 0.5s;
}

.route-4 {
  animation-delay: 0.68s;
}

@keyframes hero-route {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.hero-building {
  position: absolute;
  z-index: 4;
  width: 58%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 28px rgba(20, 33, 61, 0.18));
  animation: building-in 1.4s var(--ease) both;
  will-change: transform;
}

.building-cafe {
  z-index: 5;
  bottom: 5%;
  left: -8%;
  width: 53%;
  animation-delay: 0.12s;
}

.building-workshop {
  z-index: 6;
  right: -9%;
  bottom: -1%;
  width: 58%;
  animation-delay: 0.26s;
}

.building-studio {
  z-index: 3;
  top: 15%;
  left: 36%;
  width: 48%;
  opacity: 0.95;
  animation-delay: 0.38s;
}

@keyframes building-in {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.82) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

.signal-node {
  position: absolute;
  z-index: 8;
  min-width: 128px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 16px 34px rgba(20, 33, 61, 0.14);
  backdrop-filter: blur(12px);
  animation:
    node-in 0.9s var(--ease) var(--delay) both,
    node-float 4.8s ease-in-out calc(var(--delay) + 1s) infinite;
}

.signal-node .node-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
}

.signal-node b {
  font-size: 0.68rem;
  line-height: 1.1;
}

.signal-node small {
  color: var(--muted);
  font-size: 0.56rem;
}

.node-maps {
  top: 14%;
  left: 9%;
}

.node-web {
  top: 1%;
  left: 54%;
}

.node-social {
  top: 35%;
  right: 12%;
}

.node-review {
  bottom: 7%;
  left: 47%;
}

.node-review .node-icon {
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
}

@keyframes node-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.8);
  }
}

@keyframes node-float {
  50% {
    transform: translateY(-10px);
  }
}

.pin-icon {
  position: relative;
  display: block;
}

.pin-icon::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 11px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 10px 2px;
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.window-icon {
  position: relative;
  display: block;
}

.window-icon::before {
  content: "";
  position: absolute;
  inset: 8px 6px 7px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.window-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 9px;
  width: 15px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 -0.5px currentColor;
}

.camera-icon {
  position: relative;
  display: block;
}

.camera-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.camera-icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 7px -5px 0 -3px currentColor;
}

.play-icon,
.star-icon,
.arrow-icon,
.spark-icon {
  display: grid;
  place-items: center;
}

.network-core {
  position: absolute;
  z-index: 10;
  top: 43%;
  left: 45%;
  width: 118px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: var(--ink);
  box-shadow:
    0 0 0 12px rgba(248, 245, 238, 0.7),
    0 22px 46px rgba(20, 33, 61, 0.25);
  animation: core-in 1.1s var(--ease) 0.6s both;
}

.network-core::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(20, 33, 61, 0.35);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.network-core img {
  width: 60px;
}

.network-core span {
  display: none;
}

@keyframes core-in {
  from {
    opacity: 0;
    transform: scale(0.4) rotate(-15deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.micro-label {
  position: absolute;
  z-index: 9;
  padding: 5px 8px;
  border-left: 2px solid var(--red);
  background: rgba(248, 245, 238, 0.72);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.label-local {
  right: 5%;
  bottom: 2%;
}

.label-system {
  top: 43%;
  left: 3%;
  transform: rotate(-90deg);
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll span {
  width: 1px;
  height: 50px;
  background: var(--ink);
  transform-origin: top;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.hero-scroll b {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

@keyframes scroll-line {
  50% {
    transform: scaleY(0.35);
    opacity: 0.3;
  }
}

.ticker {
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--ivory);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: ticker 38s linear infinite;
}

.ticker span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  padding: clamp(95px, 11vw, 180px) max(5vw, calc((100vw - 1420px) / 2));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(50px, 7vw, 100px);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
}

.section-kicker p {
  margin: 0;
}

.intro {
  position: relative;
  background: var(--paper);
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 9vw;
}

.intro h2,
.services h2,
.packages h2,
.process h2,
.faq h2 {
  font-size: clamp(3.5rem, 6.4vw, 7.4rem);
}

.intro-side {
  padding-bottom: 8px;
}

.intro-side > p:first-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.hand-note {
  margin: 38px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-story {
  position: relative;
  height: 390vh;
  background: var(--ink);
  color: var(--white);
}

.network-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.network-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 68% 55%, #000 18%, transparent 72%);
}

.story-copy {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: max(5vw, calc((100vw - 1420px) / 2));
  width: min(29vw, 470px);
  transform: translateY(-50%);
}

.story-step {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(calc(-50% + 35px));
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.65s var(--ease);
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(-50%);
}

.story-step > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.story-step h3 {
  max-width: 430px;
  margin: 22px 0;
  font-size: clamp(3rem, 5.4vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.story-step p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
}

.story-world {
  position: absolute;
  z-index: 5;
  top: 11%;
  right: 2%;
  left: max(40vw, calc((100vw - 1420px) / 2 + 530px));
  width: auto;
  height: 83%;
  overflow: visible;
}

.world-glow {
  position: absolute;
  z-index: -2;
  top: 22%;
  left: 20%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 79, 66, 0.17), rgba(201, 154, 61, 0.06) 35%, transparent 70%);
  filter: blur(10px);
}

.story-routes {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.story-routes path,
.final-orbit svg path {
  fill: none;
  stroke: rgba(248, 245, 238, 0.72);
  stroke-width: 1.6;
  stroke-dasharray: 0.015 0.014;
  stroke-linecap: round;
  stroke-dashoffset: calc(1 - var(--network-progress, 0));
}

.story-routes path:nth-child(2) {
  stroke: var(--red);
}

.story-routes path:nth-child(3) {
  stroke: var(--gold);
}

.story-routes path:nth-child(4) {
  stroke: var(--red);
}

.story-routes path:nth-child(5) {
  stroke: rgba(248, 245, 238, 0.46);
}

.story-routes path:nth-child(6) {
  stroke: var(--gold);
}

.story-city {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 8%;
  width: auto;
  height: 78%;
  max-width: 94%;
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  max-width: none;
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.32));
  opacity: var(--city-opacity, 0.72);
  transform: translateY(var(--city-y, 60px)) scale(0.98);
  transition: opacity 0.55s ease;
  will-change: transform, opacity;
}

.world-hub,
.platform-orb {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: scale(0.35);
  transition:
    opacity 0.55s ease,
    transform 0.7s var(--ease);
}

.world-hub.is-active,
.platform-orb.is-active {
  opacity: 1;
  transform: scale(1);
}

.world-hub {
  top: 43%;
  left: 47%;
  width: 142px;
  height: 142px;
  flex-direction: column;
  gap: 5px;
  border: 10px solid rgba(248, 245, 238, 0.75);
  background: var(--ivory);
  color: var(--ink);
}

.world-hub::after {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(248, 245, 238, 0.4);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.world-hub img {
  width: 70px;
}

.world-hub span {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-orb {
  width: 86px;
  height: 86px;
  flex-direction: column;
  gap: 5px;
  background: rgba(248, 245, 238, 0.95);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.platform-orb span {
  width: 31px;
  height: 31px;
  color: var(--red);
}

.platform-orb b {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.orb-maps {
  top: 34%;
  left: 5%;
}

.orb-web {
  top: 21%;
  left: 30%;
}

.orb-content {
  top: 20%;
  right: 32%;
}

.orb-social {
  top: 29%;
  right: 1%;
}

.orb-contact {
  bottom: 3%;
  left: 35%;
}

.orb-review {
  right: 16%;
  bottom: 7%;
}

.story-caption {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 3%;
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-progress {
  position: absolute;
  z-index: 25;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-progress > span {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.story-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.story-progress b {
  min-width: 46px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.services {
  background: var(--ivory);
}

.services-heading,
.packages-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 7vw;
  margin-bottom: 80px;
}

.services-heading > p,
.packages-heading > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.service-card:hover {
  z-index: 3;
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.service-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-glyph {
  position: absolute;
  top: 27px;
  right: 27px;
  width: 58px;
  height: 58px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-card h3 {
  margin: auto 0 18px;
  font-size: clamp(1.7rem, 2.25vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-card > p {
  margin: 0;
  opacity: 0.75;
  line-height: 1.55;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 750;
  opacity: 0.65;
}

.service-card-red {
  border-color: transparent;
  background: var(--red);
  color: var(--white);
}

.service-card-gold {
  border-color: transparent;
  background: var(--gold);
}

.service-card-ink {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.service-card-wide {
  min-height: 300px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  align-items: center;
  gap: 50px;
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 82% 50%, rgba(201, 79, 66, 0.15), transparent 22%),
    var(--paper);
}

.service-card-wide h3 {
  margin: 22px 0 0;
}

.service-card-wide > p {
  max-width: 360px;
}

.orbit-demo {
  position: relative;
  width: 240px;
  height: 190px;
  justify-self: end;
}

.orbit-demo::before,
.orbit-demo::after {
  content: "";
  position: absolute;
  inset: 12px 34px;
  border: 1px dashed rgba(20, 33, 61, 0.32);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-demo::after {
  inset: 38px 62px;
  animation-direction: reverse;
  animation-duration: 12s;
}

.orbit-demo span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.orbit-demo span:nth-child(1) {
  top: 2px;
  left: 48%;
}

.orbit-demo span:nth-child(2) {
  right: 12px;
  bottom: 22px;
  background: var(--red);
}

.orbit-demo span:nth-child(3) {
  bottom: 8px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
}

.orbit-demo i {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  padding: 8px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 12px 32px rgba(20, 33, 61, 0.15);
  transform: translate(-50%, -50%);
}

.social-scene {
  position: relative;
  min-height: 920px;
  padding: clamp(100px, 11vw, 180px) max(5vw, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(580px, 1.2fr);
  align-items: center;
  gap: 4vw;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.social-scene::before {
  content: "CONTENT";
  position: absolute;
  top: -0.2em;
  right: -0.07em;
  color: rgba(255, 255, 255, 0.055);
  font-size: 15vw;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.social-copy {
  position: relative;
  z-index: 10;
}

.social-scene h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.social-scene h2 em {
  color: var(--gold);
}

.social-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.content-machine {
  position: relative;
  min-height: 650px;
}

.content-machine svg {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.content-machine path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  stroke-dasharray: 0.02 0.015;
  animation: machine-line 3s linear infinite;
}

.content-machine path:nth-child(2) {
  stroke: var(--gold);
  animation-delay: -1s;
}

.content-machine path:nth-child(3) {
  animation-delay: -2s;
}

@keyframes machine-line {
  to {
    stroke-dashoffset: -1;
  }
}

.content-source {
  position: absolute;
  z-index: 5;
  top: 24%;
  left: -10%;
  width: 49%;
}

.content-source img {
  width: 100%;
  filter: drop-shadow(0 30px 24px rgba(92, 29, 24, 0.28));
}

.content-card {
  position: absolute;
  z-index: 6;
  width: 190px;
  aspect-ratio: 0.76;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(248, 245, 238, 0.92);
  box-shadow: 0 28px 48px rgba(92, 29, 24, 0.25);
  color: var(--ink);
  backdrop-filter: blur(12px);
  animation: content-float 5.5s ease-in-out infinite;
}

.content-card::after {
  content: "";
  position: absolute;
  inset: 52px 14px 34px;
  border-radius: 17px;
  background:
    linear-gradient(145deg, transparent 47%, rgba(20, 33, 61, 0.65) 48% 52%, transparent 53%),
    linear-gradient(25deg, var(--red) 0 35%, var(--gold) 36% 58%, var(--ink) 59%);
}

.content-card > span,
.content-card > b {
  position: absolute;
  z-index: 3;
  top: 17px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

.content-card > b {
  right: 17px;
}

.content-card > i {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--red);
  font-style: normal;
  transform: translate(-50%, -50%);
}

.card-post {
  top: 3%;
  right: 5%;
  transform: rotate(7deg);
}

.card-reel {
  top: 36%;
  right: -4%;
  background: var(--ink);
  color: var(--white);
  animation-delay: -1.8s;
}

.card-story {
  right: 27%;
  bottom: 0;
  transform: rotate(-7deg);
  animation-delay: -3.4s;
}

@keyframes content-float {
  50% {
    translate: 0 -12px;
  }
}

.content-label {
  position: absolute;
  z-index: 8;
  padding: 8px 11px;
  border-left: 2px solid var(--gold);
  background: rgba(20, 33, 61, 0.86);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.label-input {
  bottom: 18%;
  left: 8%;
}

.label-output {
  right: 1%;
  bottom: 7%;
}

.packages {
  background: var(--paper);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.package-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.package-featured {
  border-color: var(--red);
  background: var(--ink);
  color: var(--white);
}

.featured-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-top > span {
  font-size: 0.65rem;
  font-weight: 800;
}

.package-top i {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--red);
  font-style: normal;
}

.package-type {
  margin: 54px 0 10px;
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.package-card h3 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.package-card > p:not(.package-type) {
  min-height: 96px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.package-featured > p:not(.package-type) {
  color: rgba(255, 255, 255, 0.65);
}

.package-card ul {
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.package-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 20px;
  font-size: 0.82rem;
}

.package-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.65rem;
}

.package-card > a {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
}

.package-featured > a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold);
}

.package-note {
  max-width: 800px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.process {
  background: var(--ivory);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(480px, 1.15fr);
  gap: 8vw;
}

.process-title {
  position: sticky;
  top: 150px;
  align-self: start;
}

.process-title h2 {
  font-size: clamp(3.5rem, 5.8vw, 6.7rem);
}

.process-title > p {
  max-width: 360px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 190px;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: start;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 13px;
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.principles {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(600px, 1.45fr);
  gap: 8vw;
  overflow: hidden;
  background: var(--gold);
}

.principles::after {
  content: "✦";
  position: absolute;
  right: -0.04em;
  bottom: -0.38em;
  color: rgba(248, 245, 238, 0.24);
  font-size: 40vw;
  line-height: 1;
}

.principles-mark {
  position: relative;
  z-index: 2;
  align-self: start;
}

.mark-contrast {
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 18px 38px rgba(20, 33, 61, 0.15);
}

.principles-mark img {
  width: 100px;
}

.principles-mark span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

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

.principles-copy > p:first-child {
  margin: 0 0 28px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.principles h2 {
  font-size: clamp(3.4rem, 6vw, 7rem);
}

.principles h2 em {
  color: var(--red);
}

.principles-copy > p:last-child {
  max-width: 640px;
  margin: 38px 0 0;
  color: rgba(20, 33, 61, 0.7);
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(500px, 1.25fr);
  align-items: start;
  gap: 8vw;
}

.faq h2 {
  position: sticky;
  top: 150px;
  font-size: clamp(3.5rem, 5.7vw, 6.5rem);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 630px;
  margin: -6px 0 32px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  min-height: 1040px;
  padding: clamp(120px, 12vw, 190px) max(5vw, calc((100vw - 1420px) / 2));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(201, 79, 66, 0.2), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
  mask-image: radial-gradient(circle, #000 15%, transparent 75%);
}

.contact-layout {
  position: relative;
  z-index: 20;
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.7fr);
  align-items: center;
  gap: clamp(64px, 8vw, 140px);
}

.final-copy {
  position: relative;
  z-index: 20;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(4rem, 6.2vw, 7.4rem);
  line-height: 0.86;
}

.final-cta h2 em {
  color: var(--gold);
}

.final-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.contact-promises {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.contact-promises li {
  padding: 9px 14px;
  border: 1px solid rgba(248, 245, 238, 0.18);
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-promises li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 61, 0.12);
}

.contact-form {
  position: relative;
  z-index: 24;
  min-width: 0;
  max-width: 100%;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background: rgba(248, 245, 238, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(201, 79, 66, 0.1);
}

.contact-form-heading {
  margin-bottom: 30px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.contact-form-heading h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.contact-form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-size: 0.72rem;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 61, 0.18);
  border-radius: 14px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.form-grid input,
.form-grid select {
  min-height: 52px;
  padding: 0 16px;
}

.form-grid textarea {
  min-height: 132px;
  padding: 15px 16px;
  line-height: 1.5;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9096a4;
}

.form-grid input:hover,
.form-grid select:hover,
.form-grid textarea:hover {
  border-color: rgba(20, 33, 61, 0.34);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(201, 79, 66, 0.12);
}

.form-consent {
  margin: 22px 0 18px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.form-consent a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent-static {
  display: block;
  margin: 10px 0 0;
  text-align: center;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(201, 154, 61, 0.12);
  color: var(--ink);
  line-height: 1.45;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.final-orbit {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.final-orbit svg {
  position: absolute;
  inset: 10% 5%;
  width: 90%;
  height: 80%;
  overflow: visible;
  --network-progress: 0.85;
}

.final-orbit svg path {
  stroke: rgba(248, 245, 238, 0.25);
  animation: machine-line 7s linear infinite;
}

.final-orbit svg path:nth-child(2) {
  stroke: var(--red);
  animation-direction: reverse;
}

.final-building {
  position: absolute;
  width: clamp(290px, 28vw, 520px);
  opacity: 0.54;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
}

.final-cafe {
  bottom: -4%;
  left: -6%;
  transform: rotate(-3deg);
}

.final-workshop {
  right: -6%;
  bottom: -2%;
  transform: rotate(4deg);
}

.final-logo {
  position: absolute;
  top: 16%;
  right: 12%;
  width: 110px;
  animation: node-float 5s ease-in-out infinite;
}

.site-footer {
  padding: 64px max(5vw, calc((100vw - 1420px) / 2)) 32px;
  background: var(--ivory);
}

.footer-main {
  min-height: 160px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 30px;
}

.brand-footer img {
  width: 220px;
}

.footer-main p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-contact a {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 750;
}

.footer-bottom {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-bottom a:hover,
.footer-bottom button:hover,
.footer-bottom a:focus-visible,
.footer-bottom button:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: var(--ivory);
  box-shadow: 0 40px 120px rgba(20, 33, 61, 0.32);
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(20, 33, 61, 0.72);
  backdrop-filter: blur(8px);
}

.privacy-dialog > img {
  width: 58px;
  margin-bottom: 28px;
}

.privacy-dialog h2 {
  margin: 8px 0 16px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.98;
}

.privacy-dialog > p:not(.section-index) {
  color: var(--muted);
  line-height: 1.65;
}

.privacy-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.privacy-status {
  margin: 26px 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 13px;
  align-items: start;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 16px;
  background: var(--white);
}

.privacy-status > span {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: #3f8f64;
  box-shadow: 0 0 0 5px rgba(63, 143, 100, 0.12);
}

.privacy-status div {
  display: grid;
  gap: 4px;
}

.privacy-status small {
  color: var(--muted);
  line-height: 1.45;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(20, 33, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.045) 1px, transparent 1px),
    var(--ivory);
  background-size: 54px 54px;
}

.legal-header {
  width: min(1180px, calc(100vw - 40px));
  min-height: 86px;
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.88);
  box-shadow: 0 14px 45px rgba(20, 33, 61, 0.1);
  backdrop-filter: blur(16px);
}

.legal-header .brand img {
  width: 205px;
}

.legal-content {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0 110px;
}

.legal-content h1 {
  max-width: 820px;
  margin: 18px 0 28px;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.legal-lead {
  max-width: 720px;
  margin: 0 0 80px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.legal-content section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content address {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.legal-content section p + p {
  margin-top: 16px;
}

.legal-content a,
.legal-footer a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(201, 79, 66, 0.5);
  text-underline-offset: 4px;
}

.legal-footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.mobile-cta {
  display: none;
}

.noscript-note {
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.9s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1220px) {
  :root {
    --container: calc(100vw - 36px);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
    padding-inline: 4vw;
  }

  .hero-network {
    width: 61vw;
    margin-left: -10%;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-scene {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    position: relative;
    min-height: 58px;
    padding: 7px 8px 7px 15px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 178px;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 28px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s,
      transform 0.45s var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: clamp(2.3rem, 8vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -0.05em;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 145px 28px 70px;
    display: block;
  }

  .hero-copy {
    max-width: 810px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10vw, 6.8rem);
  }

  .hero-network {
    width: 106vw;
    max-width: 930px;
    margin: 10px -16vw -30px auto;
  }

  .hero-scroll {
    display: none;
  }

  .intro-copy,
  .services-heading,
  .packages-heading,
  .process-layout,
  .principles,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-side,
  .services-heading > p,
  .packages-heading > p {
    max-width: 650px;
  }

  .network-story {
    height: 330vh;
  }

  .story-copy {
    top: 13%;
    left: 28px;
    width: calc(100vw - 56px);
    transform: none;
  }

  .story-step {
    top: 0;
    max-width: 620px;
    transform: translateY(30px);
  }

  .story-step.is-active {
    transform: translateY(0);
  }

  .story-step h3 {
    font-size: clamp(3rem, 8vw, 5.5rem);
  }

  .story-world {
    top: 40%;
    right: 2%;
    left: auto;
    width: 96vw;
    height: 56%;
  }

  .story-progress {
    right: 20px;
    bottom: 18px;
  }

  .social-scene {
    min-height: 1200px;
    padding-inline: 28px;
    grid-template-columns: 1fr;
  }

  .social-copy {
    max-width: 740px;
  }

  .content-machine {
    width: min(880px, 100%);
    min-height: 650px;
    margin: -60px auto 0;
  }

  .process-title,
  .faq h2 {
    position: static;
  }

  .process-title > p {
    max-width: 600px;
  }

  .principles {
    display: grid;
  }

  .mark-contrast {
    width: 104px;
    height: 104px;
  }

  .principles-mark img {
    width: 80px;
  }

  .final-cta {
    min-height: auto;
    padding: 130px 28px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .final-copy {
    max-width: 780px;
  }

  .final-cta h2 {
    max-width: 760px;
    font-size: clamp(4.5rem, 11vw, 7rem);
  }

  .contact-form {
    width: min(700px, 100%);
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 20px);
    --radius: 24px;
  }

  body {
    padding-bottom: 78px;
  }

  .header-shell {
    min-height: 56px;
  }

  .brand img {
    width: 148px;
  }

  .language-switch button {
    width: 33px;
    height: 31px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 125px 18px 56px;
    overflow: hidden;
  }

  .hero::before {
    top: 35%;
    left: -15%;
    width: 130vw;
  }

  .hero-copy {
    padding-left: 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .trust-list {
    gap: 11px 17px;
    margin-top: 25px;
    font-size: 0.62rem;
  }

  .hero-network {
    width: 144vw;
    height: 98vw;
    margin: 22px -24vw -5px -15vw;
  }

  .hero-building {
    filter: drop-shadow(0 18px 16px rgba(20, 33, 61, 0.16));
  }

  .building-cafe {
    left: -2%;
  }

  .building-workshop {
    right: 0;
  }

  .building-studio {
    left: 39%;
  }

  .signal-node {
    min-width: 102px;
    padding: 7px 9px;
    grid-template-columns: 27px 1fr;
    column-gap: 7px;
    border-radius: 13px;
  }

  .signal-node .node-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }

  .signal-node b {
    font-size: 0.54rem;
  }

  .signal-node small {
    font-size: 0.48rem;
  }

  .node-icon.pin-icon::before {
    top: 5px;
    left: 8px;
  }

  .node-icon.pin-icon::after {
    top: 10px;
    left: 13px;
  }

  .node-social {
    right: 3%;
  }

  .network-core {
    width: 80px;
    height: 80px;
  }

  .network-core img {
    width: 48px;
  }

  .micro-label {
    display: none;
  }

  .ticker {
    padding: 14px 0;
  }

  .section-pad {
    padding: 88px 18px;
  }

  .section-kicker {
    margin-bottom: 48px;
  }

  .intro h2,
  .services h2,
  .packages h2,
  .process h2,
  .faq h2,
  .principles h2 {
    font-size: clamp(3.15rem, 14vw, 4.6rem);
  }

  .intro-copy {
    gap: 34px;
  }

  .network-story {
    height: 320vh;
  }

  .story-copy {
    top: 14%;
    left: 18px;
    width: calc(100vw - 36px);
  }

  .story-step h3 {
    margin: 12px 0;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .story-step p {
    max-width: 340px;
    font-size: 0.88rem;
  }

  .story-world {
    top: 40%;
    right: 0;
    left: auto;
    width: 100vw;
    height: 58%;
  }

  .story-city {
    right: 2%;
    bottom: 12%;
    width: auto;
    height: 76%;
    max-width: 96%;
    max-height: none;
  }

  .node-social {
    right: 15%;
  }

  .world-hub {
    width: 92px;
    height: 92px;
    border-width: 6px;
  }

  .world-hub img {
    width: 55px;
  }

  .world-hub span {
    display: none;
  }

  .platform-orb {
    width: 60px;
    height: 60px;
  }

  .platform-orb span {
    width: 24px;
    height: 24px;
  }

  .platform-orb b {
    font-size: 0.48rem;
  }

  .story-caption {
    display: none;
  }

  .story-progress > span {
    width: 95px;
  }

  .services-heading,
  .packages-heading {
    margin-bottom: 48px;
  }

  .service-grid {
    display: block;
  }

  .service-card {
    min-height: 330px;
    margin-bottom: 12px;
    padding: 28px;
  }

  .service-card-wide {
    min-height: 600px;
    display: flex;
    gap: 20px;
  }

  .orbit-demo {
    width: 240px;
    max-width: 100%;
    margin: 20px auto 0;
    align-self: center;
  }

  .social-scene {
    min-height: 1050px;
    padding: 92px 18px 70px;
  }

  .social-scene h2 {
    font-size: clamp(3.2rem, 14vw, 4.7rem);
  }

  .content-machine {
    min-height: 500px;
    margin-top: -10px;
    transform: scale(0.88);
    transform-origin: top center;
  }

  .content-source {
    top: 29%;
    left: -14%;
    width: 60%;
  }

  .content-card {
    width: 135px;
    border-radius: 19px;
  }

  .card-post {
    right: 4%;
  }

  .card-reel {
    right: -5%;
  }

  .card-story {
    right: 32%;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 520px;
  }

  .process-list li {
    min-height: 150px;
    padding: 28px 0;
    grid-template-columns: 48px 1fr;
  }

  .principles {
    gap: 42px;
  }

  .principles::after {
    font-size: 70vw;
  }

  .faq-layout {
    gap: 60px;
  }

  .faq-list summary {
    min-height: 85px;
    font-size: 1rem;
  }

  .final-cta {
    min-height: auto;
    padding: 110px 18px 130px;
  }

  .final-copy {
    width: 100%;
  }

  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 5rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .contact-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .contact-promises {
    display: grid;
    justify-items: start;
  }

  .contact-form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .contact-form-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .final-building {
    width: 70vw;
  }

  .final-cafe {
    bottom: -5%;
    left: -24%;
  }

  .final-workshop {
    right: -27%;
    bottom: -3%;
  }

  .final-logo {
    display: none;
  }

  .site-footer {
    padding: 55px 18px 30px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-bottom > div {
    order: 2;
    flex-wrap: wrap;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-header {
    width: calc(100vw - 20px);
    min-height: 66px;
    margin-top: 10px;
    padding: 10px 12px;
  }

  .legal-header .brand img {
    width: 145px;
  }

  .legal-header .text-link {
    font-size: 0;
  }

  .legal-header .text-link span:last-child {
    font-size: 1rem;
  }

  .legal-content {
    width: calc(100vw - 36px);
    padding: 80px 0;
  }

  .legal-content h1 {
    font-size: clamp(3.4rem, 19vw, 5.5rem);
  }

  .legal-lead {
    margin-bottom: 60px;
  }

  .legal-footer {
    width: calc(100vw - 36px);
    flex-direction: column;
  }

  .mobile-cta {
    position: fixed;
    z-index: 95;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 58px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 14px 40px rgba(20, 33, 61, 0.3);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    transition:
      opacity 0.28s ease,
      transform 0.36s var(--ease);
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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