:root {
  --black: #050505;
  --ink: #f7f4ed;
  --muted: #b9b2a5;
  --yellow: #ffc20e;
  --mint: #87e2cc;
  --coral: #ff6f61;
  --line: rgba(247, 244, 237, 0.18);
  --line-strong: rgba(247, 244, 237, 0.34);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 194, 14, 0.06), transparent 520px),
    var(--black);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--mint), var(--coral));
}

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 40px;
  color: var(--ink);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.landing-header.is-scrolled,
.landing-header.is-open {
  height: 76px;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-lockup span {
  display: grid;
  gap: 1px;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(247, 244, 237, 0.78);
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-nav a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease;
}

.landing-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.landing-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.hero-canvas,
.hero-shade,
.hero-dog {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero-dog {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: contrast(1.08) saturate(0.94);
  transform: translate3d(var(--px, 0), var(--py, 0), 0) scale(1.03);
  transition: transform 180ms ease-out;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 34%, rgba(5, 5, 5, 0.4) 64%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.24), rgba(5, 5, 5, 0.88));
}

.hero-content {
  width: min(780px, calc(100% - 52px));
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 118px 0 88px;
  margin-left: clamp(26px, 7vw, 104px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-line {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(247, 244, 237, 0.82);
  font-size: 1.28rem;
  font-weight: 760;
}

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

.button {
  --mx: 0px;
  --my: 0px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: none;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--yellow);
  color: #090704;
  box-shadow: 0 18px 42px rgba(255, 194, 14, 0.18);
}

.button-primary:hover {
  background: #ffd65c;
}

.button-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.11);
}

.hero-note {
  position: absolute;
  left: clamp(26px, 7vw, 104px);
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(247, 244, 237, 0.68);
}

.hero-note span {
  padding: 8px 0;
  border-top: 1px solid var(--line-strong);
  min-width: 160px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-band {
  min-height: 42svh;
  display: grid;
  place-items: center;
  padding: 72px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
  color: #0a0805;
}

.proof-band p {
  width: min(1040px, 100%);
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.25rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-stage {
  padding: 110px 40px;
  border-bottom: 1px solid var(--line);
}

.section-copy {
  width: min(1120px, 100%);
  margin: 0 auto 58px;
}

.section-copy h2,
.journey-sticky h2,
.image-run-copy h2,
.final-copy h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-switcher {
  width: min(1120px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(230px, 0.48fr) minmax(300px, 0.68fr);
  gap: 34px;
  align-items: stretch;
  margin: 0 auto;
}

.service-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #161616;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transform: scale(1.04);
  transition: opacity 240ms ease, transform 520ms ease;
}

.service-media.is-swapping img {
  opacity: 0.28;
  transform: scale(1.09);
}

.service-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-tabs {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.service-tab {
  width: 100%;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(247, 244, 237, 0.52);
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 0.95;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.service-tab:hover,
.service-tab.is-active {
  color: var(--ink);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 194, 14, 0.12), transparent);
}

.service-copy {
  align-self: end;
  padding-bottom: 24px;
}

.service-copy h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.06;
}

.service-copy p {
  margin: 0;
  max-width: 410px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--yellow);
  font-weight: 950;
  text-decoration: none;
}

.text-link:hover {
  color: var(--mint);
}

.journey {
  width: min(1180px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(320px, 1fr);
  gap: 76px;
  margin: 0 auto;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.journey-sticky {
  position: sticky;
  top: 118px;
  align-self: start;
}

.journey-sticky .button {
  margin-top: 34px;
}

.journey-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.journey-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.journey-step span {
  color: var(--mint);
  font-weight: 950;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 1.38rem;
}

.journey-step p {
  grid-column: 2;
  max-width: 600px;
  margin: 0;
  color: rgba(247, 244, 237, 0.68);
  font-size: 1.02rem;
}

.image-run {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 116px 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(135, 226, 204, 0.08)),
    #080808;
}

.image-run img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-run-copy {
  max-width: 620px;
}

.image-run-copy p:last-child {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(247, 244, 237, 0.72);
  font-size: 1.08rem;
}

.final-cta {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px 40px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.62)),
    #050505;
}

.cta-dog {
  position: absolute;
  right: -7vw;
  bottom: -72px;
  width: min(58vw, 770px);
  max-width: none;
  opacity: 0.58;
  transform: translate3d(var(--px, 0), var(--py, 0), 0) rotate(-2deg);
  pointer-events: none;
}

.final-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin-left: clamp(0px, 5vw, 68px);
}

.landing-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 40px;
  color: rgba(247, 244, 237, 0.68);
  background: #050505;
}

.landing-footer strong,
.landing-footer span {
  display: block;
}

.landing-footer strong {
  color: var(--ink);
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.footer-links a {
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(26px);
  transition: transform 620ms ease;
}

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

@media (max-width: 980px) {
  .landing-header {
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .landing-header.is-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    border-radius: 6px;
  }

  .hero-content {
    min-height: 92svh;
    padding-top: 116px;
    margin-left: 26px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-line {
    font-size: 1.08rem;
  }

  .proof-band p,
  .section-copy h2,
  .journey-sticky h2,
  .image-run-copy h2,
  .final-copy h2 {
    font-size: 3.25rem;
  }

  .service-stage {
    padding: 86px 24px;
  }

  .service-switcher,
  .journey,
  .image-run {
    grid-template-columns: 1fr;
  }

  .service-switcher {
    min-height: 0;
  }

  .service-media {
    min-height: 440px;
  }

  .service-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
  }

  .service-tab {
    min-height: 92px;
    padding-right: 10px;
    font-size: 1.7rem;
    border-top: 1px solid var(--line);
  }

  .service-tab:hover,
  .service-tab.is-active {
    padding-left: 10px;
  }

  .service-copy {
    padding-bottom: 0;
  }

  .journey {
    width: min(100% - 48px, 760px);
    gap: 44px;
    padding: 88px 0;
  }

  .journey-sticky {
    position: static;
  }

  .image-run {
    padding: 88px 24px;
    gap: 42px;
  }

  .final-cta {
    min-height: 78svh;
    padding: 88px 24px;
  }

  .cta-dog {
    right: -220px;
    width: 720px;
  }
}

@media (max-width: 620px) {
  .landing-header {
    height: 78px;
    padding: 0 16px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
  }

  .brand-lockup strong {
    font-size: 1.15rem;
  }

  .brand-lockup small {
    max-width: 128px;
    font-size: 0.68rem;
  }

  .hero-content {
    width: min(100% - 34px, 520px);
    min-height: 92svh;
    padding: 104px 0 128px;
    margin-left: 17px;
  }

  .hero-dog {
    object-position: 68% center;
    opacity: 0.66;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.9));
  }

  .hero h1 {
    font-size: 3.4rem;
    line-height: 0.9;
  }

  .hero-line {
    max-width: 360px;
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 330px);
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-note {
    left: 17px;
    right: 17px;
    bottom: 16px;
  }

  .hero-note span {
    min-width: 0;
    flex: 1 1 120px;
    font-size: 0.72rem;
  }

  .proof-band {
    min-height: 32svh;
    padding: 50px 18px;
  }

  .proof-band p,
  .section-copy h2,
  .journey-sticky h2,
  .image-run-copy h2,
  .final-copy h2 {
    font-size: 2.3rem;
  }

  .service-stage {
    padding: 68px 18px;
  }

  .section-copy {
    margin-bottom: 36px;
  }

  .service-media {
    min-height: 320px;
  }

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

  .service-tab {
    min-height: 72px;
    font-size: 1.62rem;
  }

  .service-copy h3 {
    font-size: 1.55rem;
  }

  .journey {
    width: calc(100% - 36px);
    padding: 70px 0;
  }

  .journey-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .journey-step p {
    grid-column: 1 / -1;
  }

  .image-run {
    padding: 70px 18px;
  }

  .final-cta {
    min-height: 72svh;
    padding: 72px 18px;
  }

  .cta-dog {
    right: -250px;
    bottom: -40px;
    width: 640px;
  }

  .landing-footer {
    display: grid;
    padding: 28px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-dog,
  .cta-dog,
  .button {
    transform: none !important;
  }
}
