:root {
  --bg: #090909;
  --bg-soft: #111111;
  --surface: rgba(20, 20, 20, 0.72);
  --surface-strong: rgba(23, 23, 23, 0.94);
  --surface-border: rgba(255, 248, 236, 0.08);
  --text: #f4ecdf;
  --text-soft: rgba(244, 236, 223, 0.68);
  --text-dim: rgba(244, 236, 223, 0.42);
  --accent: #b89a66;
  --accent-soft: rgba(184, 154, 102, 0.18);
  --shadow: 0 40px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 2.25rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shell: min(1280px, calc(100vw - 48px));
  --header-height: 96px;
  --font-body: "American Typewriter", "Courier Prime", "Courier New", monospace;
  --font-display: "American Typewriter", "Courier Prime", "Courier New", monospace;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 18%, rgba(184, 154, 102, 0.1), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(126, 142, 175, 0.12), transparent 28%),
    radial-gradient(circle at 50% 120%, rgba(92, 120, 113, 0.12), transparent 36%),
    var(--bg);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  z-index: 2;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-kicker {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-note {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.25rem 0;
  transition:
    padding 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding: 0.8rem 0;
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}

.brand-mark {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-word.muted {
  color: var(--text-dim);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.site-nav > a:not(.header-cta) {
  position: relative;
  color: var(--text-soft);
  font-size: 0.93rem;
  transition: color 0.25s ease;
}

.site-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 236, 223, 0.92), transparent);
  transform: scaleX(0.2);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-nav > a:not(.header-cta):hover,
.site-nav > a:not(.header-cta).is-current {
  color: var(--text);
}

.site-nav > a:not(.header-cta):hover::after,
.site-nav > a:not(.header-cta).is-current::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  justify-self: end;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 248, 236, 0.03);
}

.primary-button,
.header-cta {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 236, 223, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.06), rgba(255, 248, 236, 0.015)),
    rgba(10, 10, 10, 0.56);
  color: var(--text);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.primary-button::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 248, 236, 0.16), transparent 78%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.primary-button:hover,
.header-cta:hover {
  transform: translate3d(0, -3px, 0);
  border-color: rgba(244, 236, 223, 0.22);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.primary-button:hover::before,
.header-cta:hover::before {
  transform: translateX(120%);
}

.primary-button span,
.header-cta span {
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 0 0 2rem;
  display: flex;
  align-items: stretch;
  overflow: clip;
  background: #050505;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.78) contrast(1.05) brightness(0.62);
  transform: scale(1.05);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.3) 18%, rgba(5, 5, 5, 0.56) 56%, rgba(5, 5, 5, 0.94) 100%),
    radial-gradient(circle at 18% 28%, rgba(205, 184, 145, 0.14), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(115, 131, 169, 0.14), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.26) 52%, rgba(5, 5, 5, 0.82) 100%);
  z-index: 1;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.06), transparent 18%, transparent 82%, rgba(255, 248, 236, 0.06)),
    linear-gradient(180deg, rgba(255, 248, 236, 0.04), transparent 18%, transparent 72%, rgba(255, 248, 236, 0.06)),
    radial-gradient(circle at 50% 100%, rgba(184, 154, 102, 0.14), transparent 36%);
  mix-blend-mode: screen;
  opacity: 0.42;
  z-index: 2;
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: calc(var(--header-height) + 1rem) clamp(1rem, 4vw, 3rem) 1.5rem;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--header-height) - 2.5rem);
  padding: 0 0 clamp(3rem, 7vw, 5.5rem);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.2) 22%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at 20% 72%, rgba(184, 154, 102, 0.16), transparent 24%);
  z-index: 0;
}

.hero-stage::after {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  justify-items: start;
  margin: 0 0 clamp(2.25rem, 7vh, 5.5rem);
  max-width: min(48rem, 62vw);
  padding: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.hero-title {
  margin: 0;
  display: grid;
  gap: 0.25rem;
  max-width: 9.5ch;
  font-weight: 400;
  justify-items: start;
  text-wrap: balance;
  will-change: transform;
}

.hero-title-line {
  display: block;
  width: auto;
  max-width: 100%;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  font-weight: 400;
  line-height: 0.94;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.hero-title-line-strong {
  margin-left: 0;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.88;
  color: var(--text);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.hero-title-typed {
  display: inline-block;
  min-width: 10.4ch;
  white-space: nowrap;
}

.hero-title-typed.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.12em;
  vertical-align: baseline;
  background: currentColor;
  box-shadow: 0 0 18px rgba(244, 236, 223, 0.38);
  animation: heroCaretBlink 0.8s steps(1, end) infinite;
}

.hero-title-line-tail {
  margin-left: 0;
  margin-top: 0.35rem;
  font-size: clamp(1.95rem, 3.8vw, 3.3rem);
  line-height: 0.92;
  color: rgba(244, 236, 223, 0.88);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.hero-copy .primary-button {
  width: fit-content;
  margin-left: 0;
  justify-self: start;
}

.hero-stage .primary-button {
  z-index: 2;
}

.hero-title-line-strong::after {
  content: "";
  position: absolute;
  inset: auto -6% -12% 0;
  height: 22%;
  background: linear-gradient(90deg, rgba(184, 154, 102, 0), rgba(184, 154, 102, 0.18), rgba(184, 154, 102, 0));
  filter: blur(20px);
  z-index: -1;
}

.hero-title-line {
  transition: transform 0.35s ease;
}

.hero-title-line-strong,
.hero-title-line-tail {
  position: relative;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  justify-self: flex-start;
  align-self: flex-start;
  margin-left: 0;
  color: var(--text-dim);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 236, 223, 0.7), transparent);
  animation: cuePulse 1.9s ease-in-out infinite;
}

.capabilities-section {
  position: relative;
  padding: 5rem 0 0;
}

.capabilities-scroll {
  position: relative;
  height: 260vh;
}

.capabilities-sticky {
  position: sticky;
  top: calc(var(--header-height) - 12px);
  height: calc(100svh - var(--header-height) + 12px);
  display: flex;
  align-items: center;
}

.capabilities-frame {
  position: relative;
}

.capabilities-panels {
  display: flex;
  gap: 1rem;
  min-height: 74svh;
}

.capability-panel {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 248, 236, 0.09);
  background: rgba(18, 18, 18, 0.7);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.04);
  transition:
    flex 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.45s ease,
    filter 0.45s ease;
  filter: saturate(0.88) brightness(0.9);
}

.capability-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.78));
  z-index: 1;
}

.capability-panel.is-active {
  flex: 1.9 1 0;
  transform: translateY(-10px);
  border-color: rgba(255, 248, 236, 0.16);
  filter: none;
}

.capability-media,
.capability-overlay {
  position: absolute;
  inset: 0;
}

.capability-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: grayscale(0.08) brightness(0.96) contrast(1.05) saturate(1.02);
}

.capability-media-branding {
  background-image:
    linear-gradient(135deg, rgba(184, 154, 102, 0.3), transparent 55%),
    url("./branding-positioning.jpg");
  background-position: center 42%;
}

.capability-media-marketing {
  background-image:
    linear-gradient(135deg, rgba(118, 126, 170, 0.32), transparent 55%),
    url("./marketing-signage.jpg");
  background-position: center 52%;
}

.capability-media-gtm {
  background-image:
    linear-gradient(135deg, rgba(83, 118, 109, 0.34), transparent 55%),
    url("./go-to-market-entrance.jpg");
  background-position: center 34%;
}

.capability-overlay {
  background:
    radial-gradient(circle at 50% 18%, var(--panel-glow), transparent 38%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.58));
}

.capability-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 1.2rem;
  width: 100%;
}

.capability-index {
  color: rgba(244, 236, 223, 0.6);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.capability-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
}

.keyword-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyword-list li {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.keyword-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shape-section,
.deliverables-section,
.perspective-section,
.contact-section {
  padding: 8rem 0;
}

.shape-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.shape-card {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(18, 18, 18, 0.72);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.shape-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 248, 236, 0.15);
  box-shadow: var(--shadow);
}

.shape-card.tall {
  grid-row: span 2;
  min-height: 580px;
}

.shape-card.wide {
  grid-column: span 8;
}

.shape-media,
.shape-abstract {
  position: absolute;
  inset: 0;
}

.shape-media img {
  filter: saturate(0.78) brightness(0.76);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}

.shape-card:hover .shape-media img {
  transform: scale(1.06);
  filter: saturate(0.88) brightness(0.84);
}

.shape-abstract {
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 154, 102, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.015)),
    rgba(15, 15, 15, 0.9);
}

.shape-abstract.abstract-amber {
  background:
    radial-gradient(circle at 70% 22%, rgba(184, 154, 102, 0.3), transparent 28%),
    linear-gradient(140deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.01)),
    rgba(13, 13, 13, 0.92);
}

.shape-abstract.abstract-slate {
  background:
    radial-gradient(circle at 28% 72%, rgba(108, 132, 165, 0.26), transparent 32%),
    linear-gradient(140deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.01)),
    rgba(13, 13, 13, 0.92);
}

.shape-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0), rgba(11, 11, 11, 0.75)),
    linear-gradient(145deg, rgba(184, 154, 102, 0.08), transparent 45%);
}

.shape-copy {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
}

.shape-copy h3,
.deliverable-card h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 500;
}

.shape-copy p {
  margin: 0;
  color: var(--text-soft);
  max-width: 18rem;
  font-size: 0.94rem;
}

.process-section {
  padding: 8rem 0;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  gap: 4rem;
  align-items: start;
}

.process-summary {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.process-progress-track {
  position: relative;
  width: 1px;
  height: 180px;
  margin: 1.6rem 0;
  background: rgba(244, 236, 223, 0.12);
}

.process-progress-fill {
  position: absolute;
  inset: 0 0 auto 0;
  height: 25%;
  background: linear-gradient(180deg, rgba(184, 154, 102, 0.9), rgba(184, 154, 102, 0.1));
  transition: height 0.45s ease;
}

.process-summary-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 248, 236, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(255, 248, 236, 0.012)),
    rgba(16, 16, 16, 0.9);
  box-shadow: var(--shadow);
}

.process-summary-index {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
}

.process-summary-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.process-summary-card p {
  margin: 0.9rem 0 1.5rem;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  --process-accent: rgba(184, 154, 102, 0.9);
  --process-accent-soft: rgba(184, 154, 102, 0.16);
  min-height: 72vh;
  position: relative;
  padding: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 248, 236, 0.06);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.03), rgba(255, 248, 236, 0.01)),
    rgba(15, 15, 15, 0.68);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -10%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--process-accent-soft), transparent 68%);
  filter: blur(40px);
  opacity: 0.82;
  pointer-events: none;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.04), rgba(15, 15, 15, 0.18));
  pointer-events: none;
}

.process-step.is-active {
  transform: translateX(-10px);
  border-color: rgba(255, 248, 236, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(255, 248, 236, 0.01)),
    rgba(18, 18, 18, 0.82);
}

.process-step-define {
  --process-accent: rgba(184, 154, 102, 0.92);
  --process-accent-soft: rgba(184, 154, 102, 0.18);
}

.process-step-design {
  --process-accent: rgba(112, 135, 174, 0.92);
  --process-accent-soft: rgba(112, 135, 174, 0.18);
}

.process-step-launch {
  --process-accent: rgba(173, 126, 98, 0.92);
  --process-accent-soft: rgba(173, 126, 98, 0.17);
}

.process-step-grow {
  --process-accent: rgba(96, 142, 128, 0.92);
  --process-accent-soft: rgba(96, 142, 128, 0.18);
}

.process-step-frame {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr) auto;
  gap: 1.25rem;
  padding: 1.5rem;
}

.process-step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.process-step-stage {
  color: var(--text-dim);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-step-chip {
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 236, 0.08);
  color: rgba(244, 236, 223, 0.82);
  background: rgba(255, 248, 236, 0.03);
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step-visual {
  position: relative;
  min-height: 260px;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 248, 236, 0.08), transparent 18%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.012)),
    rgba(255, 248, 236, 0.015);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-step.is-active .process-step-visual {
  transform: translateY(-4px);
  border-color: rgba(255, 248, 236, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.04);
}

.process-diagram {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--process-accent);
}

.process-diagram .diagram-panel {
  fill: rgba(255, 248, 236, 0.03);
  stroke: rgba(255, 248, 236, 0.09);
  stroke-width: 2;
}

.process-diagram .diagram-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.process-diagram .diagram-line-soft {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.4;
}

.process-diagram .diagram-fill {
  fill: currentColor;
  opacity: 0.1;
}

.process-diagram .diagram-fill-strong {
  fill: currentColor;
  opacity: 0.22;
}

.process-diagram .diagram-solid {
  fill: currentColor;
  opacity: 0.92;
}

.process-step-body {
  display: grid;
  gap: 1.15rem;
}

.process-step-copyblock {
  display: grid;
  gap: 0.45rem;
}

.process-step-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  line-height: 0.92;
}

.process-step-copy {
  margin: 0;
  max-width: 24rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.process-step-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step-details li {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 248, 236, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.035), rgba(255, 248, 236, 0.012)),
    rgba(255, 248, 236, 0.016);
  color: rgba(244, 236, 223, 0.82);
  font-size: 0.9rem;
  line-height: 1.25;
}

.deliverables-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
}

.deliverables-rail::-webkit-scrollbar {
  height: 8px;
}

.deliverables-rail::-webkit-scrollbar-thumb {
  background: rgba(244, 236, 223, 0.14);
  border-radius: 999px;
}

.deliverable-card {
  position: relative;
  min-height: 252px;
  padding: 1.4rem;
  display: grid;
  align-content: space-between;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 248, 236, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 154, 102, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.01)),
    rgba(15, 15, 15, 0.86);
  scroll-snap-align: start;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  --visual-accent: rgba(184, 154, 102, 0.92);
}

.deliverable-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 72% 18%, rgba(108, 132, 165, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.01)),
    rgba(15, 15, 15, 0.86);
}

.deliverable-card:nth-child(3n) {
  background:
    radial-gradient(circle at 50% 82%, rgba(87, 126, 117, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.01)),
    rgba(15, 15, 15, 0.86);
}

.deliverable-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 248, 236, 0.16);
  box-shadow: var(--shadow);
}

.deliverable-card-strategy,
.deliverable-card-campaigns,
.deliverable-card-rollout {
  --visual-accent: rgba(184, 154, 102, 0.92);
}

.deliverable-card-positioning,
.deliverable-card-website,
.deliverable-card-roadmap {
  --visual-accent: rgba(116, 135, 173, 0.92);
}

.deliverable-card-identity,
.deliverable-card-messaging,
.deliverable-card-content,
.deliverable-card-gtm {
  --visual-accent: rgba(102, 136, 127, 0.92);
}

.deliverable-visual {
  display: block;
  width: 100%;
  height: 7.9rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 248, 236, 0.08), transparent 18%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.04), rgba(255, 248, 236, 0.012)),
    rgba(255, 248, 236, 0.015);
  color: var(--visual-accent);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.deliverable-card:hover .deliverable-visual {
  transform: translateY(-3px);
  border-color: rgba(255, 248, 236, 0.12);
}

.deliverable-visual .panel {
  fill: rgba(255, 248, 236, 0.035);
  stroke: rgba(255, 248, 236, 0.09);
  stroke-width: 1.25;
}

.deliverable-visual .stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
}

.deliverable-visual .stroke-soft {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.44;
}

.deliverable-visual .fill {
  fill: currentColor;
  opacity: 0.14;
}

.deliverable-visual .fill-strong {
  fill: currentColor;
  opacity: 0.26;
}

.deliverable-visual .solid {
  fill: currentColor;
  opacity: 0.92;
}

.perspective-section {
  position: relative;
  overflow: hidden;
}

.perspective-section::before {
  content: "";
  position: absolute;
  inset: 12% -10%;
  background:
    radial-gradient(circle at 22% 40%, rgba(184, 154, 102, 0.16), transparent 22%),
    radial-gradient(circle at 72% 60%, rgba(104, 125, 162, 0.12), transparent 24%);
  filter: blur(40px);
  opacity: 0.7;
}

.perspective-shell {
  position: relative;
}

.perspective-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: end;
  min-height: 68vh;
}

.perspective-title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.perspective-rotator {
  position: relative;
  min-height: 7rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.manifest-line {
  position: absolute;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.manifest-line.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  margin: 1rem 0 0;
  max-width: 8ch;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.contact-form {
  padding: 2rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(255, 248, 236, 0.015)),
    rgba(14, 14, 14, 0.88);
  box-shadow: var(--shadow);
}

.form-success {
  padding: 2rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 154, 102, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.05), rgba(255, 248, 236, 0.015)),
    rgba(14, 14, 14, 0.88);
  box-shadow: var(--shadow);
}

.form-success-kicker {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.94;
}

.form-success-copy {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

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

.field {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 248, 236, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 248, 236, 0.02);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.field:hover,
.field:focus-within {
  border-color: rgba(184, 154, 102, 0.34);
  background: rgba(255, 248, 236, 0.04);
  transform: translateY(-2px);
}

.field span,
.field-label {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  appearance: none;
  resize: vertical;
}

.field select {
  padding-right: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f4ecdf' fill-opacity='0.72' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 8px;
}

.field option {
  color: #111111;
}

.field-wide {
  grid-column: span 2;
}

.service-picker {
  margin-top: 1.25rem;
}

.service-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.service-chip {
  min-height: 2.8rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 236, 0.08);
  color: var(--text-soft);
  background: rgba(255, 248, 236, 0.03);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.service-chip:hover,
.service-chip.is-active {
  color: var(--text);
  border-color: rgba(255, 248, 236, 0.16);
  background: rgba(255, 248, 236, 0.06);
  transform: translateY(-2px);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.form-note {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.88rem;
  max-width: 20rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 248, 236, 0.08);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@keyframes heroSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroRailPulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroSheen {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.35;
  }

  50% {
    transform: translateX(12%);
    opacity: 0.68;
  }
}

@keyframes cuePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
}

@keyframes heroCaretBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100vw - 32px, 1200px);
  }

  .hero-stage {
    min-height: calc(100svh - var(--header-height) - 2rem);
    padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
  }

  .hero-copy {
    max-width: min(40rem, 72vw);
    margin-bottom: clamp(2rem, 6vh, 4rem);
  }

  .hero-title-line-strong {
    font-size: clamp(3.8rem, 8.8vw, 6.6rem);
  }

  .hero-title-typed {
    min-width: 10ch;
  }

  .hero-title-line-tail {
    margin-top: 0.35rem;
    font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  }

  .capabilities-panels {
    min-height: 68svh;
  }

  .process-layout,
  .contact-layout,
  .perspective-grid {
    grid-template-columns: 1fr;
  }

  .process-summary {
    position: relative;
    top: auto;
  }

  .process-progress-track {
    height: 120px;
  }

  .process-step {
    min-height: 56vh;
  }

  .process-step-frame {
    grid-template-rows: auto minmax(220px, 1fr) auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 1rem 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

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

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 248, 236, 0.08);
    border-radius: 1.5rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(18px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a:not(.header-cta) {
    padding: 0.45rem 0;
  }

  .site-nav .header-cta {
    margin-top: 0.25rem;
  }

  .hero-shell {
    padding-inline: 1.4rem;
  }

  .hero-stage {
    min-height: calc(100svh - var(--header-height) - 2rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-copy {
    gap: 1.1rem;
    max-width: min(28rem, 100%);
    margin-bottom: clamp(1.5rem, 4vh, 2.75rem);
    padding: 0;
  }

  .hero-title-line {
    font-size: clamp(1.6rem, 4.8vw, 2.4rem);
  }

  .hero-title-line-strong {
    font-size: clamp(3.5rem, 11vw, 5.8rem);
  }

  .hero-title-typed {
    min-width: 9.8ch;
  }

  .hero-title-line-tail {
    margin-top: 0.2rem;
    font-size: clamp(1.45rem, 4.1vw, 2.3rem);
  }

  .scroll-cue {
    margin-left: 0;
  }

  .capabilities-scroll {
    height: auto;
  }

  .capabilities-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding-bottom: 0;
  }

  .capabilities-panels {
    flex-direction: column;
    min-height: 0;
  }

  .capability-panel,
  .capability-panel.is-active {
    min-height: 360px;
    transform: none;
    flex: auto;
  }

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

  .shape-card,
  .shape-card.wide,
  .shape-card.tall {
    grid-column: span 1;
    min-height: 260px;
  }

  .process-step-frame {
    gap: 1rem;
    grid-template-rows: auto minmax(200px, 1fr) auto;
    padding: 1.25rem;
  }

  .process-step-visual {
    min-height: 200px;
  }

  .process-step-title {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
  }

  .process-step-copy {
    font-size: 0.98rem;
  }

  .process-step-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field-wide {
    grid-column: span 1;
  }

  .form-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 86px;
    --shell: calc(100vw - 24px);
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-shell {
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-inline: 1rem;
    padding-bottom: 1.1rem;
  }

  .hero-stage {
    min-height: calc(100svh - var(--header-height) - 1.85rem);
    padding-bottom: 2.2rem;
  }

  .perspective-title,
  .contact-copy h2,
  .process-summary-card h2 {
    text-wrap: balance;
  }

  .scroll-cue {
    margin-left: 0;
  }

  .hero-copy {
    gap: 0.95rem;
    max-width: min(22rem, 100%);
    margin-bottom: 1.25rem;
    padding: 0;
  }

  .hero-title-line {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-title-line-strong {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .hero-title-typed {
    min-width: 9.5ch;
  }

  .hero-title-line-tail {
    margin-top: 0.1rem;
    font-size: clamp(1.3rem, 6.6vw, 1.9rem);
  }

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

  .shape-card,
  .shape-card.wide,
  .shape-card.tall {
    grid-column: span 1;
    min-height: 280px;
  }

  .keyword-list,
  .keyword-list.compact {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 46vh;
  }

  .process-step-frame {
    gap: 0.9rem;
    grid-template-rows: auto minmax(170px, 1fr) auto;
    padding: 1rem;
  }

  .process-step-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-step-chip {
    min-height: 1.8rem;
    padding: 0 0.7rem;
    font-size: 0.74rem;
  }

  .process-step-visual {
    min-height: 170px;
    border-radius: 1.25rem;
  }

  .process-step-copy {
    font-size: 0.92rem;
  }

  .process-step-details {
    grid-template-columns: 1fr;
  }

  .process-step-details li {
    min-height: 56px;
    font-size: 0.84rem;
  }

  .deliverables-rail {
    grid-auto-columns: minmax(230px, 82vw);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
