:root {
  --black: #05070a;
  --panel: #091015;
  --panel-2: #0d151a;
  --line: rgba(234, 242, 244, 0.11);
  --text: #eaf2f4;
  --muted: #9badb0;
  --teal: #00f5c8;
  --cyan: #00a8ff;
  --copper: #ffb27a;
  --radius: 8px;
  --hairline: rgba(234, 242, 244, 0.13);
}

* {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 245, 200, 0.09), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(255, 178, 122, 0.045), transparent 25rem),
    linear-gradient(180deg, #010203 0%, var(--black) 48%, #030505 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(234, 242, 244, 0.28) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

img {
  max-width: 100%;
}

section {
  scroll-margin-top: 118px;
}

.site-shell {
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  margin: 16px 0 18px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(0, 245, 200, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 9% 48%, rgba(0, 245, 200, 0.13), transparent 18rem),
    linear-gradient(90deg, rgba(0, 245, 200, 0.035), transparent 34%),
    rgba(1, 3, 4, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(234, 242, 244, 0.045);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  width: 318px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-dark-logo {
  width: 210px;
  height: 76px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    radial-gradient(circle at 26% 52%, rgba(0, 245, 200, 0.09), transparent 62%),
    linear-gradient(90deg, rgba(1, 3, 4, 0.42), rgba(1, 3, 4, 0.08) 72%, transparent);
  box-shadow: none;
  overflow: hidden;
}

.brand-dark-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: saturate(1.05) contrast(1.02) drop-shadow(0 0 18px rgba(0, 245, 200, 0.1));
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-links a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active {
  text-shadow: 0 0 18px rgba(0, 245, 200, 0.28);
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  min-height: 42px;
  padding: 0 9px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 200, 0.34);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(0, 245, 200, 0.14), rgba(255, 178, 122, 0.035)),
    rgba(5, 12, 13, 0.5);
  box-shadow: inset 0 1px 0 rgba(234, 242, 244, 0.07);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 45%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.nav-cta span,
.nav-cta i {
  position: relative;
  z-index: 1;
}

.nav-cta span {
  white-space: nowrap;
}

.nav-cta i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #001711;
  background: linear-gradient(135deg, var(--teal), #72ffd8);
  font-style: normal;
  line-height: 1;
  box-shadow: 0 0 20px rgba(0, 245, 200, 0.2);
}

.nav-cta:hover,
.nav-cta.active {
  transform: translateY(-1px);
  border-color: rgba(0, 245, 200, 0.74);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(0, 245, 200, 0.2), rgba(255, 178, 122, 0.065)),
    rgba(5, 12, 13, 0.68);
  box-shadow: 0 0 26px rgba(0, 245, 200, 0.13), inset 0 1px 0 rgba(234, 242, 244, 0.08);
}

.nav-cta:hover::before {
  transform: translateX(120%);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(234, 242, 244, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(234, 242, 244, 0.035);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

body.menu-open .nav-toggle span {
  transform: rotate(45deg);
}

body.menu-open .nav-toggle span::before {
  transform: translateY(6px) rotate(90deg);
}

body.menu-open .nav-toggle span::after {
  opacity: 0;
}

.hero,
.page-hero,
.intro-band,
.section-block,
.split-section,
.home-studio,
.home-audience,
.home-process,
.process-strip,
.cta-band,
.service-list,
.matrix-section,
.target-grid,
.fit-section,
.timeline,
.about-panel,
.contact-layout,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 10, 13, 0.78);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(420px, 0.95fr);
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - 154px);
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(0, 245, 200, 0.1) 46%, transparent 58%),
    radial-gradient(circle at 76% 72%, rgba(0, 245, 200, 0.12), transparent 18rem);
  background-size: 180% 100%, 100% 100%;
  animation: heroScan 12s ease-in-out infinite;
}

.hero-visual,
.hero-visual::after,
.hero-visual img {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  filter: brightness(1.16) contrast(0.96) saturate(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-visual::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0) 0%, rgba(5, 7, 10, 0.18) 40%, rgba(5, 7, 10, 0.78) 70%, rgba(5, 7, 10, 0.66) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, 0.24), rgba(5, 7, 10, 0.04) 52%, rgba(5, 7, 10, 0.28));
}

.hero-copy,
.hero-metrics {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.hero-copy {
  align-self: center;
  max-width: 640px;
  min-width: 0;
  animation: riseIn 800ms ease both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: "Afacad", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

p {
  color: #c6d3d5;
  line-height: 1.65;
}

.hero-lede,
.page-hero p {
  max-width: 680px;
  color: #d5e0e2;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proofline span {
  padding: 8px 11px;
  border: 1px solid rgba(234, 242, 244, 0.12);
  border-radius: 999px;
  color: #d9e5e7;
  background: rgba(5, 7, 10, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  animation: fadeLift 700ms ease both;
}

.hero-proofline span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-proofline span:nth-child(3) {
  animation-delay: 180ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #001711;
  background: linear-gradient(135deg, var(--teal), #72ffd8);
  box-shadow: 0 0 32px rgba(0, 245, 200, 0.24);
}

.button.primary:hover {
  box-shadow: 0 0 44px rgba(0, 245, 200, 0.36);
}

.button.ghost {
  border: 1px solid rgba(255, 178, 122, 0.52);
  color: #ffd6bd;
  background: rgba(255, 178, 122, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 22px);
  align-self: end;
  max-width: 680px;
}

.hero-metrics div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 4px 0;
  animation: fadeLift 720ms ease both;
}

.hero-metrics div:nth-child(1) {
  animation-delay: 220ms;
}

.hero-metrics div:nth-child(2) {
  animation-delay: 320ms;
}

.hero-metrics div:nth-child(3) {
  animation-delay: 420ms;
}

.hero-metrics div:nth-child(4) {
  animation-delay: 520ms;
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: -1;
  width: min(8vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 245, 200, 0.42), transparent);
  transform: translateY(-50%);
  transform-origin: left center;
  animation: lineBreathe 3.8s ease-in-out infinite;
}

.hero-metrics div::after {
  display: none;
}

.metric-favicon {
  position: relative;
  display: grid;
  grid-row: 1 / 3;
  grid-column: 1;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(0, 245, 200, 0.42);
  border-radius: 50%;
  color: var(--teal);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 200, 0.18), transparent 64%),
    rgba(5, 12, 13, 0.58);
  box-shadow: 0 0 24px rgba(0, 245, 200, 0.16), inset 0 0 18px rgba(0, 245, 200, 0.08);
  animation: iconFloat 4.8s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-metrics div:nth-child(2) .metric-favicon {
  animation-delay: 400ms;
}

.hero-metrics div:nth-child(3) .metric-favicon {
  animation-delay: 800ms;
}

.hero-metrics div:nth-child(4) .metric-favicon {
  animation-delay: 1200ms;
}

.hero-metrics div:hover .metric-favicon {
  border-color: rgba(255, 178, 122, 0.62);
  box-shadow: 0 0 30px rgba(0, 245, 200, 0.28), 0 0 18px rgba(255, 178, 122, 0.18), inset 0 0 18px rgba(0, 245, 200, 0.1);
  transform: translateY(-2px) scale(1.04);
}

.metric-favicon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-metrics strong {
  display: block;
  grid-column: 2;
  color: var(--teal);
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.18rem, 1.32vw, 1.48rem);
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero-metrics div > span:not(.metric-favicon) {
  display: block;
  grid-column: 2;
  max-width: 100%;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: normal;
}

.intro-band,
.section-block,
.split-section,
.cta-band,
.matrix-section,
.fit-section,
.about-panel,
.contact-layout {
  margin: 18px 0;
  padding: clamp(30px, 5vw, 72px);
}

.intro-band p,
.about-panel p {
  max-width: 980px;
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1.12;
  color: var(--text);
}

.premium-intro {
  display: block;
  background:
    linear-gradient(120deg, rgba(234, 242, 244, 0.04), rgba(234, 242, 244, 0.008)),
    rgba(7, 10, 13, 0.74);
}

.premium-intro p {
  margin: 0;
}

.signature-rule {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(0, 245, 200, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 245, 200, 0.12), transparent 6rem),
    linear-gradient(180deg, rgba(234, 242, 244, 0.035), rgba(234, 242, 244, 0.008));
  overflow: hidden;
}

.signature-rule::before,
.signature-rule::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(0, 245, 200, 0.12);
  border-radius: 50%;
}

.signature-rule::before {
  inset: 34px 74px;
  opacity: 0.75;
  animation: orbitGlow 8s ease-in-out infinite;
}

.signature-rule::after {
  inset: 58px 110px;
  border-color: rgba(255, 178, 122, 0.16);
  opacity: 0.8;
  animation: orbitGlow 8s ease-in-out infinite reverse;
}

.signature-rule .signal-line {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 200, 0.72), transparent);
  animation: lineBreathe 4s ease-in-out infinite;
}

.signature-rule i {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 178, 122, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--teal) 0 18%, transparent 20%),
    rgba(255, 178, 122, 0.12);
  box-shadow: 0 0 24px rgba(0, 245, 200, 0.28), 0 0 18px rgba(255, 178, 122, 0.16);
  animation: iconFloat 4.6s ease-in-out infinite;
}

.signature-rule b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-self: center;
  padding: 7px 10px;
  border: 1px solid rgba(234, 242, 244, 0.11);
  border-radius: 999px;
  color: #d9e5e7;
  background: rgba(5, 12, 13, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.feature-grid,
.target-grid {
  display: grid;
  gap: 16px;
  margin: 18px 0;
}

.feature-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid.three,
.target-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.target-grid article,
.timeline article,
.service-list article,
.category-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(234, 242, 244, 0.036), rgba(234, 242, 244, 0.012)),
    rgba(4, 8, 10, 0.44);
}

.feature-card,
.target-grid article {
  min-height: 250px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover,
.target-grid article:hover,
.service-step:hover,
.flow-card:hover,
.brand-usage article:hover,
.principle-board article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 200, 0.28);
}

.feature-card span,
.target-grid span,
.timeline span,
.service-list > article > span,
.process-strip span {
  color: var(--teal);
  font-weight: 800;
}

.feature-card h3,
.target-grid h2,
.timeline h2,
.service-list h2,
.service-step h2,
.audience-card h2,
.flow-card h2 {
  color: var(--text);
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: clamp(24px, 5vw, 72px);
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list article {
  padding: 22px;
  border-left: 2px solid rgba(0, 245, 200, 0.45);
  background: rgba(234, 242, 244, 0.035);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
}

.process-strip article {
  min-height: 210px;
  padding: 30px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 245, 200, 0.12), transparent 8rem);
}

.home-studio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 6vw, 92px);
  margin: 18px 0;
  padding: clamp(30px, 6vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 168, 255, 0.12), transparent 22rem),
    linear-gradient(135deg, rgba(234, 242, 244, 0.04), rgba(234, 242, 244, 0.012)),
    rgba(7, 10, 13, 0.78);
}

.home-studio::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: clamp(22px, 5vw, 58px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 245, 200, 0.8), rgba(255, 178, 122, 0.7), transparent);
  box-shadow: 0 0 22px rgba(0, 245, 200, 0.18);
}

.studio-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-left: clamp(18px, 3vw, 34px);
}

.studio-copy p:not(.eyebrow) {
  max-width: 560px;
}

.studio-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.studio-map::before {
  content: "";
  position: absolute;
  inset: 50% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 200, 0.58), rgba(255, 178, 122, 0.44), transparent);
}

.studio-map article {
  position: relative;
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(234, 242, 244, 0.052), rgba(234, 242, 244, 0.014)),
    rgba(4, 8, 10, 0.7);
}

.studio-map article:nth-child(2),
.studio-map article:nth-child(3) {
  transform: translateY(26px);
}

.studio-map span,
.audience-strip span,
.process-rail span,
.conversation-card span {
  color: var(--teal);
  font-family: "Afacad", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-audience {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(780px, 1.32fr);
  gap: clamp(42px, 7vw, 112px);
  margin: 18px 0;
  padding: clamp(30px, 6vw, 82px);
  background:
    linear-gradient(90deg, rgba(0, 245, 200, 0.055), transparent 34%),
    rgba(7, 10, 13, 0.78);
}

.home-audience-copy p:not(.eyebrow) {
  max-width: 520px;
}

.audience-strip {
  display: grid;
  gap: 12px;
}

.audience-strip article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 0.22fr) minmax(330px, 0.44fr) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 40px);
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid rgba(234, 242, 244, 0.12);
}

.audience-strip article:last-child {
  border-bottom: 1px solid rgba(234, 242, 244, 0.12);
}

.audience-strip h3,
.process-rail h3 {
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.45rem, 1.65vw, 1.85rem);
  line-height: 1;
}

.audience-strip h3,
.audience-strip p {
  min-width: 0;
  max-width: 100%;
}

.audience-strip h3 {
  white-space: nowrap;
  overflow-wrap: normal;
  hyphens: none;
}

.home-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 72px);
  margin: 18px 0;
  padding: clamp(30px, 5vw, 72px);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(234, 242, 244, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(234, 242, 244, 0.08);
}

.process-rail article {
  min-height: 260px;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 245, 200, 0.11), transparent 8rem),
    rgba(4, 8, 10, 0.76);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  align-items: center;
  column-gap: clamp(28px, 6vw, 92px);
  row-gap: 14px;
}

.cta-band .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
}

.cta-band h2 {
  grid-column: 1;
  max-width: 920px;
  margin-bottom: 0;
}

.cta-band .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  min-width: min(100%, 310px);
}

.page-hero {
  margin-bottom: 18px;
  padding: clamp(44px, 7vw, 108px);
  background:
    linear-gradient(90deg, rgba(0, 245, 200, 0.08), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(255, 178, 122, 0.1), transparent 20rem),
    rgba(7, 10, 13, 0.8);
}

.page-hero h1 {
  max-width: 980px;
}

.visual-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.56fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
}

.visual-page-hero > div {
  position: relative;
  z-index: 1;
}

.page-hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 40vw, 560px);
  margin: 0;
  border: 1px solid rgba(234, 242, 244, 0.12);
  border-radius: 8px;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(234, 242, 244, 0.06);
  overflow: hidden;
}

.page-hero-visual::before,
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-visual::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.48));
}

.page-hero-visual::after {
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--copper), transparent);
  box-shadow: 0 0 24px rgba(0, 245, 200, 0.2);
}

.visual-audience {
  --page-hero-image: url("/assets/page-fuer-wen.jpg");
}

.visual-process {
  --page-hero-image: url("/assets/page-so-funktioniert-es.jpg");
}

.visual-about {
  --page-hero-image: url("/assets/page-ueber-gastro-guru.jpg");
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.page-hero-grid h1 {
  max-width: 960px;
}

.hero-aside {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(0, 245, 200, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 245, 200, 0.15), transparent 14rem),
    linear-gradient(180deg, rgba(234, 242, 244, 0.055), rgba(234, 242, 244, 0.012)),
    rgba(4, 8, 10, 0.62);
}

.hero-aside::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--copper), transparent);
}

.hero-aside span,
.brand-usage span,
.process-assurance span,
.service-outcome b,
.step-output b {
  color: var(--teal);
  font-family: "Afacad", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-aside strong {
  display: block;
  margin: 14px 0 12px;
  color: var(--text);
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.02;
}

.hero-aside p {
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 18px 0;
  padding: clamp(24px, 4vw, 42px);
}

.service-timeline {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 18px 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 245, 200, 0.09), transparent 24rem),
    rgba(7, 10, 13, 0.78);
}

.service-timeline::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: clamp(44px, 5vw, 72px);
  right: clamp(44px, 5vw, 72px);
  top: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 245, 200, 0.08), var(--teal), var(--cyan), var(--copper), rgba(255, 178, 122, 0.08));
  box-shadow: 0 0 28px rgba(0, 245, 200, 0.22);
}

.service-step {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: stretch;
  grid-template-rows: auto auto 1fr;
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #05080a;
  box-shadow: inset 0 1px 0 rgba(234, 242, 244, 0.06), 0 22px 54px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-step:nth-child(even) {
  margin-top: 46px;
}

.service-step::before,
.service-step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-step::before {
  background-image: var(--service-image);
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: scale(1.01);
  transition: transform 420ms ease, opacity 420ms ease;
}

.service-step::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.1) 0%, rgba(5, 7, 10, 0.38) 40%, rgba(5, 7, 10, 0.94) 100%),
    radial-gradient(circle at 16% 20%, rgba(0, 245, 200, 0.16), transparent 13rem);
}

.service-step:hover::before {
  opacity: 0.86;
  transform: scale(1.055);
}

.service-einkauf {
  --service-image: url("/assets/service-einkauf.jpg");
}

.service-sitzplatz {
  --service-image: url("/assets/service-sitzplatz.jpg");
}

.service-einrichtung {
  --service-image: url("/assets/service-einrichtung.jpg");
}

.service-entlastung {
  --service-image: url("/assets/service-entlastung.jpg");
}

.service-step > * {
  position: relative;
  z-index: 1;
}

.service-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 245, 200, 0.55);
  border-radius: 50%;
  color: var(--teal);
  background: #071012;
  box-shadow: 0 0 22px rgba(0, 245, 200, 0.2);
  font-weight: 800;
}

.service-icon,
.audience-icon,
.flow-marker svg {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(0, 245, 200, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 200, 0.14), transparent 62%),
    rgba(0, 245, 200, 0.04);
  box-shadow: 0 0 26px rgba(0, 245, 200, 0.14);
}

.service-icon svg,
.audience-icon svg,
.flow-marker svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-step h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.15vw, 2.35rem);
  line-height: 1.05;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.service-step p {
  max-width: 32ch;
  color: #e0eaec;
  font-size: 0.93rem;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.service-content {
  align-self: end;
  display: grid;
  gap: 10px;
}

.service-outcome,
.step-output {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(0, 245, 200, 0.18);
  border-radius: var(--radius);
  background: rgba(2, 9, 10, 0.68);
  backdrop-filter: blur(10px);
}

.service-outcome span,
.step-output span {
  color: #d8e5e7;
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: clamp(24px, 4vw, 40px);
}

.service-list p {
  max-width: 920px;
}

.matrix-section {
  padding: clamp(30px, 5vw, 64px);
}

.supply-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 14px;
  align-items: stretch;
}

.supply-matrix {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 8, 10, 0.52);
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.3fr) 0.7fr 0.7fr 0.7fr 0.58fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(234, 242, 244, 0.09);
  color: #c6d3d5;
  font-size: 0.86rem;
  font-weight: 700;
}

.matrix-head {
  min-height: 48px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 245, 200, 0.055);
}

.matrix-row strong {
  color: var(--text);
}

.matrix-row b {
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(0, 245, 200, 0.28);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 245, 200, 0.08);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.category-panel {
  padding: 26px;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 36px;
}

.audience-card {
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -35% 24%;
  height: 160px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 245, 200, 0.14), transparent 68%);
}

.audience-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.audience-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.audience-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: "Afacad", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.audience-card p {
  position: relative;
  z-index: 1;
}

.signal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(234, 242, 244, 0.1);
  border-radius: var(--radius);
  color: #dbe7e9;
  background: rgba(234, 242, 244, 0.032);
  font-size: 0.84rem;
  line-height: 1.4;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 1.05em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(0, 245, 200, 0.34);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
  overflow: visible;
}

.check-list li {
  position: relative;
  min-height: 60px;
  padding: 18px 22px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d5e1e3;
  background:
    linear-gradient(90deg, rgba(0, 245, 200, 0.055), rgba(234, 242, 244, 0.026) 36%, rgba(234, 242, 244, 0.018)),
    rgba(234, 242, 244, 0.035);
  box-shadow: inset 0 1px 0 rgba(234, 242, 244, 0.04);
  overflow: visible;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 245, 200, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 245, 200, 0.2), rgba(0, 245, 200, 0.06) 62%, rgba(5, 7, 10, 0.92) 63%),
    rgba(5, 12, 13, 0.94);
  box-shadow: 0 0 24px rgba(0, 245, 200, 0.22), 0 0 0 6px rgba(0, 245, 200, 0.035);
  transform: translateY(-50%);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  filter: drop-shadow(0 0 8px rgba(0, 245, 200, 0.5));
  transform: translateY(-68%) rotate(-45deg);
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 18px 0;
  padding: clamp(24px, 4vw, 42px);
}

.flow-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 10, 13, 0.78);
}

.flow-diagram::before {
  content: "";
  position: absolute;
  left: clamp(48px, 5vw, 76px);
  right: clamp(48px, 5vw, 76px);
  top: 95px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 245, 200, 0.05), var(--teal), var(--cyan), var(--copper), rgba(255, 178, 122, 0.05));
  background-size: 180% 100%;
  box-shadow: 0 0 24px rgba(0, 245, 200, 0.18);
  animation: flowPulse 5s linear infinite;
}

.flow-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(234, 242, 244, 0.04), rgba(234, 242, 244, 0.012)),
    rgba(4, 8, 10, 0.78);
}

.flow-card:nth-child(even) {
  margin-top: 44px;
}

.flow-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.flow-marker span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 178, 122, 0.5);
  border-radius: 50%;
  color: var(--copper);
  background: #071012;
  font-weight: 800;
}

.flow-card h2 {
  margin-bottom: 2px;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
}

.process-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(234, 242, 244, 0.11);
  border-radius: var(--radius);
  background: rgba(234, 242, 244, 0.08);
}

.process-assurance article {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(0, 245, 200, 0.06), transparent 58%),
    rgba(4, 8, 10, 0.78);
}

.process-assurance strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--text);
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

@keyframes flowPulse {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 180% 50%;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes heroScan {
  0%,
  100% {
    background-position: -35% 50%, 50% 50%;
    opacity: 0.48;
  }
  50% {
    background-position: 105% 50%, 50% 50%;
    opacity: 0.78;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes lineBreathe {
  0%,
  100% {
    opacity: 0.32;
    transform: translateY(-50%) scaleX(0.68);
  }
  50% {
    opacity: 0.76;
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes orbitGlow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none;
    scroll-behavior: auto;
  }

  .button,
  .metric-favicon,
  .feature-card,
  .target-grid article,
  .service-step,
  .flow-card {
    transition: none;
  }
}

.timeline article {
  display: grid;
  grid-template-columns: 80px 0.8fr 1.2fr;
  gap: 24px;
  padding: 30px;
}

.about-panel {
  display: grid;
  gap: 18px;
}

.about-manifest {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 88px);
  margin: 18px 0;
  padding: clamp(32px, 6vw, 86px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 80%, rgba(0, 245, 200, 0.09), transparent 18rem),
    rgba(7, 10, 13, 0.78);
}

.manifest-lead h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.8rem);
}

.manifest-copy {
  display: grid;
  gap: 22px;
  align-self: end;
}

.manifest-copy p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(234, 242, 244, 0.11);
}

.principle-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(234, 242, 244, 0.11);
  border-radius: var(--radius);
  background: rgba(234, 242, 244, 0.08);
}

.principle-board article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 178, 122, 0.08), transparent 8rem),
    rgba(4, 8, 10, 0.78);
}

.principle-board span {
  color: var(--teal);
  font-weight: 800;
}

.principle-board h3 {
  margin: 26px 0 12px;
  color: var(--text);
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.02;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.asset-grid {
  display: grid;
  gap: 18px;
  margin: 18px 0;
}

.brand-kit-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin: 18px 0;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(0, 245, 200, 0.075), transparent 42%),
    rgba(7, 10, 13, 0.78);
}

.brand-kit-panel h2 {
  max-width: 720px;
  margin-bottom: 0;
}

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

.brand-swatches span {
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(234, 242, 244, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.7)),
    var(--swatch);
}

.brand-swatches b,
.brand-swatches small {
  color: var(--text);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

.brand-swatches b {
  font-family: "Afacad", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.brand-swatches small {
  margin-top: 6px;
  color: #d5e1e3;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.asset-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 16%, rgba(0, 245, 200, 0.1), transparent 20rem),
    rgba(7, 10, 13, 0.78);
}

.asset-card h2 {
  max-width: 560px;
}

.asset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.asset-preview {
  min-height: 300px;
  border: 1px solid rgba(234, 242, 244, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 242, 244, 0.04), rgba(234, 242, 244, 0.01)),
    rgba(4, 8, 10, 0.5);
}

.logo-preview {
  display: grid;
  place-items: center;
  padding: 30px;
}

.logo-preview img {
  width: min(100%, 680px);
}

.font-preview {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.font-display {
  margin: 0;
  font-family: "Afacad", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.94;
  color: var(--text);
}

.font-body {
  max-width: 620px;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

.font-specimen {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.font-specimen span {
  padding: 9px 12px;
  border: 1px solid rgba(234, 242, 244, 0.13);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-copy h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.conversation-card {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(0, 245, 200, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 245, 200, 0.12), transparent 14rem),
    rgba(4, 8, 10, 0.54);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.contact-assurance span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 245, 200, 0.22);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(0, 245, 200, 0.055);
  font-size: 0.75rem;
  font-weight: 800;
}

.conversation-card h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.conversation-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.conversation-card li {
  position: relative;
  padding-left: 24px;
  color: #d5e1e3;
  line-height: 1.55;
}

.conversation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(0, 245, 200, 0.42);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 8, 10, 0.58);
}

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

label {
  display: grid;
  gap: 8px;
  color: #d9e5e7;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(234, 242, 244, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(5, 7, 10, 0.86);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 245, 200, 0.38);
  border-color: rgba(0, 245, 200, 0.58);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.brand-usage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.brand-usage article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(234, 242, 244, 0.04), rgba(234, 242, 244, 0.012)),
    rgba(7, 10, 13, 0.78);
}

.brand-usage h3 {
  margin-top: 20px;
  color: var(--text);
  font-family: "Afacad", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0 24px;
  padding: 24px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer nav a {
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: var(--text);
}

.legal-content {
  display: grid;
  gap: 18px;
  margin: 18px 0;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 10, 13, 0.78);
}

.legal-content h2 {
  margin: 28px 0 8px;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  max-width: 980px;
}

.legal-address {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  color: #dce8ea;
  line-height: 1.65;
}

.legal-note {
  max-width: 980px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 178, 122, 0.24);
  border-radius: var(--radius);
  color: #ffd6bd;
  background: rgba(255, 178, 122, 0.055);
}

.legal-pre {
  max-width: 1080px;
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #cbd8da;
  font: inherit;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(5, 7, 10, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  body.menu-open .nav-links {
    max-height: 420px;
    padding: 8px;
    border-color: rgba(234, 242, 244, 0.13);
    opacity: 1;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(234, 242, 244, 0.055);
  }

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

  .hero-copy,
  .hero-metrics {
    grid-column: 1;
    width: min(58%, 620px);
    margin-left: auto;
  }

  .feature-grid.four,
  .feature-grid.three,
  .target-grid,
  .process-strip,
  .process-rail,
  .principle-board,
  .service-timeline,
  .flow-diagram,
  .brand-swatches {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-timeline::before,
  .flow-diagram::before {
    display: none;
  }

  .service-step:nth-child(even),
  .flow-card:nth-child(even) {
    margin-top: 0;
  }

  .supply-workspace,
  .contact-layout,
  .asset-card,
  .brand-kit-panel,
  .visual-page-hero,
  .page-hero-grid,
  .about-manifest,
  .fit-section,
  .home-studio,
  .home-audience,
  .home-process,
  .split-section {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 70px 1fr;
  }

  .timeline article p {
    grid-column: 2;
  }
}

@media (max-width: 1320px) {
  .home-audience {
    grid-template-columns: 1fr;
  }

  .audience-strip article {
    grid-template-columns: minmax(118px, 0.22fr) minmax(330px, 0.44fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .audience-strip article {
    grid-template-columns: minmax(128px, 0.32fr) minmax(0, 1fr);
    gap: 12px 24px;
  }

  .audience-strip p {
    grid-column: 2;
  }

  .audience-strip h3 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1480px);
  }

  .nav {
    top: 10px;
    gap: 12px;
    min-height: 72px;
    padding: 0 10px;
    grid-template-columns: 1fr auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    top: calc(100% + 8px);
  }

  body.menu-open .nav-links {
    max-height: 390px;
    padding: 8px;
    border-color: rgba(234, 242, 244, 0.13);
    opacity: 1;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(234, 242, 244, 0.055);
  }

  .brand {
    width: 150px;
  }

  .brand-dark-logo {
    width: 150px;
    height: 54px;
    padding: 0;
  }

  .brand-dark-logo img {
    height: 100%;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 7px 0 11px;
    font-size: 0.72rem;
  }

  .nav-cta i {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: 780px;
    padding: 22px;
  }

  .hero-visual img {
    object-position: 21% center;
  }

  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.28) 0%, rgba(5, 7, 10, 0.45) 34%, rgba(5, 7, 10, 0.82) 62%, rgba(5, 7, 10, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.12), rgba(5, 7, 10, 0.32));
  }

  .hero-copy,
  .hero-metrics {
    width: 100%;
    margin-left: 0;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
  }

  .hero-actions,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .hero-metrics,
  .feature-grid.four,
  .feature-grid.three,
  .target-grid,
  .process-strip,
  .process-rail,
  .process-assurance,
  .principle-board,
  .brand-usage,
  .service-timeline,
  .flow-diagram,
  .timeline article,
  .service-list article,
  .matrix-row,
  .cta-band,
  .premium-intro,
  .studio-map,
  .audience-strip article,
  .page-hero-grid,
  .about-manifest,
  .brand-kit-panel,
  .brand-swatches {
    grid-template-columns: 1fr;
  }

  .audience-strip p {
    grid-column: 1;
  }

  .intro-band,
  .section-block,
  .split-section,
  .home-studio,
  .home-audience,
  .home-process,
  .cta-band,
  .matrix-section,
  .fit-section,
  .about-panel,
  .about-manifest,
  .process-assurance article,
  .principle-board article,
  .brand-usage article,
  .contact-layout,
  .asset-card,
  .page-hero {
    padding: 24px;
  }

  .page-hero-visual {
    min-height: 280px;
  }

  .home-studio::before,
  .studio-map::before {
    display: none;
  }

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

  .studio-map article:nth-child(2),
  .studio-map article:nth-child(3) {
    transform: none;
  }

  .signature-rule {
    min-height: 150px;
    padding: 18px;
  }

  .signature-rule b {
    font-size: 0.62rem;
    padding-inline: 8px;
  }

  .process-rail article {
    min-height: auto;
    padding: 22px;
  }

  .hero-aside {
    padding: 22px;
  }

  .principle-board article {
    min-height: auto;
  }

  .brand-swatches span {
    min-height: 110px;
  }

  .cta-band .eyebrow,
  .cta-band h2,
  .cta-band .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }

  .asset-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .asset-preview {
    min-height: 220px;
  }

  .feature-card,
  .target-grid article,
  .process-strip article {
    min-height: auto;
    padding: 22px;
  }

  .check-list {
    padding-left: 14px;
  }

  .check-list li {
    padding-left: 46px;
  }

  .check-list li::before {
    left: -14px;
    width: 32px;
    height: 32px;
  }

  .check-list li::after {
    left: -3px;
    width: 14px;
    height: 8px;
  }

  .service-list {
    padding: 16px;
  }

  .service-timeline,
  .flow-diagram {
    padding: 16px;
  }

  .flow-card {
    min-height: auto;
    padding: 22px;
  }

  .service-step {
    min-height: 430px;
    padding: 22px;
  }

  .service-list article,
  .timeline article {
    padding: 22px;
  }

  .timeline article p {
    grid-column: 1;
  }

  .matrix-row {
    gap: 10px;
    min-height: auto;
    padding: 18px;
  }

  .matrix-head {
    display: none;
  }

  .matrix-row:not(.matrix-head) > * {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 9px 0;
    border-bottom: 1px solid rgba(234, 242, 244, 0.08);
  }

  .matrix-row:not(.matrix-head) > *:last-child {
    border-bottom: 0;
  }

  .matrix-row:not(.matrix-head) > *::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .matrix-row b {
    justify-self: stretch;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .nav-cta {
    justify-content: center;
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .nav-cta i {
    width: 26px;
    height: 26px;
  }
}
