.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 17, 20, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav__logo img {
  width: 148px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin-left: auto;
}

.nav__links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-standard);
}

.nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-med) var(--ease-out);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #fff;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 1px;
  margin-inline: auto;
  background: #fff;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.nav__toggle span::before,
.nav__toggle span::after {
  position: absolute;
}

.nav__toggle span::before {
  top: -7px;
}

.nav__toggle span::after {
  top: 7px;
}

.nav[data-open="true"] .nav__toggle span {
  background: transparent;
}

.nav[data-open="true"] .nav__toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav[data-open="true"] .nav__toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-hyperfocus);
}

.btn--primary:hover {
  background: #ff6a4d;
}

.btn--secondary {
  border-color: var(--color-ink);
  background: transparent;
  color: var(--color-ink);
}

.btn--secondary:hover {
  background: var(--color-ink);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-night);
}

.btn--light:hover {
  background: var(--color-primary);
}

.btn--glass {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.btn--glass:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-hyperfocus);
}

.btn--sm {
  min-height: 40px;
  padding: 0.68rem 0.9rem;
  font-size: var(--text-xs);
}

.section {
  position: relative;
  padding-block: clamp(80px, 9vw, 144px);
  border-top: 1px solid var(--color-line);
}

.section--tint {
  background: var(--color-bg-strong);
}

.section--night {
  border-color: #2b2d31;
  background: var(--color-night);
  color: #fff;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--color-primary);
}

.section--night .eyebrow,
.section--night .section-eyebrow,
.story-panel .section-eyebrow,
.contact-panel .section-eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.section-title {
  max-width: 14ch;
  font-size: var(--text-3xl);
}

.section-desc {
  max-width: 62ch;
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.section--night .section-desc,
.section--night .muted {
  color: rgba(255, 255, 255, 0.62);
}

.hero {
  min-height: calc(100svh - 48px);
  padding-top: var(--nav-height);
  display: grid;
  align-items: stretch;
  background: var(--color-bg);
  overflow: hidden;
}

.hero__grid {
  min-height: calc(100svh - var(--nav-height) - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 104px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__title {
  max-width: 9.2ch;
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 0.91;
}

.hero__title .mark,
.page-hero__title .mark,
.section-title .mark {
  color: var(--color-primary);
}

.hero__desc {
  max-width: 55ch;
  margin-top: clamp(24px, 3vw, 40px);
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.hero__actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero__meta {
  max-width: 670px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 78px);
  border-block: 1px solid var(--color-line);
}

.metric-card {
  min-height: 92px;
  padding: 18px 20px 18px 0;
  background: transparent;
}

.metric-card + .metric-card {
  padding-left: 20px;
  border-left: 1px solid var(--color-line);
}

.metric-card strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.1;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.globe-stage {
  position: relative;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  padding-block: var(--space-md);
}

.globe-stage::before {
  content: "";
  position: absolute;
  inset: 8% -24% 5% 3%;
  border-left: 1px solid var(--color-line);
  pointer-events: none;
}

.globe-stage__top,
.globe-stage__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.globe-stage__top {
  margin-bottom: -8px;
}

.globe-stage__bottom {
  margin-top: -10px;
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-sm);
}

.globe-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
}

.globe-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(99, 226, 229, 0.18);
}

.reach-canvas {
  width: 100%;
  aspect-ratio: 1;
  background: transparent;
}

.reach-canvas--hero {
  position: relative;
  z-index: 1;
  min-height: 320px;
}

.markets {
  border-block: 1px solid var(--color-line);
  background: var(--color-surface);
}

.markets__row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.markets__label {
  color: var(--color-ink-soft);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.markets__list,
.global-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.markets__list {
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}

.pill::before {
  content: "/";
  margin-right: 7px;
  color: var(--color-primary);
}

.pill--dark {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-ink);
}

.service-card {
  min-height: 270px;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  transition: background var(--dur-med) var(--ease-standard), color var(--dur-med) var(--ease-standard);
}

.service-card:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid var(--color-line);
}

.service-card:hover {
  background: var(--color-night);
  color: #fff;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
}

.service-card__num,
.project-card__label,
.proof-card__label {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: transparent;
  color: var(--color-ink);
  transition: border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard), transform var(--dur-med) var(--ease-out);
}

.service-card:hover .icon-box {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: rotate(8deg);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.service-card h3,
.proof-card h3,
.project-card h3,
.value-card h3,
.process-card h3,
.detail-card h2 {
  font-size: var(--text-xl);
}

.service-card p,
.proof-card p,
.project-card p,
.value-card p,
.process-card p,
.detail-card p {
  max-width: 48ch;
  margin-top: var(--space-xs);
  color: var(--color-muted);
}

.service-card:hover p,
.service-card:hover .service-card__num {
  color: rgba(255, 255, 255, 0.62);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
}

.link-arrow svg {
  width: 17px;
  height: 17px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.service-card:hover .link-arrow svg {
  transform: translateX(5px);
}

.proof-grid,
.project-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.proof-card,
.value-card,
.process-card,
.project-card {
  background: var(--color-bg);
}

.proof-card,
.value-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 40px);
}

.proof-card--accent {
  background: var(--color-primary);
  color: var(--color-hyperfocus);
}

.proof-card--accent p,
.proof-card--accent .proof-card__label {
  color: rgba(16, 17, 20, 0.68);
}

.placeholder-box {
  min-height: 100px;
  margin-top: var(--space-md);
  display: grid;
  place-items: center;
  border: 1px dashed currentColor;
  border-radius: 0;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.proof-card--accent .placeholder-box {
  color: rgba(16, 17, 20, 0.62);
}

.process-layout,
.story-layout,
.contact-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.process-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.process-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: var(--space-sm);
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.process-card p {
  color: rgba(255, 255, 255, 0.58);
}

.process-card__num {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.global-card {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  padding: 0;
  background: transparent;
  color: var(--color-ink);
}

.global-card__list {
  margin-top: var(--space-md);
}

.process-layout > .value-grid {
  grid-template-columns: repeat(2, 1fr);
}

.process-layout > .value-grid .value-card {
  min-height: 250px;
}

.cta-band {
  padding: clamp(38px, 6vw, 86px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  border-radius: 0;
  background: var(--color-night);
  color: #fff;
  overflow: hidden;
}

.cta-band h2 {
  max-width: 13ch;
  font-size: var(--text-3xl);
}

.cta-band p {
  max-width: 56ch;
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  min-height: min(720px, 82svh);
  padding-top: calc(var(--nav-height) + clamp(84px, 11vw, 164px));
  padding-bottom: clamp(72px, 9vw, 132px);
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg);
}

.page-hero__inner {
  max-width: 1080px;
}

.page-hero__title {
  max-width: 13ch;
  font-size: var(--text-4xl);
  line-height: 0.94;
}

.page-hero__desc {
  max-width: 60ch;
  margin-top: var(--space-md);
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.story-copy p + p {
  max-width: 62ch;
  margin-top: var(--space-sm);
  color: var(--color-ink-soft);
}

.story-panel,
.contact-panel {
  padding: clamp(28px, 4vw, 56px);
  border-radius: 0;
  background: var(--color-night);
  color: #fff;
}

.story-panel h3,
.contact-panel h3 {
  font-size: var(--text-2xl);
}

.story-panel p,
.contact-panel p {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.62);
}

.service-detail-list {
  display: grid;
  border-top: 1px solid var(--color-ink);
}

.detail-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 8vw, 130px);
  padding: clamp(36px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.detail-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

.detail-card__num {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs) var(--space-lg);
  margin-top: var(--space-md);
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  font-weight: 500;
}

.check-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--color-primary);
}

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

.project-card {
  overflow: hidden;
}

.project-card__visual {
  min-height: clamp(250px, 30vw, 410px);
  display: grid;
  place-items: center;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-line);
  background-color: #e8e8e3;
  background-image: linear-gradient(rgba(16, 17, 20, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 17, 20, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--color-ink);
}

.project-card:nth-child(2n) .project-card__visual {
  background-color: #18191c;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  color: #fff;
}

.project-card:nth-child(3n) .project-card__visual {
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, rgba(16, 17, 20, 0.12) 25%, transparent 25%, transparent 50%, rgba(16, 17, 20, 0.12) 50%, rgba(16, 17, 20, 0.12) 75%, transparent 75%, transparent);
  background-size: 42px 42px;
  color: var(--color-hyperfocus);
}

.project-card__stamp {
  padding: 0.72rem 0.9rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.project-card__body {
  min-height: 190px;
  padding: clamp(24px, 3vw, 40px);
}

.contact-section {
  padding-top: calc(var(--nav-height) + clamp(60px, 8vw, 112px));
}

.contact-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-panel .page-hero__title {
  font-size: var(--text-3xl);
}

.contact-list {
  display: grid;
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-link {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--dur-fast) var(--ease-standard), padding-left var(--dur-fast) var(--ease-out);
}

.contact-link:hover {
  padding-left: 6px;
  color: var(--color-primary);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-form {
  padding: 0;
  background: transparent;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.field label {
  color: var(--color-ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.field small {
  color: var(--color-muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.82rem 0;
  border: 0;
  border-bottom: 1px solid var(--color-ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--color-ink);
  transition: border-color var(--dur-fast) var(--ease-standard);
}

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

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-volt);
}

.field__error {
  min-height: 18px;
  color: var(--color-hyperfocus);
  font-size: var(--text-xs);
}

.contact-form__status {
  min-height: 24px;
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.contact-form__status[data-state="error"] {
  color: var(--color-hyperfocus);
}

.contact-form__status[data-state="success"] {
  color: var(--color-hyperfocus);
}

.footer {
  padding-block: clamp(72px, 8vw, 120px) var(--space-sm);
  border-top: 1px solid #2b2d31;
  background: var(--color-night);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.6fr));
  gap: clamp(36px, 6vw, 88px);
}

.footer__logo img {
  width: 154px;
}

.footer__tagline,
.footer__note {
  max-width: 38ch;
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.56);
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer__col-title {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: 500;
}

.footer__col a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  margin-top: clamp(56px, 8vw, 104px);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

[data-tilt] {
  transition: transform var(--dur-med) var(--ease-out);
}

@media (max-width: 1060px) {
  .nav__links {
    position: absolute;
    top: calc(var(--nav-height) - 2px);
    right: var(--space-sm);
    left: var(--space-sm);
    display: none;
    padding: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(16, 17, 20, 0.99);
    box-shadow: var(--shadow-lg);
  }

  .nav[data-open="true"] .nav__links {
    display: grid;
  }

  .nav__links a {
    width: 100%;
  }

  .nav__toggle {
    display: grid;
    place-items: center;
  }

  .hero__grid,
  .process-layout,
  .story-layout,
  .contact-layout,
  .split-layout,
  .section-head--split,
  .detail-card {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-bottom: 40px;
  }

  .hero__title {
    max-width: 11ch;
  }

  .globe-stage {
    width: min(660px, 92vw);
    margin-inline: auto;
  }

  .globe-stage::before {
    inset: 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .global-card,
  .contact-panel {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .nav__logo img {
    width: 132px;
  }

  .nav__actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: 0;
    gap: 40px;
    padding-block: 56px 32px;
  }

  .hero__title {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

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

  .metric-card {
    min-height: 0;
    padding: 16px 0;
  }

  .metric-card + .metric-card {
    padding-left: 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .globe-stage__top,
  .globe-stage__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .markets__row {
    align-items: flex-start;
    flex-direction: column;
    padding-block: var(--space-sm);
  }

  .markets__list {
    justify-content: flex-start;
  }

  .service-grid,
  .proof-grid,
  .project-grid,
  .value-grid,
  .process-layout > .value-grid,
  .field-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(odd) {
    min-height: 240px;
    padding: 28px 0;
    border-right: 0;
  }

  .proof-card,
  .value-card,
  .process-layout > .value-grid .value-card {
    min-height: 220px;
  }

  .process-card {
    grid-template-columns: 44px 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: var(--space-md);
  }

  .page-hero {
    min-height: 72svh;
  }

  .page-hero__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .detail-card {
    gap: var(--space-md);
  }

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Apple-inspired glass layer shared across every page. */
.nav {
  inset: 14px auto auto 50%;
  isolation: isolate;
  width: min(1120px, calc(100% - 28px));
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(17, 18, 23, 0.82), rgba(35, 28, 50, 0.68));
  box-shadow: 0 16px 44px rgba(18, 19, 30, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
  transition:
    width 440ms var(--ease-out),
    height 440ms var(--ease-out),
    background 280ms var(--ease-standard),
    border-color 280ms var(--ease-standard),
    box-shadow 280ms var(--ease-standard);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, rgba(63, 99, 255, 0.16), rgba(139, 92, 246, 0.12) 40%, rgba(240, 82, 103, 0.1) 72%, rgba(233, 173, 47, 0.12));
  pointer-events: none;
}

.nav::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-spectrum);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.nav__row.container {
  position: relative;
  z-index: 1;
  max-width: none;
  height: 100%;
  padding-inline: 18px 10px;
}

.nav__logo {
  position: absolute;
  left: 18px;
  z-index: 2;
}

.nav__logo img {
  width: 142px;
  transition: width 400ms var(--ease-out);
}

.nav__links {
  position: absolute;
  left: 50%;
  margin-left: 0;
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 200ms var(--ease-standard), transform 300ms var(--ease-out), visibility 0s linear;
}

.nav__links a::after {
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--gradient-spectrum);
}

.nav__actions {
  position: absolute;
  right: 10px;
  z-index: 2;
}

.nav__actions .btn {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 180ms var(--ease-standard),
    transform 300ms var(--ease-out),
    background var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard);
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) {
  width: 218px;
  height: 54px;
  background: rgba(17, 18, 23, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(18, 19, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"])::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__logo img {
  width: 136px;
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__links {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity 150ms var(--ease-standard), transform 240ms var(--ease-out), visibility 0s linear 180ms;
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__actions .btn {
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
}

.hero,
.page-hero {
  background:
    linear-gradient(118deg, rgba(63, 99, 255, 0.08), transparent 34%),
    linear-gradient(242deg, rgba(139, 92, 246, 0.08), transparent 38%),
    linear-gradient(32deg, rgba(240, 82, 103, 0.06), transparent 32%),
    linear-gradient(326deg, rgba(233, 173, 47, 0.08), transparent 30%),
    rgba(244, 244, 241, 0.66);
}

.hero__title .mark,
.page-hero__title .mark,
.section-title .mark {
  color: var(--color-purple);
  background: var(--gradient-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--tint {
  background: rgba(237, 237, 234, 0.62);
}

.section--night {
  background:
    linear-gradient(125deg, rgba(63, 99, 255, 0.11), transparent 35%),
    linear-gradient(235deg, rgba(139, 92, 246, 0.1), transparent 38%),
    linear-gradient(25deg, rgba(240, 82, 103, 0.07), transparent 32%),
    var(--color-night);
}

.hero__meta {
  gap: 10px;
  border: 0;
}

.metric-card,
.service-card,
.proof-card,
.value-card,
.global-card,
.detail-card,
.project-card,
.contact-form {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-light);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.metric-card,
.metric-card + .metric-card {
  min-height: 102px;
  padding: 18px;
  border: 1px solid var(--glass-border);
}

.globe-stage {
  margin-block: 16px;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 72px rgba(32, 35, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.globe-stage::before {
  display: none;
}

.markets {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 44px rgba(32, 35, 58, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.service-grid,
.proof-grid,
.project-grid,
.value-grid {
  gap: 14px;
  border: 0;
  background: transparent;
}

.service-card,
.service-card:nth-child(odd) {
  position: relative;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-standard), box-shadow var(--dur-med) var(--ease-standard);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gradient-spectrum);
  opacity: 0.62;
}

.service-card:hover {
  background: var(--glass-light-strong);
  color: var(--color-ink);
  box-shadow: 0 26px 72px rgba(29, 31, 48, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.service-card:hover p,
.service-card:hover .service-card__num {
  color: var(--color-muted);
}

.icon-box {
  border-color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, rgba(63, 99, 255, 0.12), rgba(139, 92, 246, 0.1), rgba(240, 82, 103, 0.1), rgba(233, 173, 47, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.proof-card,
.value-card {
  padding: clamp(24px, 3vw, 40px);
}

.proof-card--accent {
  color: var(--color-ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(63, 99, 255, 0.13), rgba(139, 92, 246, 0.12) 48%, rgba(240, 82, 103, 0.12) 75%, rgba(233, 173, 47, 0.14));
}

.proof-card--accent p,
.proof-card--accent .proof-card__label {
  color: var(--color-muted);
}

.placeholder-box {
  border-color: rgba(16, 17, 20, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
}

.process-list {
  gap: 12px;
  border: 0;
}

.process-card {
  padding: 24px;
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.global-card {
  padding: clamp(24px, 3vw, 40px);
}

.process-layout > .value-grid {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-band,
.story-panel,
.contact-panel {
  border: 1px solid var(--glass-border-dark);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(63, 99, 255, 0.14), transparent 42%),
    linear-gradient(235deg, rgba(139, 92, 246, 0.12), transparent 42%),
    linear-gradient(25deg, rgba(240, 82, 103, 0.09), transparent 40%),
    rgba(16, 17, 20, 0.84);
  box-shadow: 0 28px 78px rgba(20, 21, 35, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.service-detail-list {
  gap: 14px;
  border: 0;
}

.detail-card {
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--glass-border);
}

.project-card {
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-standard);
}

.project-card:hover {
  box-shadow: 0 28px 78px rgba(29, 31, 48, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.project-card__visual {
  border-bottom-color: rgba(16, 17, 20, 0.12);
  background-color: rgba(255, 255, 255, 0.46);
  background-image: linear-gradient(rgba(63, 99, 255, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 82, 103, 0.08) 1px, transparent 1px);
}

.project-card:nth-child(2n) .project-card__visual {
  background-color: #171820;
  background-image: linear-gradient(125deg, rgba(63, 99, 255, 0.28), transparent 48%), linear-gradient(235deg, rgba(139, 92, 246, 0.24), transparent 48%), radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
}

.project-card:nth-child(3n) .project-card__visual {
  background-color: #f4b64a;
  background-image: linear-gradient(135deg, rgba(240, 82, 103, 0.2), transparent 52%), linear-gradient(315deg, rgba(63, 99, 255, 0.16), transparent 52%);
}

.project-card__stamp {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form {
  padding: clamp(24px, 4vw, 48px);
}

.field input,
.field select,
.field textarea {
  padding-inline: 14px;
  border: 1px solid rgba(16, 17, 20, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-focus);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(49, 87, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer {
  background:
    linear-gradient(125deg, rgba(63, 99, 255, 0.09), transparent 38%),
    linear-gradient(235deg, rgba(139, 92, 246, 0.08), transparent 40%),
    linear-gradient(25deg, rgba(240, 82, 103, 0.06), transparent 36%),
    var(--color-night);
}

@media (max-width: 1060px) {
  .nav,
  .nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) {
    top: 10px;
    width: calc(100% - 20px);
    height: 64px;
  }

  .nav::after {
    display: none;
  }

  .nav__row.container {
    padding-inline: 16px 9px;
  }

  .nav__logo {
    position: static;
  }

  .nav__actions {
    position: static;
    margin-left: auto;
  }

  .nav__links {
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(17, 18, 23, 0.9);
    box-shadow: 0 18px 48px rgba(18, 19, 30, 0.24);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    backdrop-filter: blur(24px) saturate(155%);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
  }

  .nav[data-open="true"] .nav__links {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__links {
    transform: translateY(-6px);
  }

  .nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__actions .btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .globe-stage {
    padding: clamp(14px, 3vw, 24px);
  }
}

@media (max-width: 720px) {
  .metric-card,
  .metric-card + .metric-card {
    padding: 16px;
    border: 1px solid var(--glass-border);
  }

  .service-card,
  .service-card:nth-child(odd) {
    padding: 28px;
    border: 1px solid var(--glass-border);
  }

  .process-card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }
}

/* Light prismatic glass theme. */
.nav {
  color: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(239, 244, 255, 0.68));
  box-shadow: 0 16px 44px rgba(52, 75, 122, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav::before {
  background: linear-gradient(105deg, rgba(75, 124, 246, 0.16), rgba(141, 106, 243, 0.12) 40%, rgba(239, 107, 123, 0.11) 72%, rgba(237, 190, 74, 0.16));
}

.nav__links a {
  color: rgba(19, 32, 58, 0.62);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--color-ink);
}

.nav__toggle {
  border-color: rgba(19, 32, 58, 0.16);
  background: rgba(255, 255, 255, 0.36);
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  background: var(--color-ink);
}

.nav[data-open="true"] .nav__toggle span {
  background: transparent;
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) {
  background: rgba(249, 251, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(52, 75, 122, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.nav__liquid-root {
  min-width: 154px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 180ms var(--ease-standard), transform 300ms var(--ease-out);
}

.nav__liquid-root [data-slot="liquid-button"] {
  width: 154px;
  min-width: 154px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(238, 235, 229, 0.22);
  border-radius: var(--radius-full);
  background: rgba(238, 235, 229, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 32px rgba(0, 0, 0, 0.24), 0 0 34px rgba(4, 116, 242, 0.14);
  white-space: nowrap;
}

.nav__liquid-root [data-slot="liquid-button"] > span:not([aria-hidden="true"]) {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav__liquid-root [data-slot="liquid-button"] > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__liquid-root {
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
}

.btn {
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.42);
  color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(48, 75, 130, 0.11), inset 1px 1px 0 rgba(255, 255, 255, 0.94), inset -1px -1px 0 rgba(102, 124, 170, 0.14);
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(48, 75, 130, 0.16), inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(102, 124, 170, 0.12);
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary,
.btn--light {
  border-color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(110deg, #315ee8, #6e61ed 52%, #db5f85);
  color: #fff;
  box-shadow: 0 10px 28px rgba(69, 82, 190, 0.25), inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--primary:hover,
.btn--light:hover {
  background: linear-gradient(110deg, #3d69ef, #796cf2 52%, #e36d90);
  color: #fff;
}

.btn--secondary,
.btn--glass {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.42);
  color: var(--color-ink);
}

.hero,
.page-hero {
  background:
    linear-gradient(118deg, rgba(75, 124, 246, 0.11), transparent 36%),
    linear-gradient(242deg, rgba(141, 106, 243, 0.1), transparent 40%),
    linear-gradient(32deg, rgba(239, 107, 123, 0.07), transparent 34%),
    linear-gradient(326deg, rgba(237, 190, 74, 0.1), transparent 34%),
    rgba(247, 249, 255, 0.72);
}

.section--tint {
  background: rgba(235, 242, 255, 0.64);
}

.section--night {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(120deg, rgba(197, 220, 255, 0.72), rgba(234, 224, 255, 0.58) 42%, rgba(255, 227, 229, 0.54) 72%, rgba(255, 242, 197, 0.58)),
    rgba(241, 246, 255, 0.82);
  color: var(--color-ink);
}

.section--night .eyebrow,
.section--night .section-eyebrow,
.story-panel .section-eyebrow,
.contact-panel .section-eyebrow {
  color: var(--color-ink-soft);
}

.section--night .section-desc,
.section--night .muted,
.section--night .process-card p {
  color: var(--color-muted);
}

.metric-card,
.service-card,
.proof-card,
.value-card,
.global-card,
.detail-card,
.project-card,
.contact-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(241, 246, 255, 0.42));
  border-color: rgba(255, 255, 255, 0.9);
}

.metric-card:nth-child(3n + 1),
.service-card:nth-child(4n + 1),
.value-card:nth-child(4n + 1),
.detail-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(208, 226, 255, 0.54));
}

.metric-card:nth-child(3n + 2),
.service-card:nth-child(4n + 2),
.value-card:nth-child(4n + 2),
.detail-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(229, 217, 255, 0.54));
}

.metric-card:nth-child(3n),
.service-card:nth-child(4n + 3),
.value-card:nth-child(4n + 3),
.detail-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 218, 224, 0.5));
}

.service-card:nth-child(4n),
.value-card:nth-child(4n),
.detail-card:nth-child(4n) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 239, 190, 0.5));
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.82);
}

.globe-stage {
  border-color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(220, 231, 255, 0.28));
  box-shadow: 0 24px 72px rgba(48, 75, 130, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.markets {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.52);
}

.proof-card--accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(199, 221, 255, 0.62), rgba(229, 217, 255, 0.58) 46%, rgba(255, 215, 222, 0.56) 74%, rgba(255, 239, 190, 0.62));
}

.process-card {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.48);
  color: var(--color-ink);
  box-shadow: 0 14px 38px rgba(48, 75, 130, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(205, 225, 255, 0.46));
}

.process-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(229, 216, 255, 0.46));
}

.process-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 216, 222, 0.44));
}

.process-card:nth-child(4n) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 239, 190, 0.46));
}

.pill--dark {
  color: var(--color-ink-soft);
}

.cta-band,
.story-panel,
.contact-panel {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(120deg, rgba(207, 226, 255, 0.78), rgba(232, 219, 255, 0.66) 40%, rgba(255, 220, 225, 0.62) 72%, rgba(255, 239, 190, 0.7)),
    rgba(255, 255, 255, 0.62);
  color: var(--color-ink);
  box-shadow: 0 26px 72px rgba(48, 75, 130, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.cta-band p,
.story-panel p,
.contact-panel p {
  color: var(--color-muted);
}

.contact-list {
  border-top-color: rgba(13, 16, 53, 0.14);
}

.contact-link {
  border-bottom-color: rgba(13, 16, 53, 0.14);
  color: var(--color-ink-soft);
}

.contact-link:hover {
  color: var(--color-primary);
}

.project-card:nth-child(2n) .project-card__visual {
  background-color: #e9e3ff;
  background-image: linear-gradient(125deg, rgba(75, 124, 246, 0.24), transparent 48%), linear-gradient(235deg, rgba(141, 106, 243, 0.22), transparent 48%), radial-gradient(rgba(19, 32, 58, 0.12) 1px, transparent 1px);
  color: var(--color-ink);
}

.project-card:nth-child(3n) .project-card__visual {
  background-color: #ffedbd;
  background-image: linear-gradient(135deg, rgba(239, 107, 123, 0.2), transparent 52%), linear-gradient(315deg, rgba(75, 124, 246, 0.16), transparent 52%);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(89, 111, 153, 0.2);
  background: rgba(255, 255, 255, 0.58);
}

.footer {
  border-top-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(125deg, rgba(205, 225, 255, 0.7), transparent 42%),
    linear-gradient(235deg, rgba(231, 219, 255, 0.62), transparent 44%),
    linear-gradient(25deg, rgba(255, 220, 225, 0.52), transparent 40%),
    #eef4ff;
  color: var(--color-ink);
}

.footer__tagline,
.footer__note {
  color: var(--color-muted);
}

.footer__col-title {
  color: var(--color-muted);
}

.footer__col a {
  color: var(--color-ink-soft);
}

.footer__col a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top-color: rgba(19, 32, 58, 0.14);
  color: var(--color-muted);
}

@media (max-width: 1060px) {
  .nav__links {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(247, 250, 255, 0.9);
    box-shadow: 0 18px 48px rgba(48, 75, 130, 0.16);
  }

  .nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) .nav__liquid-root {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav__liquid-root .btn {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .nav__row.container {
    gap: 7px;
    padding-inline: 12px 7px;
  }

  .nav__logo img {
    width: 108px;
  }

  .nav__actions {
    gap: 7px;
  }

  .nav__liquid-root {
    min-width: 92px;
  }

  .nav__liquid-root [data-slot="liquid-button"],
  .nav__liquid-root .btn {
    min-width: 92px;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.6875rem;
  }

  .nav__toggle {
    width: 42px;
    height: 42px;
  }
}

/* Be Creative brand palette and controlled color motion. */
@keyframes brand-canvas-flow {
  0%, 100% {
    background-position: 0% 20%, 100% 20%, 20% 100%, 80% 0%, 0 0;
  }
  50% {
    background-position: 34% 4%, 68% 44%, 4% 72%, 100% 52%, 0 0;
  }
}

@keyframes brand-field-drift {
  0%, 100% {
    transform: translate3d(-3%, -2%, 0) scale(1.08) rotate(-1deg);
  }
  50% {
    transform: translate3d(3%, 2%, 0) scale(1.14) rotate(3deg);
  }
}

@keyframes brand-spectrum-flow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

body {
  background:
    linear-gradient(128deg, rgba(99, 226, 229, 0.17), transparent 31%),
    linear-gradient(232deg, rgba(4, 116, 242, 0.11), transparent 34%),
    var(--color-ion);
  background-size: 165% 165%, 175% 175%, auto;
  animation: brand-canvas-flow 24s ease-in-out infinite;
}

.nav {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(99, 226, 229, 0.18));
  box-shadow: 0 16px 44px rgba(13, 16, 53, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.nav::before {
  background: var(--gradient-spectrum);
  background-size: 260% 100%;
  opacity: 0.12;
  animation: brand-spectrum-flow 12s ease-in-out infinite;
}

.nav__links a {
  color: rgba(13, 16, 53, 0.62);
}

.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) {
  background: rgba(238, 235, 229, 0.78);
  box-shadow: 0 12px 34px rgba(13, 16, 53, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.liquid-spectrum-layer {
  background: var(--gradient-spectrum);
  background-size: 260% 100%;
  animation: brand-spectrum-flow 8s ease-in-out infinite;
}

.btn {
  background: rgba(238, 235, 229, 0.5);
  box-shadow: 0 8px 24px rgba(13, 16, 53, 0.14), inset 1px 1px 0 rgba(255, 255, 255, 0.9), inset -1px -1px 0 rgba(13, 16, 53, 0.14);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(13, 16, 53, 0.19), inset 1px 1px 0 #fff, inset -1px -1px 0 rgba(13, 16, 53, 0.12);
}

.btn--primary,
.btn--light {
  background: var(--color-hyperfocus);
  background-size: 100% 100%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(13, 16, 53, 0.3), inset 1px 1px 0 rgba(99, 226, 229, 0.34);
  animation: none;
}

.btn--primary:hover,
.btn--light:hover {
  background: color-mix(in srgb, var(--color-hyperfocus) 86%, var(--color-volt));
  background-size: 100% 100%;
}

.btn--secondary,
.btn--glass {
  background: rgba(238, 235, 229, 0.46);
}

.hero,
.page-hero,
.section--night {
  isolation: isolate;
  overflow: hidden;
  background: rgba(238, 235, 229, 0.68);
}

.hero::after,
.page-hero::after,
.section--night::after {
  content: "";
  position: absolute;
  inset: -34%;
  z-index: 0;
  background:
    conic-gradient(
      from 115deg at 50% 50%,
      rgba(99, 226, 229, 0.62),
      rgba(4, 116, 242, 0.24),
      rgba(13, 16, 53, 0.2),
      rgba(4, 116, 242, 0.18),
      rgba(99, 226, 229, 0.62)
    );
  filter: blur(76px) saturate(120%);
  opacity: 0.48;
  pointer-events: none;
  animation: brand-field-drift 18s ease-in-out infinite;
}

.hero > .container,
.page-hero > .container,
.section--night > .container {
  position: relative;
  z-index: 1;
}

.section--tint {
  background: color-mix(in srgb, var(--color-ion) 84%, var(--color-oxygen));
}

.hero__title .mark,
.page-hero__title .mark,
.section-title .mark {
  background: var(--gradient-spectrum);
  background-size: 260% 100%;
  animation: brand-spectrum-flow 9s ease-in-out infinite;
}

.metric-card,
.service-card,
.proof-card,
.value-card,
.global-card,
.detail-card,
.project-card,
.contact-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 235, 229, 0.44));
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(13, 16, 53, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.metric-card:nth-child(3n + 1),
.service-card:nth-child(4n + 1),
.value-card:nth-child(4n + 1),
.detail-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(99, 226, 229, 0.24));
}

.metric-card:nth-child(3n + 2),
.service-card:nth-child(4n + 2),
.value-card:nth-child(4n + 2),
.detail-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(4, 116, 242, 0.17));
}

.metric-card:nth-child(3n),
.service-card:nth-child(4n + 3),
.value-card:nth-child(4n + 3),
.detail-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(13, 16, 53, 0.1));
}

.service-card:nth-child(4n),
.value-card:nth-child(4n),
.detail-card:nth-child(4n) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(99, 226, 229, 0.16));
}

.service-card::before {
  background: var(--gradient-spectrum);
  background-size: 300% 100%;
  animation: brand-spectrum-flow 8s ease-in-out infinite;
}

.icon-box {
  background: linear-gradient(135deg, rgba(99, 226, 229, 0.24), rgba(4, 116, 242, 0.13));
}

.globe-stage {
  background: linear-gradient(145deg, rgba(238, 235, 229, 0.56), rgba(99, 226, 229, 0.18));
  box-shadow: 0 24px 72px rgba(13, 16, 53, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.markets {
  background: rgba(238, 235, 229, 0.64);
}

.proof-card--accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(99, 226, 229, 0.34), rgba(4, 116, 242, 0.18) 55%, rgba(13, 16, 53, 0.1));
}

.process-card {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(238, 235, 229, 0.56);
  box-shadow: 0 14px 38px rgba(13, 16, 53, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.process-card:nth-child(4n + 1) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(99, 226, 229, 0.24));
}

.process-card:nth-child(4n + 2) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(4, 116, 242, 0.15));
}

.process-card:nth-child(4n + 3) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(13, 16, 53, 0.09));
}

.process-card:nth-child(4n) {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(99, 226, 229, 0.18));
}

.cta-band,
.story-panel,
.contact-panel {
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(238, 235, 229, 0.72);
  box-shadow: 0 26px 72px rgba(13, 16, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.cta-band,
.story-panel {
  position: relative;
}

.cta-band::before,
.story-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: -70%;
  z-index: 0;
  background: conic-gradient(from 90deg, rgba(99, 226, 229, 0.5), rgba(4, 116, 242, 0.22), rgba(13, 16, 53, 0.16), rgba(4, 116, 242, 0.18), rgba(99, 226, 229, 0.5));
  filter: blur(46px);
  opacity: 0.58;
  pointer-events: none;
  animation: brand-field-drift 16s ease-in-out infinite reverse;
}

.cta-band > *,
.story-panel > *,
.contact-panel > * {
  position: relative;
  z-index: 1;
}

.project-card__visual {
  background-color: var(--color-ion);
  background-image: linear-gradient(rgba(4, 116, 242, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 226, 229, 0.2) 1px, transparent 1px);
}

.project-card:nth-child(2n) .project-card__visual {
  background-color: color-mix(in srgb, var(--color-ion) 78%, var(--color-oxygen));
  background-image: linear-gradient(125deg, rgba(4, 116, 242, 0.28), transparent 48%), linear-gradient(235deg, rgba(99, 226, 229, 0.34), transparent 48%), radial-gradient(rgba(13, 16, 53, 0.12) 1px, transparent 1px);
}

.project-card:nth-child(3n) .project-card__visual {
  background-color: color-mix(in srgb, var(--color-ion) 86%, var(--color-volt));
  background-image: linear-gradient(135deg, rgba(13, 16, 53, 0.14), transparent 52%), linear-gradient(315deg, rgba(4, 116, 242, 0.18), transparent 52%);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(13, 16, 53, 0.2);
  background: rgba(255, 255, 255, 0.64);
}

.footer {
  background:
    linear-gradient(125deg, rgba(99, 226, 229, 0.36), transparent 42%),
    linear-gradient(235deg, rgba(4, 116, 242, 0.17), transparent 44%),
    var(--color-ion);
}

@media (max-width: 1060px) {
  .nav__links {
    background: rgba(238, 235, 229, 0.92);
    box-shadow: 0 18px 48px rgba(13, 16, 53, 0.18);
  }

  .contact-panel {
    position: relative;
  }
}

@media (max-width: 720px) {
  body {
    animation: none;
  }

  .hero::after,
  .page-hero::after,
  .section--night::after {
    filter: blur(58px) saturate(115%);
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .nav::before,
  .liquid-spectrum-layer,
  .btn--primary,
  .btn--light,
  .hero::after,
  .page-hero::after,
  .section--night::after,
  .hero__title .mark,
  .page-hero__title .mark,
  .section-title .mark,
  .service-card::before,
  .cta-band::before,
  .story-panel::before,
  .contact-panel::before {
    animation: none;
  }
}

/* Minimal correction: visible hero content, borderless glass, clean footer. */
@keyframes hero-surface-flow {
  0%, 100% {
    background-position: 0% 20%, 100% 30%;
  }
  50% {
    background-position: 55% 0%, 45% 70%;
  }
}

body {
  background: var(--color-ion);
  animation: none;
}

.hero::after,
.page-hero::after,
.section--night::after,
.cta-band::before,
.story-panel::before,
.contact-panel::before {
  display: none;
}

.hero {
  background-color: var(--color-ion);
  background-image:
    linear-gradient(125deg, rgba(99, 226, 229, 0.34), transparent 34%),
    linear-gradient(235deg, rgba(4, 116, 242, 0.17), transparent 40%);
  background-size: 175% 175%, 185% 185%;
}

.page-hero {
  background:
    linear-gradient(125deg, rgba(99, 226, 229, 0.22), transparent 38%),
    linear-gradient(235deg, rgba(4, 116, 242, 0.1), transparent 42%),
    var(--color-ion);
}

.section--night {
  background:
    linear-gradient(120deg, rgba(99, 226, 229, 0.2), rgba(238, 235, 229, 0.74) 45%, rgba(4, 116, 242, 0.1)),
    var(--color-ion);
}

.nav::before,
.liquid-spectrum-layer,
.btn--primary,
.btn--light,
.hero__title .mark,
.page-hero__title .mark,
.section-title .mark,
.service-card::before {
  animation: none;
}

.nav::before {
  opacity: 0.08;
}

.liquid-spectrum-layer {
  background: linear-gradient(110deg, rgba(99, 226, 229, 0.72), rgba(4, 116, 242, 0.42), rgba(13, 16, 53, 0.38));
  background-size: 100% 100%;
}

.btn--primary,
.btn--light {
  background-size: 100% 100%;
}

.hero__title .mark,
.page-hero__title .mark,
.section-title .mark {
  background-size: 100% 100%;
}

.section {
  border-top: 0;
}

.metric-card,
.metric-card + .metric-card,
.service-card,
.service-card:nth-child(odd),
.proof-card,
.value-card,
.global-card,
.detail-card,
.project-card,
.contact-form,
.process-card,
.cta-band,
.story-panel,
.contact-panel,
.globe-stage {
  border: 0;
  box-shadow: 0 18px 48px rgba(13, 16, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.metric-card,
.metric-card + .metric-card,
.service-card,
.service-card:nth-child(odd),
.proof-card,
.value-card,
.global-card,
.detail-card,
.contact-form,
.process-card {
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.service-card::before {
  display: none;
}

.placeholder-box {
  border: 0;
  background: rgba(238, 235, 229, 0.6);
}

.markets {
  border: 0;
}

.project-card__visual {
  border-bottom: 0;
}

.field input,
.field select,
.field textarea {
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(13, 16, 53, 0.08), 0 8px 24px rgba(13, 16, 53, 0.06);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border: 0;
  box-shadow: inset 0 0 0 2px var(--color-volt), 0 8px 24px rgba(13, 16, 53, 0.08);
}

@media (min-width: 1061px) {
  .hero {
    height: 100svh;
    min-height: 700px;
    padding-top: var(--nav-height);
    animation: hero-surface-flow 20s ease-in-out infinite;
  }

  .hero__grid {
    height: calc(100svh - var(--nav-height));
    min-height: 628px;
    gap: clamp(36px, 4vw, 64px);
    padding-block: 28px;
  }

  .hero__title {
    max-width: 9.5ch;
    font-size: 5.25rem;
  }

  .hero__desc {
    margin-top: 20px;
    font-size: 1.125rem;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__meta {
    max-width: 620px;
    margin-top: 28px;
  }

  .metric-card,
  .metric-card + .metric-card {
    min-height: 88px;
    padding: 14px;
  }

  .globe-stage {
    max-height: calc(100svh - 108px);
    margin-block: 0;
    padding: 18px;
  }

  .reach-canvas--hero {
    width: min(100%, 470px);
    min-height: 0;
    margin-inline: auto;
  }
}

.footer {
  position: relative;
  padding: 0 0 20px;
  border: 0;
  background: var(--color-ion);
  color: var(--color-hyperfocus);
  overflow: hidden;
}

.footer__spectrum {
  width: 100%;
  height: 9px;
  background: var(--gradient-spectrum);
  background-size: 220% 100%;
  animation: brand-spectrum-flow 16s ease-in-out infinite;
}

.footer__grid {
  min-height: 330px;
  grid-template-columns: minmax(340px, 1.45fr) minmax(150px, 0.45fr) minmax(220px, 0.7fr);
  gap: clamp(48px, 7vw, 108px);
  padding-top: 64px;
}

.footer__leadline {
  position: relative;
  width: fit-content;
  max-width: 22ch;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
}

.footer__leadline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-oxygen), var(--color-volt));
}

.footer__cta {
  width: min(100%, 520px);
  min-height: 52px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--color-hyperfocus);
  color: #fff;
  font-weight: 500;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-standard);
}

.footer__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.footer__cta svg {
  width: 28px;
  height: 28px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.footer__cta:hover svg {
  transform: translateX(4px);
}

.footer__business {
  margin-top: 88px;
  display: grid;
  gap: 2px;
}

.footer__business span,
.footer__col-title {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
}

.footer__business a {
  width: fit-content;
  color: var(--color-volt);
  font-size: 1.125rem;
  font-weight: 500;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer__col-title {
  margin-bottom: 10px;
}

.footer__col a {
  width: fit-content;
  color: var(--color-hyperfocus);
  font-size: 1rem;
  font-weight: 500;
}

.footer__col a:hover {
  color: var(--color-volt);
}

.footer__meta {
  min-height: 236px;
  display: grid;
  align-content: space-between;
}

.footer__location {
  color: var(--color-hyperfocus);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.footer__location span {
  color: var(--color-muted);
  font-weight: 400;
}

.footer__wordmark {
  margin-top: 36px;
  color: #000;
  font-size: 9rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer__wordmark span {
  color: var(--color-volt);
}

.footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 16, 53, 0.12);
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .footer__grid {
    grid-template-columns: minmax(300px, 1.2fr) minmax(140px, 0.45fr) minmax(190px, 0.65fr);
    gap: 40px;
  }

  .footer__wordmark {
    font-size: 6rem;
  }
}

@media (max-width: 720px) {
  .hero {
    animation: none;
  }

  .footer__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 48px;
  }

  .footer__leadline {
    font-size: 1.65rem;
  }

  .footer__business {
    margin-top: 42px;
  }

  .footer__meta {
    min-height: 0;
    gap: 38px;
  }

  .footer__wordmark {
    margin-top: 58px;
    font-size: 3.25rem;
    white-space: normal;
  }

  .footer__bottom {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .footer__spectrum {
    animation: none;
  }
}

/* Hero integrity: keep the headline legible and the globe above the fold. */
.hero__title .mark,
.page-hero__title .mark,
.section-title .mark {
  color: var(--color-volt);
  background-image: var(--gradient-spectrum);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn--secondary {
  border-color: rgba(13, 16, 53, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-hyperfocus);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(4, 116, 242, 0.24);
  background: color-mix(in srgb, var(--color-ion) 82%, var(--color-oxygen));
  color: var(--color-hyperfocus);
}

header.nav {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 860px) {
  .hero {
    height: 100svh;
    min-height: 680px;
    padding-top: var(--nav-height);
  }

  .hero__grid {
    height: calc(100svh - var(--nav-height));
    min-height: 608px;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: clamp(24px, 3vw, 48px);
    padding-block: 24px;
  }

  .hero__title {
    max-width: 9.2ch;
    font-size: clamp(3.8rem, 6.3vw, 5.25rem);
  }

  .hero__desc {
    max-width: 52ch;
    margin-top: 18px;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero__meta {
    max-width: 620px;
    margin-top: 24px;
  }

  .metric-card,
  .metric-card + .metric-card {
    min-height: 84px;
    padding: 13px;
  }

  .metric-card strong {
    font-size: 1.125rem;
  }

  .metric-card span {
    font-size: 0.6875rem;
  }

  .globe-stage {
    width: 100%;
    max-height: calc(100svh - 108px);
    margin-block: 0;
    padding: 16px;
  }

  .reach-canvas--hero {
    width: min(100%, 440px);
    min-height: 0;
    margin-inline: auto;
  }
}

/* Black canvas and contact-led footer. */
html,
body,
main {
  background: #000;
  color: #fff;
}

body {
  background-image: none;
}

.hero {
  background-color: #000;
  background-image:
    linear-gradient(128deg, rgba(99, 226, 229, 0.16), transparent 34%),
    linear-gradient(232deg, rgba(4, 116, 242, 0.16), transparent 40%);
}

.page-hero,
.section,
.section--tint,
.section--night,
.contact-section {
  border-color: rgba(238, 235, 229, 0.12);
  background-color: #000;
  color: #fff;
}

.page-hero {
  background-image:
    linear-gradient(125deg, rgba(99, 226, 229, 0.12), transparent 38%),
    linear-gradient(235deg, rgba(4, 116, 242, 0.13), transparent 44%);
}

.section--tint,
.section--night {
  background-image: linear-gradient(120deg, rgba(13, 16, 53, 0.48), rgba(0, 0, 0, 0.96) 58%);
}

.hero__title,
.page-hero__title,
.section-title,
.section h2,
.section h3 {
  color: #fff;
}

.eyebrow,
.section-eyebrow {
  color: var(--color-oxygen);
}

.hero__desc,
.page-hero__desc,
.section-desc,
.section--night .section-desc,
.section--night .muted {
  color: rgba(238, 235, 229, 0.7);
}

.markets {
  border-color: rgba(238, 235, 229, 0.12);
  background: #000;
  box-shadow: none;
  color: #fff;
}

.markets__label,
.markets .pill {
  color: rgba(238, 235, 229, 0.76);
}

.markets .pill {
  border-color: rgba(238, 235, 229, 0.18);
  background: rgba(238, 235, 229, 0.08);
}

.metric-card,
.metric-card + .metric-card {
  border: 0;
  background: rgba(238, 235, 229, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.metric-card strong {
  color: #fff;
}

.metric-card span {
  color: rgba(238, 235, 229, 0.62);
}

.service-card,
.service-card:nth-child(odd),
.service-card:nth-child(4n + 1),
.service-card:nth-child(4n + 2),
.service-card:nth-child(4n + 3),
.service-card:nth-child(4n),
.proof-card,
.proof-card--accent,
.value-card,
.value-card:nth-child(4n + 1),
.value-card:nth-child(4n + 2),
.value-card:nth-child(4n + 3),
.value-card:nth-child(4n),
.global-card,
.detail-card,
.detail-card:nth-child(4n + 1),
.detail-card:nth-child(4n + 2),
.detail-card:nth-child(4n + 3),
.detail-card:nth-child(4n),
.project-card,
.contact-form,
.process-card,
.process-card:nth-child(4n + 1),
.process-card:nth-child(4n + 2),
.process-card:nth-child(4n + 3),
.process-card:nth-child(4n),
.cta-band,
.story-panel,
.contact-panel {
  border: 0;
  background: rgba(13, 16, 53, 0.48);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.service-card:hover {
  background:
    linear-gradient(135deg, rgba(99, 226, 229, 0.14), rgba(4, 116, 242, 0.12)),
    rgba(13, 16, 53, 0.62);
  color: #fff;
}

.service-card h3,
.proof-card h3,
.value-card h3,
.global-card h2,
.detail-card h2,
.project-card h3,
.process-card h3,
.cta-band h2,
.story-panel h3,
.contact-panel h1,
.contact-panel h3,
.contact-form label {
  color: #fff;
}

.service-card p,
.service-card:hover p,
.proof-card p,
.proof-card--accent p,
.value-card p,
.global-card p,
.detail-card p,
.project-card p,
.process-card p,
.section--night .process-card p,
.cta-band p,
.story-panel p,
.contact-panel p,
.contact-form small,
.service-card__num,
.service-card:hover .service-card__num,
.proof-card__label,
.proof-card--accent .proof-card__label,
.project-card__label {
  color: rgba(238, 235, 229, 0.64);
}

.service-card .link-arrow,
.service-card:hover .link-arrow,
.detail-card__num,
.check-list svg,
.contact-link:hover {
  color: var(--color-oxygen);
}

.global-card .section-eyebrow,
.cta-band .section-eyebrow,
.story-panel .section-eyebrow,
.contact-panel .section-eyebrow {
  color: var(--color-oxygen);
}

.icon-box {
  background: rgba(238, 235, 229, 0.1);
  color: var(--color-oxygen);
}

.global-card .pill,
.story-panel .pill--dark {
  border-color: rgba(238, 235, 229, 0.16);
  background: rgba(238, 235, 229, 0.08);
  color: #fff;
}

.globe-stage {
  border: 0;
  background: rgba(13, 16, 53, 0.56);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.globe-stage__top,
.globe-stage__bottom,
.globe-status {
  border-color: rgba(238, 235, 229, 0.16);
  color: rgba(238, 235, 229, 0.7);
}

.project-card__body {
  color: #fff;
}

.project-card__visual,
.project-card:nth-child(2n) .project-card__visual,
.project-card:nth-child(3n) .project-card__visual {
  background-color: rgba(13, 16, 53, 0.68);
  background-image:
    linear-gradient(125deg, rgba(4, 116, 242, 0.42), transparent 52%),
    linear-gradient(235deg, rgba(99, 226, 229, 0.3), transparent 52%);
  color: #fff;
}

.field input,
.field select,
.field textarea {
  background: rgba(238, 235, 229, 0.08);
  color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(238, 235, 229, 0.46);
}

.field select option {
  background: var(--color-hyperfocus);
  color: #fff;
}

.contact-list {
  border-color: rgba(238, 235, 229, 0.14);
}

.contact-link {
  border-color: rgba(238, 235, 229, 0.14);
  color: #fff;
}

main > .section:nth-of-type(3n + 2) {
  background-image:
    linear-gradient(125deg, rgba(99, 226, 229, 0.08), transparent 36%),
    linear-gradient(235deg, rgba(4, 116, 242, 0.1), transparent 42%);
}

.proof-card--accent,
.cta-band,
.story-panel,
.contact-panel {
  background:
    linear-gradient(135deg, rgba(99, 226, 229, 0.1), rgba(4, 116, 242, 0.08)),
    rgba(13, 16, 53, 0.52);
}

.detail-card .pill,
.global-card .pill,
.story-panel .pill--dark {
  border-color: rgba(238, 235, 229, 0.16);
  background: rgba(238, 235, 229, 0.08);
  color: #fff;
}

.placeholder-box,
.proof-card--accent .placeholder-box {
  background: rgba(238, 235, 229, 0.06);
  color: rgba(238, 235, 229, 0.5);
}

.contact-form__status,
.field__error {
  color: var(--color-oxygen);
}

.btn--primary,
.btn--light {
  border-color: rgba(255, 255, 255, 0.42);
  background: #fff;
  color: #000;
  box-shadow: 0 10px 32px rgba(4, 116, 242, 0.2);
}

.btn--primary:hover,
.btn--light:hover {
  background: color-mix(in srgb, #fff 82%, var(--color-oxygen));
  color: #000;
}

.btn--secondary,
.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(238, 235, 229, 0.22);
  background: rgba(238, 235, 229, 0.1);
  color: #fff;
}

.contact-form .btn--primary,
.cta-band .btn--light {
  background: #fff;
  color: #000;
}

.nav,
.nav[data-proximity="false"]:not(:hover):not(:focus-within):not([data-open="true"]) {
  border-color: rgba(238, 235, 229, 0.16);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav__links a,
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: #fff;
}

.nav__logo img {
  filter: brightness(0) invert(1);
}

.nav__toggle {
  border-color: rgba(238, 235, 229, 0.18);
  background: rgba(238, 235, 229, 0.06);
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  background: #fff;
}

.nav .btn--glass {
  border-color: rgba(238, 235, 229, 0.16);
  background: rgba(238, 235, 229, 0.08);
  color: #fff;
}

@media (max-width: 1060px) {
  .nav__links {
    border-color: rgba(238, 235, 229, 0.14);
    background: rgba(0, 0, 0, 0.92);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  }
}

.footer {
  position: relative;
  isolation: isolate;
  margin: 0 12px 12px;
  padding: 0 0 24px;
  border: 1px solid rgba(238, 235, 229, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #000 0%, #000 48%, rgba(13, 16, 53, 0.88) 78%, rgba(4, 116, 242, 0.34) 100%);
  color: #fff;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -110px;
  left: -8%;
  z-index: -1;
  height: 290px;
  background: linear-gradient(105deg, rgba(99, 226, 229, 0.5), rgba(4, 116, 242, 0.78) 48%, rgba(13, 16, 53, 0.3));
  filter: blur(64px);
  transform: skewY(-3deg);
  pointer-events: none;
}

.footer__spectrum,
.footer__leadline::after {
  display: none;
}

.footer__grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.3fr);
  grid-template-rows: auto auto auto;
  gap: 32px 72px;
  padding-top: 68px;
}

.footer__lead {
  display: contents;
}

.footer__leadline {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  color: rgba(238, 235, 229, 0.54);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.footer__business {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  gap: 8px;
}

.footer__business span {
  color: rgba(238, 235, 229, 0.46);
  font-size: 0.8125rem;
}

.footer__business a {
  max-width: 100%;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.footer__cta {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: start;
  width: auto;
  min-width: 180px;
  min-height: 54px;
  margin-top: 0;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: #fff;
  color: #000;
  font-size: 1rem;
}

.footer__grid > .footer__col {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
}

.footer__meta {
  min-height: 0;
  grid-column: 2;
  grid-row: 3;
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 16px;
}

.footer__meta > .footer__col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer__col-title {
  display: none;
}

.footer__col a,
.footer__col a:hover,
.footer__business a:hover {
  color: #fff;
}

.footer__grid > .footer__col a,
.footer__meta > .footer__col a {
  font-size: 1rem;
}

.footer__location,
.footer__location span {
  color: rgba(238, 235, 229, 0.52);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer__wordmark {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 72px;
  line-height: 1;
}

.footer__wordmark img {
  width: 100%;
  height: auto;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 52px;
  padding-top: 16px;
  border-top: 1px solid rgba(238, 235, 229, 0.18);
  color: rgba(238, 235, 229, 0.5);
}

@media (max-width: 1060px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.3fr);
    gap: 28px 40px;
  }

  .footer__business a {
    font-size: 1.9rem;
  }

  .footer__wordmark {
    margin-top: 64px;
  }
}

@media (max-width: 720px) {
  .footer {
    margin: 0 8px 8px;
    border-radius: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 24px;
    padding-top: 48px;
  }

  .footer__leadline {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.8125rem;
  }

  .footer__business {
    grid-column: 1;
    grid-row: 2;
  }

  .footer__business a {
    font-size: 1.25rem;
  }

  .footer__cta {
    grid-column: 1;
    grid-row: 3;
    justify-self: stretch;
    width: 100%;
  }

  .footer__grid > .footer__col {
    grid-column: 1;
    grid-row: 4;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .footer__meta {
    grid-column: 1;
    grid-row: 5;
  }

  .footer__wordmark {
    margin-top: 52px;
  }

  .footer__bottom {
    margin-top: 34px;
  }
}

/* Homepage cinematic interaction system. */
.home-main {
  --home-canvas: #05070c;
  --home-canvas-soft: #080d19;
  --home-ink: #f7f8fb;
  --home-muted: rgba(238, 235, 229, 0.68);
  --pointer-x: 50%;
  --pointer-y: 50%;
  background: var(--home-canvas);
  color: var(--home-ink);
  overflow: clip;
}

.home-main em {
  font-style: normal;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
}

.home-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 550;
  transition: color 180ms var(--ease-standard), gap 280ms var(--ease-out);
}

.home-text-link:hover {
  gap: 15px;
  color: #fff;
}

.home-gradient-text,
.home-manifesto__title em,
.service-track__intro em,
.proof-horizon__copy em,
.process-story__copy em,
.home-inquiry__content em {
  background: linear-gradient(100deg, var(--color-oxygen) 2%, #a7cfff 42%, var(--color-volt) 78%, #8f77ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Hero: one dominant, cursor-responsive brand system. */
.home-hero {
  --scene-progress: 0;
  position: relative;
  min-height: 165svh;
  border-bottom: 1px solid rgba(238, 235, 229, 0.12);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(4, 116, 242, 0.17), transparent 24rem),
    linear-gradient(145deg, rgba(13, 16, 53, 0.55), transparent 46%),
    var(--home-canvas);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  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: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.home-hero__aurora {
  position: absolute;
  top: -16%;
  right: -12%;
  width: min(68vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 190deg, rgba(99, 226, 229, 0.22), rgba(4, 116, 242, 0.42), rgba(76, 41, 190, 0.2), transparent 72%);
  filter: blur(88px);
  opacity: calc(0.76 - var(--scene-progress) * 0.34);
  transform: translate3d(calc(var(--scene-progress) * -8vw), calc(var(--scene-progress) * 10vh), 0) rotate(calc(var(--scene-progress) * 32deg));
  pointer-events: none;
}

.home-hero__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(112px, 13vh, 152px) 0 34px;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(32px, 4.2vw, 76px);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  opacity: calc(1 - var(--scene-progress) * 0.92);
  transform: translate3d(0, calc(var(--scene-progress) * -72px), 0);
  will-change: transform, opacity;
}

.home-hero__title {
  max-width: 920px;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(3.25rem, 6.1vw, 7rem);
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.home-hero__title span {
  display: block;
}

.home-hero__title span + span {
  margin-top: 0.1em;
}

.home-hero__title em {
  color: var(--color-oxygen);
}

.home-hero__lede {
  max-width: 620px;
  margin-top: 28px;
  color: var(--home-muted);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.58;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 36px;
}

.home-hero__actions .btn {
  min-height: 52px;
  padding-inline: 23px;
}

.home-hero__system {
  position: relative;
  min-width: 0;
  height: clamp(500px, 68vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(238, 235, 229, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(99, 226, 229, 0.08), transparent 32%),
    linear-gradient(315deg, rgba(4, 116, 242, 0.14), transparent 42%),
    rgba(7, 11, 23, 0.7);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(130%);
  transform: translate3d(0, calc(var(--scene-progress) * 54px), 0) scale(calc(1 - var(--scene-progress) * 0.055));
  transform-origin: 50% 58%;
  will-change: transform;
}

.home-hero__system::before {
  content: "";
  position: absolute;
  inset: 44px 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(99, 226, 229, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 226, 229, 0.15) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 18%, transparent 72%);
  pointer-events: none;
}

.home-hero__system-bar,
.home-hero__system-foot {
  position: relative;
  z-index: 3;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: rgba(238, 235, 229, 0.52);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-hero__system-bar {
  border-bottom: 1px solid rgba(238, 235, 229, 0.11);
}

.home-hero__system-foot {
  border-top: 1px solid rgba(238, 235, 229, 0.11);
}

.home-hero__system-bar span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(238, 235, 229, 0.78);
}

.home-hero__system-bar i,
.delivery-globe__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-oxygen);
  box-shadow: 0 0 12px var(--color-oxygen);
  animation: system-pulse 2.2s ease-in-out infinite;
}

@keyframes system-pulse {
  50% { opacity: 0.42; transform: scale(0.72); }
}

.agency-scene-root,
.agency-scene,
.agency-scene__canvas {
  width: 100%;
  height: 100%;
}

.agency-scene-root {
  position: relative;
  z-index: 1;
  min-height: 0;
}

.agency-scene {
  position: relative;
}

.agency-scene__canvas {
  cursor: crosshair;
  touch-action: pan-y;
}

.agency-scene__label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(238, 235, 229, 0.14);
  border-radius: 99px;
  background: rgba(5, 7, 12, 0.62);
  color: rgba(238, 235, 229, 0.72);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
  animation: scene-label-float 4.8s ease-in-out infinite;
}

.agency-scene__label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-oxygen);
  box-shadow: 0 0 8px var(--color-oxygen);
}

.agency-scene__label--strategy { top: 19%; left: 9%; }
.agency-scene__label--identity { top: 24%; right: 7%; animation-delay: -1.2s; }
.agency-scene__label--web { bottom: 20%; left: 12%; animation-delay: -2.4s; }
.agency-scene__label--growth { right: 9%; bottom: 15%; animation-delay: -3.4s; }

@keyframes scene-label-float {
  50% { transform: translateY(-7px); }
}

.home-hero__foot {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  opacity: calc(1 - var(--scene-progress) * 1.5);
}

.home-hero__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgba(238, 235, 229, 0.45);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-hero__markets span:first-child {
  color: var(--color-oxygen);
}

.home-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 235, 229, 0.44);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-scroll-cue span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(238, 235, 229, 0.18);
}

.home-scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-oxygen);
  animation: scroll-cue 1.9s var(--ease-out) infinite;
}

@keyframes scroll-cue {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* Manifesto. */
.home-manifesto {
  position: relative;
  isolation: isolate;
  padding: clamp(120px, 17vw, 250px) 0 clamp(120px, 15vw, 220px);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(99, 226, 229, 0.11), transparent 28rem),
    var(--home-canvas);
}

.home-manifesto::before {
  content: "";
  position: absolute;
  top: 18%;
  right: -12%;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(99, 226, 229, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(4, 116, 242, 0.025), 0 0 0 160px rgba(4, 116, 242, 0.02);
}

.home-manifesto__meta {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(238, 235, 229, 0.13);
}

.home-manifesto__meta p {
  color: var(--home-muted);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.45;
}

.home-manifesto__title {
  max-width: 1280px;
  margin-top: clamp(70px, 9vw, 130px);
  color: #fff;
  font-size: clamp(3.4rem, 8.4vw, 9.8rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.home-manifesto__title span {
  display: block;
}

.home-manifesto__title span + span {
  margin-top: 0.08em;
}

.home-manifesto__principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(88px, 10vw, 150px);
  border-top: 1px solid rgba(238, 235, 229, 0.13);
  border-bottom: 1px solid rgba(238, 235, 229, 0.13);
}

.home-manifesto__principles article {
  min-height: 250px;
  padding: 30px clamp(20px, 2.6vw, 42px) 34px;
}

.home-manifesto__principles article + article {
  border-left: 1px solid rgba(238, 235, 229, 0.13);
}

.home-manifesto__principles span {
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.home-manifesto__principles h3 {
  margin-top: 70px;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 520;
}

.home-manifesto__principles p {
  max-width: 380px;
  margin-top: 14px;
  color: var(--home-muted);
  font-size: 0.93rem;
  line-height: 1.56;
}

/* Scroll-driven horizontal service journey. */
.service-journey {
  --scene-progress: 0;
  position: relative;
  min-height: 500svh;
  background:
    linear-gradient(180deg, var(--home-canvas), transparent 16%),
    radial-gradient(circle at 28% 38%, rgba(4, 116, 242, 0.18), transparent 32rem),
    #070a14;
}

.service-track__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.service-track__hud {
  position: absolute;
  top: max(104px, 12vh);
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 235, 229, 0.44);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.service-track__viewport {
  width: 100%;
  overflow: visible;
}

.service-track__rail {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  padding: 40px max(4vw, calc((100vw - var(--container-max)) / 2 + 56px));
  will-change: transform;
}

.service-track__intro,
.service-track__outro {
  flex: 0 0 min(39vw, 560px);
  height: min(66vh, 650px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.5vw, 54px);
}

.service-track__intro h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  font-weight: 510;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.service-track__intro p,
.service-track__outro p {
  max-width: 440px;
  margin-top: 26px;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.service-track__index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 235, 229, 0.13);
}

.service-track__index li {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 235, 229, 0.72);
  font-size: 0.75rem;
  line-height: 1.25;
}

.service-track__index li span {
  flex: 0 0 auto;
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}

.service-panel {
  position: relative;
  flex: 0 0 min(59vw, 780px);
  height: min(66vh, 650px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 38px);
  border: 1px solid rgba(238, 235, 229, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(13, 16, 53, 0.42);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: border-color 240ms var(--ease-standard), background 240ms var(--ease-standard), transform 320ms var(--ease-out);
}

.service-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% 25%;
  height: 60%;
  border-radius: 50%;
  background: var(--panel-glow, rgba(4, 116, 242, 0.24));
  filter: blur(58px);
  opacity: 0.5;
  transition: opacity 240ms var(--ease-standard);
  pointer-events: none;
}

.service-panel:hover,
.service-panel:focus-visible {
  border-color: rgba(99, 226, 229, 0.4);
  background:
    linear-gradient(145deg, rgba(99, 226, 229, 0.11), transparent 38%),
    rgba(13, 16, 53, 0.62);
  transform: translateY(-7px);
}

.service-panel:hover::after { opacity: 0.9; }
.service-panel--strategy { --panel-glow: rgba(111, 90, 235, 0.34); }
.service-panel--marketing { --panel-glow: rgba(99, 226, 229, 0.3); }
.service-panel--identity { --panel-glow: rgba(142, 93, 255, 0.32); }
.service-panel--web { --panel-glow: rgba(4, 116, 242, 0.36); }
.service-panel--performance { --panel-glow: rgba(99, 226, 229, 0.34); }

.service-panel__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(238, 235, 229, 0.52);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel__top span:last-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(238, 235, 229, 0.16);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
}

.service-panel__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.service-panel__copy > span {
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel__copy h3 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 510;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.service-panel__copy p {
  max-width: 540px;
  margin-top: 17px;
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-panel__visual {
  position: relative;
  z-index: 1;
  width: min(82%, 520px);
  min-height: 220px;
  align-self: center;
  justify-self: center;
}

.service-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(238, 235, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 235, 229, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.service-panel__visual--radar i,
.service-panel__visual--target i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(99, 226, 229, 0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-panel__visual--radar i:nth-child(1) { width: 76px; height: 76px; }
.service-panel__visual--radar i:nth-child(2) { width: 142px; height: 142px; }
.service-panel__visual--radar i:nth-child(3) { width: 210px; height: 210px; opacity: 0.45; }
.service-panel__visual--radar b,
.service-panel__visual--target b {
  position: absolute;
  top: 37%;
  left: 62%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-oxygen);
  box-shadow: 0 0 0 8px rgba(99, 226, 229, 0.1), 0 0 24px var(--color-oxygen);
}

.service-panel__visual--target i:nth-child(1) { width: 216px; height: 216px; }
.service-panel__visual--target i:nth-child(2) { width: 112px; height: 112px; border-color: rgba(122, 98, 255, 0.7); }
.service-panel__visual--target i:nth-child(3) { width: 18px; height: 18px; background: var(--color-oxygen); border: 0; box-shadow: 0 0 30px rgba(99, 226, 229, 0.8); }
.service-panel__visual--target b { top: 50%; left: 50%; width: 260px; height: 1px; border-radius: 0; background: linear-gradient(90deg, transparent, rgba(99, 226, 229, 0.7), transparent); box-shadow: none; transform: translate(-50%, -50%) rotate(-28deg); }

.service-panel__visual--signal {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 28px 50px;
}

.service-panel__visual--signal i {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 30%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(4, 116, 242, 0.22), var(--color-oxygen));
  box-shadow: 0 0 24px rgba(99, 226, 229, 0.16);
}

.service-panel__visual--signal i:nth-child(2) { height: 48%; }
.service-panel__visual--signal i:nth-child(3) { height: 68%; }
.service-panel__visual--signal i:nth-child(4) { height: 92%; }

.service-panel__visual--identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.service-panel__visual--identity i {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 235, 229, 0.2);
  border-radius: 20px;
  background: rgba(238, 235, 229, 0.06);
  color: #fff;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  font-style: normal;
  font-weight: 520;
  letter-spacing: -0.08em;
}

.service-panel__visual--identity i:last-of-type {
  background: linear-gradient(145deg, var(--color-oxygen), var(--color-volt));
  color: var(--color-hyperfocus);
  transform: rotate(7deg);
}

.service-panel__visual--browser {
  overflow: hidden;
  border: 1px solid rgba(238, 235, 229, 0.24);
  border-radius: 16px;
  background: rgba(5, 7, 12, 0.6);
  box-shadow: 24px 24px 0 rgba(4, 116, 242, 0.1), -18px -18px 0 rgba(99, 226, 229, 0.06);
}

.service-panel__visual--browser::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 34px;
  border-bottom: 1px solid rgba(238, 235, 229, 0.16);
  background: radial-gradient(circle at 18px 17px, var(--color-oxygen) 0 3px, transparent 4px), radial-gradient(circle at 32px 17px, rgba(255,255,255,.34) 0 3px, transparent 4px);
}

.service-panel__visual--browser i {
  position: absolute;
  top: 62px;
  bottom: 24px;
  width: 25%;
  border: 1px solid rgba(238, 235, 229, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(99, 226, 229, 0.14), rgba(4, 116, 242, 0.08));
}

.service-panel__visual--browser i:nth-child(1) { left: 6%; width: 43%; }
.service-panel__visual--browser i:nth-child(2) { right: 27%; }
.service-panel__visual--browser i:nth-child(3) { right: 6%; width: 15%; }

.service-panel__visual--growth svg {
  position: absolute;
  inset: 12px 0 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.service-panel__visual--growth path {
  fill: none;
  stroke: url(#none);
  stroke: var(--color-oxygen);
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(99, 226, 229, 0.5));
}

.service-panel__visual--growth circle {
  fill: #fff;
  stroke: var(--color-volt);
  stroke-width: 4;
}

.service-track__outro {
  justify-content: center;
  margin-right: 10vw;
  border: 1px solid rgba(238, 235, 229, 0.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(99, 226, 229, 0.08), rgba(4, 116, 242, 0.1));
}

.service-track__outro h3 {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 510;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.service-track__outro .btn {
  align-self: flex-start;
  margin-top: 30px;
}

.service-track__progress {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  left: 4vw;
  height: 1px;
  background: rgba(238, 235, 229, 0.13);
}

.service-track__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-oxygen), var(--color-volt));
  box-shadow: 0 0 12px rgba(99, 226, 229, 0.4);
  transform: scaleX(var(--scene-progress));
  transform-origin: left;
}

/* Honest proof framework. */
.proof-horizon {
  position: relative;
  padding: clamp(120px, 14vw, 210px) 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(4, 116, 242, 0.14), transparent 27rem),
    var(--home-canvas);
}

.proof-horizon__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.proof-horizon__copy h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(3rem, 5.6vw, 6.8rem);
  font-weight: 510;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.proof-horizon__copy p {
  max-width: 580px;
  margin-top: 28px;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.proof-horizon__copy .home-text-link {
  margin-top: 24px;
}

.proof-horizon__stack {
  perspective: 1000px;
}

.proof-horizon__stack article {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 26px clamp(24px, 3vw, 44px);
  border: 1px solid rgba(238, 235, 229, 0.13);
  border-radius: 20px;
  background: rgba(13, 16, 53, 0.44);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--ease-out), border-color 220ms var(--ease-standard);
}

.proof-horizon__stack article + article {
  margin-top: -28px;
}

.proof-horizon__stack article:nth-child(1) { transform: rotateX(2deg) rotateZ(-1.8deg); }
.proof-horizon__stack article:nth-child(2) { transform: translateX(4%) rotateZ(1deg); }
.proof-horizon__stack article:nth-child(3) { transform: translateX(-2%) rotateZ(-0.4deg); }
.proof-horizon__stack article:hover { z-index: 3; border-color: rgba(99, 226, 229, 0.42); transform: translate3d(0, -8px, 30px) rotate(0); }

.proof-horizon__stack article > span {
  align-self: start;
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-horizon__stack h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  font-weight: 520;
}

.proof-horizon__stack p {
  grid-column: 2;
  color: var(--home-muted);
  font-size: 0.88rem;
}

.proof-horizon__stack i {
  position: absolute;
  right: -10%;
  bottom: -70%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(4, 116, 242, 0.26);
  filter: blur(34px);
}

/* Pinned process scene. */
.process-story {
  --scene-progress: 0;
  position: relative;
  min-height: 380svh;
  border-top: 1px solid rgba(238, 235, 229, 0.1);
  border-bottom: 1px solid rgba(238, 235, 229, 0.1);
  background:
    radial-gradient(circle at 72% 46%, rgba(4, 116, 242, 0.16), transparent 30rem),
    #060913;
}

.process-story__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 108px 0 34px;
}

.process-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.process-story__copy h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-weight: 510;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.process-story__copy > p {
  max-width: 580px;
  margin-top: 24px;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.process-story__steps {
  position: relative;
  height: 170px;
  margin-top: 52px;
}

.process-step {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 320ms var(--ease-standard), transform 420ms var(--ease-out);
  pointer-events: none;
}

.process-step[data-state="active"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.process-step > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99, 226, 229, 0.36);
  border-radius: 50%;
  color: var(--color-oxygen);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.process-step h3 {
  color: #fff;
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  font-weight: 520;
}

.process-step p {
  max-width: 520px;
  margin-top: 10px;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.process-machine {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 660px);
  justify-self: center;
  transform: perspective(900px) rotateX(64deg) rotateZ(calc(-28deg + var(--scene-progress) * 145deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.process-machine__halo {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 226, 229, 0.18), rgba(4, 116, 242, 0.08) 34%, transparent 68%);
  filter: blur(20px);
  transform: translateZ(-30px);
}

.process-machine__orbit {
  position: absolute;
  border: 1px solid rgba(99, 226, 229, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(4, 116, 242, 0.05), 0 0 40px rgba(4, 116, 242, 0.08);
}

.process-machine__orbit--one { inset: 8%; }
.process-machine__orbit--two { inset: 20%; border-color: rgba(4, 116, 242, 0.52); transform: rotate(28deg) translateZ(28px); }
.process-machine__orbit--three { inset: 32%; border-color: rgba(238, 235, 229, 0.24); transform: rotate(-16deg) translateZ(54px); }

.process-machine__orbit i {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-oxygen);
  box-shadow: 0 0 22px var(--color-oxygen);
}

.process-machine__orbit--two i { top: 16%; left: 79%; background: var(--color-volt); box-shadow: 0 0 22px var(--color-volt); }
.process-machine__orbit--three i { top: auto; right: 8%; bottom: 12%; left: auto; background: #fff; }

.process-machine__core {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(99, 226, 229, 0.82), rgba(4, 116, 242, 0.9));
  box-shadow: 0 0 60px rgba(4, 116, 242, 0.46), inset 0 1px 0 rgba(255,255,255,0.8);
  color: #fff;
  text-align: center;
  transform: translateZ(92px) rotate(calc(28deg - var(--scene-progress) * 145deg));
}

.process-machine__core span {
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.process-machine__label {
  position: absolute;
  color: rgba(238, 235, 229, 0.52);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(calc(28deg - var(--scene-progress) * 145deg)) translateZ(110px);
}

.process-machine__label--one { top: 9%; left: 47%; }
.process-machine__label--two { top: 47%; right: 5%; }
.process-machine__label--three { bottom: 8%; left: 45%; }
.process-machine__label--four { top: 48%; left: 4%; }

.process-story__status {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: rgba(238, 235, 229, 0.44);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-story__status i {
  height: 1px;
  background: rgba(238, 235, 229, 0.14);
}

.process-story__status b {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-oxygen), var(--color-volt));
  transform: scaleX(var(--scene-progress));
  transform-origin: left;
}

/* The light Ion globe scene creates a deliberate tonal reset. */
.home-delivery {
  position: relative;
  padding: clamp(110px, 13vw, 190px) 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(99, 226, 229, 0.5), transparent 28rem),
    radial-gradient(circle at 18% 92%, rgba(4, 116, 242, 0.2), transparent 30rem),
    var(--color-ion);
  color: var(--color-hyperfocus);
}

.home-delivery__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: clamp(50px, 8vw, 126px);
}

.home-delivery .home-kicker {
  color: var(--color-volt);
}

.home-delivery__copy h2 {
  margin-top: 24px;
  color: var(--color-hyperfocus);
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-weight: 510;
  letter-spacing: -0.07em;
  line-height: 0.89;
}

.home-delivery__copy h2 em {
  color: var(--color-volt);
}

.home-delivery__copy > p {
  max-width: 610px;
  margin-top: 28px;
  color: color-mix(in srgb, var(--color-hyperfocus) 68%, var(--color-ion));
  font-size: 1rem;
  line-height: 1.62;
}

.home-delivery__markets {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.home-delivery__markets span {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--color-hyperfocus) 14%, transparent);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--color-hyperfocus);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.delivery-globe {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 34px 90px rgba(13, 16, 53, 0.16), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(22px) saturate(135%);
}

.delivery-globe::before {
  content: "";
  position: absolute;
  inset: 46px 0;
  background-image:
    linear-gradient(rgba(13, 16, 53, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 16, 53, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, black, transparent 70%);
  pointer-events: none;
}

.delivery-globe__bar,
.delivery-globe__foot {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: color-mix(in srgb, var(--color-hyperfocus) 54%, var(--color-ion));
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.delivery-globe__bar { border-bottom: 1px solid rgba(13, 16, 53, 0.1); }
.delivery-globe__foot { border-top: 1px solid rgba(13, 16, 53, 0.1); }
.delivery-globe__bar span:first-child { display: flex; align-items: center; gap: 8px; color: var(--color-hyperfocus); }
.delivery-globe__canvas { position: relative; z-index: 1; width: min(100%, 660px); margin: -2% auto -4%; }

/* Perspective-grid inquiry scene. */
.home-inquiry {
  position: relative;
  isolation: isolate;
  min-height: 108svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(99, 226, 229, 0.12), transparent 26rem),
    #05070c;
}

.home-inquiry__grid {
  position: absolute;
  right: -20%;
  bottom: -33%;
  left: -20%;
  height: 74%;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(99, 226, 229, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 226, 229, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, transparent 92%);
  transform: perspective(500px) rotateX(64deg);
  transform-origin: top;
}

.home-inquiry__orb {
  position: absolute;
  bottom: 4%;
  left: 50%;
  z-index: -1;
  width: min(64vw, 900px);
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(99, 226, 229, 0.42), rgba(4, 116, 242, 0.62), rgba(72, 42, 176, 0.45));
  filter: blur(74px);
  transform: translateX(-50%);
}

.home-inquiry__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-inquiry__content .home-kicker::before { display: none; }

.home-inquiry__content h2 {
  max-width: 1220px;
  margin: 30px auto 0;
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 9.5rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.85;
}

.home-inquiry__content p {
  max-width: 610px;
  margin: 30px auto 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.home-inquiry__cta {
  min-height: 56px;
  margin-top: 36px;
  padding-inline: 26px;
}

@media (max-width: 1120px) {
  .home-hero__grid,
  .process-story__grid,
  .home-delivery__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 34px;
  }

  .home-hero__title { font-size: clamp(3.1rem, 5.6vw, 5.4rem); }
  .proof-horizon__grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: 54px; }
}

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__sticky {
    position: relative;
    min-height: auto;
    padding-top: 130px;
  }

  .home-hero__grid,
  .proof-horizon__grid,
  .process-story__grid,
  .home-delivery__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .home-hero__system,
  .home-hero__foot {
    opacity: 1;
    transform: none;
  }

  .home-hero__system {
    height: min(76vw, 650px);
    min-height: 500px;
  }

  .home-hero__foot {
    margin-top: 42px;
  }

  .home-manifesto__principles {
    grid-template-columns: 1fr;
  }

  .home-manifesto__principles article {
    min-height: 0;
  }

  .home-manifesto__principles article + article {
    border-top: 1px solid rgba(238, 235, 229, 0.13);
    border-left: 0;
  }

  .home-manifesto__principles h3 {
    margin-top: 42px;
  }

  .service-journey {
    min-height: 0;
    padding: 110px 0;
  }

  .service-track__sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .service-track__hud,
  .service-track__progress {
    display: none;
  }

  .service-track__viewport {
    overflow: visible;
  }

  .service-track__rail {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 clamp(20px, 4vw, 56px);
    transform: none !important;
  }

  .service-track__intro,
  .service-panel,
  .service-track__outro {
    width: 100%;
    height: auto;
    min-height: 560px;
    flex-basis: auto;
  }

  .service-track__intro {
    min-height: 620px;
    padding-inline: 0;
  }

  .service-track__outro {
    min-height: 470px;
    margin-right: 0;
  }

  .process-story {
    min-height: 330svh;
  }

  .process-story__sticky {
    padding-top: 118px;
  }

  .process-machine {
    position: absolute;
    right: -22%;
    bottom: 7%;
    width: 68vw;
    opacity: 0.36;
  }

  .process-story__copy {
    position: relative;
    z-index: 2;
  }

  .home-delivery__grid {
    gap: 70px;
  }

  .delivery-globe {
    max-width: 700px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .home-hero__sticky {
    padding-top: 112px;
  }

  .home-hero__title {
    font-size: clamp(3rem, 15vw, 5.25rem);
  }

  .home-hero__lede {
    font-size: 1rem;
  }

  .home-hero__system {
    height: 570px;
    min-height: 0;
    border-radius: 20px;
  }

  .home-hero__system-bar span:last-child,
  .home-hero__system-foot span:last-child,
  .delivery-globe__bar span:last-child,
  .delivery-globe__foot span:last-child {
    display: none;
  }

  .agency-scene__label {
    padding: 6px 8px;
    font-size: 0.55rem;
  }

  .agency-scene__label--strategy { left: 5%; }
  .agency-scene__label--identity { right: 4%; }
  .agency-scene__label--web { left: 5%; }
  .agency-scene__label--growth { right: 5%; }

  .home-hero__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-scroll-cue { display: none; }

  .home-manifesto__meta {
    grid-template-columns: 1fr;
  }

  .home-manifesto__title,
  .home-inquiry__content h2 {
    font-size: clamp(3.1rem, 15vw, 5.8rem);
  }

  .home-manifesto__principles {
    margin-top: 72px;
  }

  .service-track__rail {
    padding-inline: 20px;
  }

  .service-track__intro h2,
  .proof-horizon__copy h2,
  .process-story__copy h2,
  .home-delivery__copy h2 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

  .service-panel {
    min-height: 520px;
    padding: 24px;
    border-radius: 18px;
  }

  .service-panel__visual {
    width: 100%;
    transform: scale(0.88);
  }

  .service-panel__copy h3 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .proof-horizon__stack article {
    min-height: 180px;
    grid-template-columns: 1fr;
  }

  .proof-horizon__stack article + article {
    margin-top: -14px;
  }

  .proof-horizon__stack article:nth-child(n) {
    transform: none;
  }

  .proof-horizon__stack p {
    grid-column: 1;
  }

  .process-story__sticky {
    padding-top: 108px;
  }

  .process-story__steps {
    height: 210px;
    margin-top: 42px;
  }

  .process-machine {
    right: -38%;
    bottom: 12%;
    width: 92vw;
  }

  .process-story__status span:last-child {
    display: none;
  }

  .process-story__status {
    grid-template-columns: auto 1fr;
  }

  .home-delivery__markets {
    gap: 7px;
  }

  .delivery-globe {
    border-radius: 20px;
  }

  .home-inquiry {
    min-height: 92svh;
  }

  .home-inquiry__grid {
    background-size: 46px 46px;
  }
}

@media (max-width: 420px) {
  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .btn,
  .home-hero__actions .home-text-link {
    justify-content: center;
  }

  .home-hero__system {
    height: 500px;
  }

  .home-hero__markets {
    gap: 8px 16px;
  }

  .service-panel__visual--identity {
    gap: 10px;
    padding: 12px;
  }

  .service-track__index {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero,
  .service-journey,
  .process-story {
    min-height: auto;
  }

  .home-hero__sticky,
  .service-track__sticky,
  .process-story__sticky {
    position: relative;
    min-height: auto;
  }

  .home-hero__copy,
  .home-hero__system,
  .home-hero__foot,
  .home-hero__aurora {
    opacity: 1;
    transform: none;
  }

  .service-track__hud,
  .service-track__progress,
  .process-story__status {
    display: none;
  }

  .service-track__rail {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding-inline: clamp(20px, 4vw, 56px);
    transform: none !important;
  }

  .service-track__intro,
  .service-panel,
  .service-track__outro {
    width: 100%;
    height: auto;
    min-height: 560px;
    flex-basis: auto;
  }

  .process-story__grid {
    grid-template-columns: 1fr;
    padding-block: 120px;
  }

  .process-story__steps {
    height: auto;
    display: grid;
    gap: 30px;
  }

  .process-step {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .process-machine {
    display: none;
  }
}

/* Clear services grid: all six offerings remain visible in normal page flow. */
.service-journey {
  min-height: 0;
  height: auto !important;
  padding: clamp(112px, 13vw, 190px) 0;
}

.service-track__sticky {
  position: relative;
  top: auto;
  height: auto;
  display: block;
  overflow: visible;
}

.service-track__hud {
  position: relative;
  top: auto;
  margin-bottom: 54px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(238, 235, 229, 0.13);
}

.service-track__viewport {
  overflow: visible;
}

.service-track__rail {
  width: 100%;
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-inline: auto;
  padding: 0 clamp(20px, 4vw, 56px);
  transform: none !important;
}

.service-track__intro {
  width: 100%;
  height: auto;
  min-height: 460px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  grid-template-rows: auto auto 1fr;
  align-items: end;
  gap: 16px clamp(46px, 8vw, 130px);
  padding: 0 0 clamp(54px, 7vw, 90px);
}

.service-track__intro .home-kicker {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.service-track__intro h2 {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: start;
}

.service-track__intro > p {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.service-track__index {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
}

.service-panel {
  width: 100%;
  height: auto;
  min-height: 570px;
  flex-basis: auto;
}

.service-panel__visual {
  width: min(94%, 430px);
  min-height: 200px;
}

.service-panel__copy h3 {
  font-size: clamp(2rem, 3vw, 3.65rem);
}

.service-track__outro {
  width: 100%;
  height: auto;
  min-height: 390px;
  grid-column: 1 / -1;
  flex-basis: auto;
  margin: 0;
  margin-top: 20px;
}

.service-track__progress {
  display: none;
}

@media (max-width: 1120px) {
  .service-track__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel__copy h3 {
    font-size: clamp(2.25rem, 4vw, 3.8rem);
  }
}

@media (max-width: 900px) {
  .service-journey {
    padding: 110px 0;
  }

  .service-track__hud {
    display: flex;
    margin-bottom: 36px;
  }

  .service-track__rail {
    grid-template-columns: 1fr;
    padding-inline: clamp(20px, 4vw, 56px);
  }

  .service-track__intro {
    min-height: 0;
    display: block;
    padding: 28px 0 64px;
  }

  .service-track__intro h2 {
    margin-top: 24px;
  }

  .service-track__intro > p {
    margin-top: 26px;
  }

  .service-panel {
    min-height: 560px;
  }

  .service-track__outro {
    min-height: 450px;
  }
}

@media (max-width: 720px) {
  .service-track__hud span:last-child {
    text-align: right;
  }

  .service-panel {
    min-height: 520px;
  }
}

/* Editorial spectrum system — homepage hero and shared inner-page language. */
.home-gradient-text,
.home-manifesto__title em,
.service-track__intro em,
.proof-horizon__copy em,
.process-story__copy em,
.home-inquiry__content em {
  background-image: linear-gradient(100deg, var(--color-oxygen) 2%, var(--color-volt) 38%, var(--color-violet) 68%, var(--color-pink));
}

/* Minimal editorial homepage hero. */
.home-hero--editorial {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  border-bottom-color: rgba(238, 235, 229, 0.13);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(141, 98, 255, 0.12), transparent 27rem),
    #030509;
}

.home-hero--editorial::before {
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: clamp(42px, 4.5vw, 72px) clamp(42px, 4.5vw, 72px);
  mask-image: linear-gradient(to bottom, transparent 2%, black 24%, black 70%, transparent 96%);
}

.home-hero--editorial::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  left: -8%;
  height: 38%;
  border-radius: 50% 50% 0 0;
  background: #020304;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06), 0 -34px 90px rgba(99, 226, 229, 0.09);
  pointer-events: none;
}

.home-hero--editorial .home-hero__aurora {
  top: auto;
  right: 4%;
  bottom: -23%;
  left: 4%;
  width: auto;
  height: 52%;
  aspect-ratio: auto;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 18% 62%, rgba(99, 226, 229, 0.68), transparent 28%),
    radial-gradient(ellipse at 42% 38%, rgba(4, 116, 242, 0.7), transparent 34%),
    radial-gradient(ellipse at 68% 58%, rgba(141, 98, 255, 0.68), transparent 32%),
    radial-gradient(ellipse at 86% 42%, rgba(255, 92, 168, 0.58), transparent 27%);
  filter: blur(56px) saturate(120%);
  opacity: 0.88;
  transform: none;
  animation: editorial-aurora 1600ms var(--ease-out) both;
}

.home-hero__gridlines {
  position: absolute;
  inset: 10% 8% 16%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  opacity: 0.38;
  pointer-events: none;
}

.editorial-hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: clamp(112px, 13vh, 150px);
  padding-bottom: 26px;
}

.editorial-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(238, 235, 229, 0.46);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.editorial-hero__content {
  align-self: center;
  display: grid;
  justify-items: center;
  padding-block: clamp(48px, 8vh, 90px);
  text-align: center;
}

.editorial-hero__title {
  position: relative;
  max-width: 13ch;
  margin-top: clamp(24px, 3.2vh, 38px);
  color: #fff;
  font-size: clamp(4.7rem, 10.3vw, 11.2rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.78;
}

.editorial-hero__title > span {
  display: block;
}

.editorial-hero__title > span + span {
  margin-top: 0.14em;
}

.home-main .editorial-hero__accent {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-inline: 0.015em 0.06em;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
  background: linear-gradient(100deg, var(--color-oxygen), #8bc8ff 32%, var(--color-violet) 66%, var(--color-pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.editorial-hero__accent > span {
  position: relative;
  z-index: 2;
}

.editorial-hero__accent svg {
  position: absolute;
  z-index: 1;
  width: 122%;
  height: 112%;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  transform: rotate(-4deg);
}

.editorial-hero__accent i {
  position: absolute;
  top: -0.06em;
  right: -0.06em;
  z-index: 3;
  width: 0.13em;
  height: 0.13em;
  background: #fff;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  filter: drop-shadow(0 0 8px var(--color-pink));
  animation: editorial-twinkle 2.4s ease-in-out 3;
}

.editorial-hero__lede {
  max-width: 670px;
  margin-top: clamp(34px, 4.2vh, 52px);
  color: rgba(238, 235, 229, 0.68);
  font-size: clamp(1rem, 1.24vw, 1.22rem);
  line-height: 1.55;
}

.editorial-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
}

.editorial-hero__cta {
  min-height: 54px;
  padding-inline: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-full);
  background: rgba(3, 5, 9, 0.74);
  box-shadow: 0 0 0 1px rgba(141, 98, 255, 0.18), 0 0 34px rgba(4, 116, 242, 0.26), 0 0 52px rgba(255, 92, 168, 0.1);
  color: #fff;
}

.editorial-hero__cta:hover,
.editorial-hero__cta:focus-visible {
  border-color: var(--color-pink);
  background: #fff;
  color: #030509;
}

.home-hero--editorial .home-hero__foot {
  z-index: 3;
  align-self: end;
  margin-top: 0;
  opacity: 1;
  transform: none;
}

.home-hero__spark {
  position: absolute;
  z-index: 2;
  width: 17px;
  height: 17px;
  background: rgba(255, 255, 255, 0.82);
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  filter: drop-shadow(0 0 10px rgba(99, 226, 229, 0.74));
  animation: editorial-twinkle 3s ease-in-out 3;
}

.home-hero__spark--one { top: 19%; left: 11%; }
.home-hero__spark--two { right: 12%; bottom: 26%; animation-delay: -1.4s; }

@keyframes editorial-aurora {
  to { transform: translate3d(1.5%, -2%, 0) scale(1.04); }
}

@keyframes editorial-twinkle {
  50% { opacity: 0.42; transform: scale(0.66) rotate(20deg); }
}

/* The Marketing Strategy card now has a legible channel-to-demand diagram. */
.service-panel--audit { --panel-glow: rgba(4, 116, 242, 0.34); }
.service-panel--strategy { --panel-glow: rgba(141, 98, 255, 0.42); }
.service-panel--marketing { --panel-glow: rgba(255, 92, 168, 0.4); }
.service-panel--identity { --panel-glow: rgba(141, 98, 255, 0.4); }
.service-panel--web { --panel-glow: rgba(4, 116, 242, 0.42); }
.service-panel--performance { --panel-glow: rgba(99, 226, 229, 0.38); }

.service-panel--marketing .service-panel__copy > span,
.service-panel--marketing .service-panel__top span:first-child {
  color: #ff83bd;
}

.service-panel__visual--marketing {
  display: grid;
  align-content: center;
  padding: 14px 18px 6px;
}

.service-panel__visual--marketing svg {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: visible;
}

.marketing-visual__channels,
.marketing-visual__growth,
.marketing-visual__arrow {
  fill: none;
  stroke: rgba(238, 235, 229, 0.56);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marketing-visual__channels circle {
  fill: var(--color-oxygen);
  stroke: none;
  filter: drop-shadow(0 0 8px rgba(99, 226, 229, 0.75));
}

.marketing-visual__funnel {
  fill: rgba(141, 98, 255, 0.16);
  stroke: var(--color-violet);
  stroke-width: 2.2;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 15px rgba(141, 98, 255, 0.34));
}

.marketing-visual__growth,
.marketing-visual__arrow {
  stroke: var(--color-pink);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(255, 92, 168, 0.5));
}

.marketing-visual__pulse {
  fill: var(--color-pink);
  filter: drop-shadow(0 0 9px var(--color-pink));
}

.marketing-visual__labels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: -8px;
  color: rgba(238, 235, 229, 0.48);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.home-manifesto::before {
  border-color: rgba(255, 92, 168, 0.12);
  box-shadow: 0 0 0 80px rgba(141, 98, 255, 0.03), 0 0 0 160px rgba(4, 116, 242, 0.022);
}

.proof-horizon__stack article:nth-child(2) {
  border-color: rgba(141, 98, 255, 0.32);
  box-shadow: 0 34px 80px rgba(141, 98, 255, 0.12);
}

.proof-horizon__stack article:nth-child(3) {
  border-color: rgba(255, 92, 168, 0.28);
  box-shadow: 0 34px 80px rgba(255, 92, 168, 0.09);
}

.process-machine__core {
  background: linear-gradient(145deg, rgba(99, 226, 229, 0.95), rgba(4, 116, 242, 0.92) 42%, rgba(141, 98, 255, 0.92) 72%, rgba(255, 92, 168, 0.88));
}

.home-inquiry__orb {
  background: radial-gradient(circle at 38% 34%, rgba(99, 226, 229, 0.88), rgba(4, 116, 242, 0.68) 34%, rgba(141, 98, 255, 0.5) 56%, rgba(255, 92, 168, 0.38) 70%, transparent 74%);
}

.footer::before {
  background: linear-gradient(105deg, rgba(99, 226, 229, 0.56), rgba(4, 116, 242, 0.78) 38%, rgba(141, 98, 255, 0.72) 69%, rgba(255, 92, 168, 0.58));
}

.footer__wordmark span {
  color: var(--color-pink);
}

/* Shared editorial system for About, Services, Proof, and Contact. */
.inner-page main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(4, 116, 242, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 52%, rgba(141, 98, 255, 0.07), transparent 30rem),
    #030509;
}

.inner-page .page-hero {
  position: relative;
  min-height: min(830px, 92svh);
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + clamp(104px, 13vw, 170px));
  padding-bottom: clamp(90px, 11vw, 150px);
  background:
    radial-gradient(ellipse at 50% 106%, rgba(4, 116, 242, 0.25), transparent 42%),
    radial-gradient(circle at 74% 88%, rgba(255, 92, 168, 0.14), transparent 24%),
    radial-gradient(circle at 28% 86%, rgba(141, 98, 255, 0.18), transparent 28%),
    #030509;
}

.inner-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent 97%);
  pointer-events: none;
}

.inner-page .page-hero::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -30%;
  left: 10%;
  height: 44%;
  border: 1px solid rgba(238, 235, 229, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(141, 98, 255, 0.12);
  pointer-events: none;
}

.inner-page .page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero__meta,
.contact-panel__meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(238, 235, 229, 0.44);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inner-page .page-hero__meta {
  position: absolute;
  top: -58px;
  right: 56px;
  left: 56px;
  width: auto;
}

.inner-page .page-hero__title {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(4rem, 8.7vw, 9.7rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.inner-page .page-hero__title .mark,
.inner-page--contact .page-hero__title .mark {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  background: linear-gradient(100deg, var(--color-oxygen), var(--color-volt) 38%, var(--color-violet) 67%, var(--color-pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.inner-page .page-hero__desc {
  max-width: 67ch;
  margin-top: clamp(30px, 4vw, 48px);
  color: rgba(238, 235, 229, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.inner-page .section,
.inner-page .section--tint,
.inner-page .section--night,
.inner-page .contact-section {
  position: relative;
  border-color: rgba(238, 235, 229, 0.11);
  background-color: #030509;
  background-image: none;
}

.inner-page main > .section:nth-of-type(3n + 2) {
  background-image:
    radial-gradient(circle at 8% 20%, rgba(255, 92, 168, 0.07), transparent 25rem),
    radial-gradient(circle at 92% 78%, rgba(4, 116, 242, 0.08), transparent 30rem);
}

.inner-page main > .section:nth-of-type(3n) {
  background-image:
    linear-gradient(135deg, rgba(13, 16, 53, 0.5), rgba(3, 5, 9, 0.96) 56%),
    radial-gradient(circle at 76% 24%, rgba(141, 98, 255, 0.08), transparent 26rem);
}

.inner-page .section-head {
  margin-bottom: clamp(54px, 7vw, 92px);
}

.inner-page .section-title {
  max-width: 16ch;
  font-size: clamp(2.9rem, 5.7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.inner-page .section-eyebrow,
.inner-page .eyebrow {
  color: var(--color-oxygen);
}

.inner-page .section-desc,
.inner-page .story-copy p,
.inner-page .check-list li {
  color: rgba(238, 235, 229, 0.66);
}

.inner-page .story-panel,
.inner-page .value-card,
.inner-page .detail-card,
.inner-page .project-card,
.inner-page .proof-card,
.inner-page .cta-band,
.inner-page .contact-panel,
.inner-page .contact-form {
  border: 1px solid rgba(238, 235, 229, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(13, 16, 53, 0.42);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.inner-page .value-card,
.inner-page .detail-card,
.inner-page .project-card,
.inner-page .proof-card {
  transition: transform 280ms var(--ease-out), border-color 200ms var(--ease-standard), box-shadow 280ms var(--ease-out);
}

.inner-page .value-card:hover,
.inner-page .detail-card:hover,
.inner-page .project-card:hover,
.inner-page .proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 226, 229, 0.32);
  box-shadow: 0 34px 96px rgba(4, 116, 242, 0.12), 0 26px 76px rgba(0, 0, 0, 0.38);
}

.inner-page .value-card:nth-child(3n + 2),
.inner-page .project-card:nth-child(3n + 2),
.inner-page .proof-card:nth-child(2) {
  border-color: rgba(141, 98, 255, 0.25);
}

.inner-page .value-card:nth-child(3n),
.inner-page .project-card:nth-child(3n),
.inner-page .proof-card:nth-child(3) {
  border-color: rgba(255, 92, 168, 0.24);
}

.inner-page .story-panel,
.inner-page .cta-band,
.inner-page .contact-panel {
  background:
    linear-gradient(135deg, rgba(99, 226, 229, 0.08), rgba(4, 116, 242, 0.08) 36%, rgba(141, 98, 255, 0.09) 68%, rgba(255, 92, 168, 0.07)),
    rgba(13, 16, 53, 0.48);
}

.inner-page .service-detail-list {
  gap: 18px;
  border-top: 0;
}

.inner-page .detail-card {
  position: relative;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  padding: clamp(30px, 4.5vw, 64px);
  border-bottom: 1px solid rgba(238, 235, 229, 0.13);
}

.inner-page .detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--service-accent, var(--color-oxygen));
  box-shadow: 0 0 32px var(--service-accent, var(--color-oxygen));
}

.inner-page .detail-card:nth-child(1),
.inner-page .detail-card:nth-child(5) { --service-accent: var(--color-oxygen); }
.inner-page .detail-card:nth-child(2),
.inner-page .detail-card:nth-child(4) { --service-accent: var(--color-violet); }
.inner-page .detail-card:nth-child(3) { --service-accent: var(--color-pink); }
.inner-page .detail-card:nth-child(6) { --service-accent: var(--color-volt); }

.inner-page .detail-card__num,
.inner-page .detail-card .check-list svg {
  color: var(--service-accent, var(--color-oxygen));
}

.inner-page .detail-card .pill {
  border-color: color-mix(in srgb, var(--service-accent, var(--color-oxygen)) 38%, transparent);
  background: color-mix(in srgb, var(--service-accent, var(--color-oxygen)) 10%, transparent);
}

.inner-page .project-card {
  overflow: hidden;
}

.inner-page .project-card__visual,
.inner-page .project-card:nth-child(2n) .project-card__visual,
.inner-page .project-card:nth-child(3n) .project-card__visual {
  border-bottom-color: rgba(238, 235, 229, 0.13);
  background-color: rgba(8, 11, 24, 0.84);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 28% 74%, rgba(4, 116, 242, 0.34), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(141, 98, 255, 0.26), transparent 30%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: #fff;
}

.inner-page .project-card:nth-child(3n) .project-card__visual {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(255, 92, 168, 0.34), transparent 34%),
    radial-gradient(circle at 74% 30%, rgba(141, 98, 255, 0.28), transparent 31%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.inner-page .project-card__stamp {
  border-radius: var(--radius-full);
  background: rgba(3, 5, 9, 0.52);
  backdrop-filter: blur(10px);
}

.inner-page .placeholder-box {
  border-color: rgba(238, 235, 229, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(238, 235, 229, 0.045);
  background-size: 28px 28px;
}

.inner-page--contact .contact-section {
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + clamp(92px, 10vw, 142px));
  padding-bottom: clamp(90px, 10vw, 150px);
  background:
    radial-gradient(circle at 16% 24%, rgba(4, 116, 242, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 78%, rgba(255, 92, 168, 0.1), transparent 30rem),
    #030509;
}

.inner-page--contact .contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.inner-page--contact .contact-layout {
  position: relative;
  z-index: 1;
  align-items: start;
}

.inner-page--contact .contact-panel,
.inner-page--contact .contact-form {
  border-radius: 24px;
}

.inner-page--contact .contact-panel .page-hero__title {
  margin-top: 30px;
  font-size: clamp(3.4rem, 5.8vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.88;
}

.inner-page--contact .field input,
.inner-page--contact .field select,
.inner-page--contact .field textarea {
  min-height: 52px;
  padding-inline: 14px;
  border: 1px solid rgba(238, 235, 229, 0.14);
  border-radius: 10px;
  background: rgba(238, 235, 229, 0.055);
  transition: border-color 180ms var(--ease-standard), background 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}

.inner-page--contact .field textarea {
  min-height: 150px;
  padding-block: 14px;
}

.inner-page--contact .field input:focus,
.inner-page--contact .field select:focus,
.inner-page--contact .field textarea:focus {
  border-color: var(--color-violet);
  background: rgba(141, 98, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(141, 98, 255, 0.12);
}

.inner-page--contact .contact-form .btn--primary,
.inner-page .cta-band .btn--light {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 34px rgba(4, 116, 242, 0.16), 0 0 36px rgba(255, 92, 168, 0.08);
}

@media (max-width: 900px) {
  .editorial-hero__title {
    font-size: clamp(4.2rem, 13.8vw, 8.3rem);
  }

  .home-hero--editorial .home-hero__foot {
    margin-top: 0;
  }

  .inner-page .page-hero__title {
    font-size: clamp(3.8rem, 12vw, 7rem);
  }

  .inner-page .detail-card {
    grid-template-columns: 150px 1fr;
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .home-hero--editorial {
    min-height: max(780px, 100svh);
  }

  .editorial-hero {
    min-height: max(780px, 100svh);
    padding-top: 108px;
    padding-bottom: 22px;
  }

  .editorial-hero__meta span:last-child {
    display: none;
  }

  .editorial-hero__content {
    padding-block: 52px 36px;
  }

  .editorial-hero__title {
    max-width: 10ch;
    font-size: clamp(3.8rem, 18vw, 6.4rem);
    line-height: 0.82;
  }

  .editorial-hero__title > span + span {
    margin-top: 0.2em;
  }

  .editorial-hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
  }

  .editorial-hero__actions .btn,
  .editorial-hero__actions .home-text-link {
    justify-content: center;
  }

  .home-hero__spark--one { top: 22%; left: 6%; }
  .home-hero__spark--two { right: 6%; bottom: 23%; }

  .home-hero--editorial .home-hero__markets {
    gap: 7px 13px;
    font-size: 0.57rem;
  }

  .inner-page .page-hero {
    min-height: 760px;
    padding-top: 160px;
  }

  .inner-page .page-hero__meta {
    top: -42px;
    right: 20px;
    left: 20px;
  }

  .inner-page .page-hero__meta > span:last-child {
    display: none;
  }

  .inner-page .page-hero__title {
    font-size: clamp(3.45rem, 16vw, 5.8rem);
  }

  .inner-page .section-title {
    font-size: clamp(2.8rem, 13vw, 5rem);
  }

  .inner-page .story-panel,
  .inner-page .value-card,
  .inner-page .detail-card,
  .inner-page .project-card,
  .inner-page .proof-card,
  .inner-page .cta-band,
  .inner-page .contact-panel,
  .inner-page .contact-form {
    border-radius: 18px;
  }

  .inner-page .detail-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 24px 32px;
  }

  .inner-page .detail-card__meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .inner-page--contact .contact-panel .page-hero__title {
    font-size: clamp(3.2rem, 14.7vw, 5.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero--editorial,
  .editorial-hero {
    min-height: 100svh;
  }

  .home-hero--editorial .home-hero__aurora,
  .home-hero__spark,
  .editorial-hero__accent i {
    animation: none;
  }
}

/* Compact vertical rhythm — retain hierarchy without oversized dead space. */
.home-main .editorial-hero__accent {
  background: none;
  color: #c58aff;
  text-shadow: 0 0 34px rgba(141, 98, 255, 0.28), 0 0 52px rgba(255, 92, 168, 0.12);
}

.home-main .editorial-hero__accent > span {
  color: #c58aff;
}

.home-manifesto {
  padding: clamp(80px, 8vw, 120px) 0 clamp(88px, 9vw, 132px);
}

.home-manifesto__title {
  margin-top: clamp(52px, 5.5vw, 82px);
}

.home-manifesto__principles {
  margin-top: clamp(58px, 6vw, 88px);
}

.home-manifesto__principles article {
  min-height: 210px;
  padding-top: 26px;
  padding-bottom: 28px;
}

.home-manifesto__principles h3 {
  margin-top: 42px;
}

.service-journey {
  padding: clamp(80px, 8vw, 120px) 0;
}

.service-track__hud {
  margin-bottom: 36px;
}

.service-track__intro {
  min-height: 360px;
  padding-bottom: clamp(46px, 5vw, 70px);
}

.service-panel {
  min-height: 500px;
}

.service-panel__visual {
  min-height: 176px;
}

.service-track__outro {
  min-height: 330px;
  margin-top: 0;
}

.proof-horizon {
  padding: clamp(84px, 9vw, 132px) 0;
}

.process-story {
  min-height: 280svh;
}

.process-story__sticky {
  padding: 88px 0 28px;
}

.process-story__steps {
  margin-top: 38px;
}

.home-delivery {
  padding: clamp(82px, 9vw, 132px) 0;
}

.home-inquiry {
  min-height: 88svh;
  padding: clamp(88px, 9vw, 126px) 0;
}

.inner-page .page-hero {
  min-height: min(700px, 78svh);
  padding-top: calc(var(--nav-height) + clamp(82px, 9vw, 122px));
  padding-bottom: clamp(72px, 8vw, 108px);
}

.inner-page .section,
.inner-page .section--tint,
.inner-page .section--night,
.inner-page .contact-section {
  padding-block: clamp(64px, 7vw, 104px);
}

.inner-page .section-head {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.inner-page .detail-card {
  padding: clamp(28px, 3.6vw, 50px);
}

.inner-page--contact .contact-section {
  min-height: auto;
  padding-top: calc(var(--nav-height) + clamp(72px, 8vw, 108px));
  padding-bottom: clamp(72px, 8vw, 108px);
}

@media (max-width: 900px) {
  .home-manifesto,
  .service-journey,
  .proof-horizon,
  .home-delivery {
    padding-block: 82px;
  }

  .service-track__intro {
    min-height: 0;
    padding-bottom: 54px;
  }

  .service-panel {
    min-height: 500px;
  }

  .service-track__outro {
    min-height: 360px;
  }

  .process-story {
    min-height: 260svh;
  }

  .home-inquiry {
    min-height: 82svh;
  }

  .inner-page .page-hero {
    min-height: 650px;
  }
}

@media (max-width: 720px) {
  .home-manifesto,
  .service-journey,
  .proof-horizon,
  .home-delivery {
    padding-block: 68px;
  }

  .home-manifesto__title {
    margin-top: 44px;
  }

  .home-manifesto__principles {
    margin-top: 48px;
  }

  .home-manifesto__principles article {
    min-height: 0;
    padding: 26px 20px 30px;
  }

  .home-manifesto__principles h3 {
    margin-top: 30px;
  }

  .service-panel {
    min-height: 460px;
  }

  .service-panel__visual {
    min-height: 150px;
  }

  .service-track__outro {
    min-height: 320px;
  }

  .process-story {
    min-height: 240svh;
  }

  .process-story__sticky {
    padding-top: 96px;
  }

  .home-inquiry {
    min-height: auto;
    padding-block: 92px;
  }

  .inner-page .page-hero {
    min-height: 590px;
    padding-top: 142px;
    padding-bottom: 68px;
  }

  .inner-page .section,
  .inner-page .section--tint,
  .inner-page .section--night,
  .inner-page .contact-section {
    padding-block: 56px;
  }

  .inner-page .section-head {
    margin-bottom: 40px;
  }

  .inner-page--contact .contact-section {
    padding-top: 124px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-story {
    min-height: auto;
  }
}

/* Precision pass: shared CTA component, form grid, and section boundaries. */
.inner-page .section--cta {
  padding-block: clamp(40px, 4.5vw, 64px);
}

.inner-page .cta-band {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  overflow: hidden;
  padding: clamp(38px, 4.5vw, 64px);
  border: 1px solid rgba(238, 235, 229, 0.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 92, 168, 0.13), transparent 20rem),
    linear-gradient(128deg, rgba(4, 116, 242, 0.12), rgba(141, 98, 255, 0.1) 62%, rgba(255, 92, 168, 0.08)),
    rgba(13, 16, 53, 0.54);
}

.inner-page .cta-band::before {
  inset: auto -8% -70% auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 116, 242, 0.38), rgba(141, 98, 255, 0.3), rgba(255, 92, 168, 0.24));
  filter: blur(54px);
  opacity: 0.64;
  animation: none;
}

.inner-page .cta-band > div {
  max-width: 850px;
}

.inner-page .cta-band .section-eyebrow {
  margin-bottom: 18px;
}

.inner-page .cta-band h2 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(2.5rem, 3.7vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.inner-page .cta-band p {
  max-width: 58ch;
  margin-top: 18px;
  color: rgba(238, 235, 229, 0.66);
  font-size: 1rem;
  line-height: 1.55;
}

.inner-page .cta-band .btn,
.service-track__outro .btn {
  min-width: 210px;
  min-height: 62px;
  padding-inline: 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  white-space: nowrap;
}

.service-track__outro {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto auto;
  align-items: start;
  gap: 12px clamp(44px, 6vw, 96px);
  margin-top: 0;
  padding: clamp(34px, 4vw, 56px);
  border-color: rgba(238, 235, 229, 0.15);
  background:
    radial-gradient(circle at 90% 20%, rgba(99, 226, 229, 0.1), transparent 20rem),
    linear-gradient(128deg, rgba(4, 116, 242, 0.11), rgba(141, 98, 255, 0.08)),
    rgba(13, 16, 53, 0.48);
}

.service-track__outro .home-kicker,
.service-track__outro h3,
.service-track__outro p,
.service-track__outro-links {
  grid-column: 1;
}

.service-track__outro .home-kicker { grid-row: 1; }

.service-track__outro h3 {
  grid-row: 2;
  max-width: 18ch;
  margin-top: 6px;
  font-size: clamp(2.45rem, 3.8vw, 4.65rem);
}

.service-track__outro p {
  grid-row: 3;
  max-width: 54ch;
  margin-top: 6px;
}

.service-track__outro .btn {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
  justify-self: end;
  margin-top: 0;
  background: #fff;
  color: #030509;
}

.service-track__outro-links {
  grid-row: 4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: clamp(14px, 2vw, 26px);
  padding-top: 18px;
  border-top: 1px solid rgba(238, 235, 229, 0.14);
}

.service-track__outro-links .home-text-link {
  margin: 0;
  color: rgba(238, 235, 229, 0.78);
  font-size: 0.98rem;
  line-height: 1.2;
}

/* Explicit section boundaries prevent adjacent padding from compounding. */
.home-manifesto {
  padding-top: 80px;
  padding-bottom: 72px;
}

.service-journey {
  padding-top: 72px;
  padding-bottom: 56px;
}

.proof-horizon {
  padding-top: 64px;
  padding-bottom: 88px;
}

.home-delivery {
  padding-block: 76px;
}

.home-inquiry {
  padding-block: 88px;
}

/* Contact form: equal columns, equal controls, and one consistent gap scale. */
.inner-page--contact .contact-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(28px, 3.5vw, 52px);
}

.inner-page--contact .contact-panel {
  position: relative;
  top: auto;
  padding: clamp(36px, 4vw, 52px);
}

.inner-page--contact .contact-panel .page-hero__title {
  margin-top: 24px;
  font-size: clamp(3.2rem, 4.8vw, 5.25rem);
  line-height: 0.9;
}

.inner-page--contact .contact-list {
  margin-top: 28px;
}

.inner-page--contact .contact-link {
  min-height: 54px;
}

.inner-page--contact .contact-form {
  display: grid;
  gap: 24px;
  padding: clamp(36px, 4vw, 52px);
}

.inner-page--contact .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.inner-page--contact .field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  margin-bottom: 0;
}

.inner-page--contact .field label {
  min-height: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #fff;
  line-height: 1.25;
}

.inner-page--contact .field input,
.inner-page--contact .field select {
  width: 100%;
  height: 56px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(238, 235, 229, 0.18);
  border-radius: 10px;
  line-height: 1.2;
}

.inner-page--contact .field textarea {
  width: 100%;
  height: 176px;
  min-height: 176px;
  padding: 15px 16px;
  border: 1px solid rgba(238, 235, 229, 0.18);
  border-radius: 10px;
  line-height: 1.5;
}

.inner-page--contact .field__error {
  min-height: 0;
  margin: 0;
  line-height: 1.35;
}

.inner-page--contact .field__error:empty,
.inner-page--contact .contact-form__status:empty {
  display: none;
}

.inner-page--contact .contact-form__status {
  min-height: 0;
  margin-top: 0;
}

.inner-page--contact .contact-form .btn--primary {
  min-width: 190px;
  min-height: 58px;
  justify-self: start;
  padding-inline: 28px;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .inner-page .cta-band,
  .service-track__outro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-track__outro .home-kicker,
  .service-track__outro h3,
  .service-track__outro p,
  .service-track__outro .btn,
  .service-track__outro-links {
    grid-column: 1;
    grid-row: auto;
  }

  .inner-page .cta-band .btn,
  .service-track__outro .btn {
    justify-self: start;
  }

  .inner-page--contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .inner-page .section--cta {
    padding-block: 40px;
  }

  .inner-page .cta-band,
  .service-track__outro {
    gap: 24px;
    padding: 30px 24px;
    border-radius: 18px;
  }

  .inner-page .cta-band h2,
  .service-track__outro h3 {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
  }

  .inner-page .cta-band .btn,
  .service-track__outro .btn {
    width: 100%;
    min-width: 0;
  }

  .home-manifesto {
    padding-block: 60px;
  }

  .service-journey {
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .proof-horizon {
    padding-top: 52px;
    padding-bottom: 68px;
  }

  .home-delivery,
  .home-inquiry {
    padding-block: 68px;
  }

  .inner-page--contact .contact-panel,
  .inner-page--contact .contact-form {
    padding: 28px 22px;
  }

  .inner-page--contact .field-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .inner-page--contact .contact-form {
    gap: 20px;
  }

  .inner-page--contact .contact-form .btn--primary {
    width: 100%;
    justify-self: stretch;
  }
}
