:root {
  --ink: #08080b;
  --ink-2: #111116;
  --ink-3: #19191f;
  --paper: #f7f0df;
  --muted: #aba79d;
  --soft: #ded4bd;
  --line: rgba(247, 240, 223, 0.14);
  --line-strong: rgba(247, 240, 223, 0.26);
  --gold: #d8b451;
  --gold-2: #f0d884;
  --signal: #00d0a1;
  --hot: #ff3d81;
  --blue: #72a7ff;
  --danger: #ff624d;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 28rem),
    var(--ink);
  color: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 240, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 240, 223, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

img {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

@media (min-width: 760px) {
  .container {
    width: min(100% - 64px, var(--max));
  }
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-150%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  font-weight: 800;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--signal), var(--hot));
}

.topline {
  position: relative;
  z-index: 80;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 8, 11, 0.22);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.topline-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.topline-track span {
  padding: 0.55rem 1.3rem;
}

.topline-track span::before {
  content: "/";
  margin-right: 0.7rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 11, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: var(--radius);
}

.brand strong {
  color: var(--gold);
  font-weight: 400;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  padding-block: 0.35rem;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.mobile-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.72rem 0.9rem;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta svg,
.button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  max-height: 0;
  border-top: 1px solid transparent;
  overflow: hidden;
  transition: max-height 220ms ease, border-color 220ms ease;
}

.mobile-nav.is-open {
  max-height: 360px;
  border-color: var(--line);
}

.mobile-nav a {
  display: block;
  margin-inline: 16px;
  padding: 1rem 0;
  color: var(--paper);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-button,
  .mobile-nav {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-scene,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-scene {
  width: 100%;
  height: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 11, 0.95) 0%, rgba(8, 8, 11, 0.74) 46%, rgba(8, 8, 11, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 8, 11, 0.94) 0%, rgba(8, 8, 11, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 5.5rem 4.4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.executive-copy h2,
.proof-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: 4.4rem;
}

.hero-copy {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--soft);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.92rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(216, 180, 81, 0.22);
}

.button-primary:hover {
  background: var(--gold-2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 760px;
  margin-top: 2.4rem;
}

.hero-ledger span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.48rem 0.68rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

@media (min-width: 760px) {
  .hero-content {
    padding-block: 7rem 5rem;
  }

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

  .hero-copy {
    font-size: 1.18rem;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 10rem;
  }
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.signal-grid {
  display: grid;
  gap: 1px;
  background: rgba(8, 8, 11, 0.16);
}

.signal-grid > div {
  min-height: 180px;
  padding: 1.4rem;
  background: var(--paper);
}

.metric {
  display: block;
  margin-bottom: 1.2rem;
  color: #7d651f;
  font-family: Anton, Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.signal-grid p {
  max-width: 26rem;
  margin: 0;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (min-width: 760px) {
  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section {
  padding-block: 5rem;
}

@media (min-width: 900px) {
  .section {
    padding-block: 7rem;
  }
}

.section-heading {
  display: grid;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.executive-copy h2,
.proof-copy h2,
.about-copy h2,
.contact-copy h2 {
  max-width: 12ch;
  font-size: 3rem;
}

.section-heading p:not(.eyebrow),
.executive-copy p:not(.eyebrow),
.proof-copy p,
.about-text p,
.contact-copy p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

@media (min-width: 760px) {
  .section-heading {
    grid-template-columns: 0.95fr 1fr;
  }

  .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .section-heading h2,
  .executive-copy h2,
  .proof-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 4.4rem;
  }
}

.core-services-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #101014, var(--ink) 44%, #0d0d10),
    var(--ink);
}

.core-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 180, 81, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(0, 208, 161, 0.06), transparent 34%);
  opacity: 0.9;
}

.core-services-section .container {
  position: relative;
  z-index: 1;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.service-index a,
.service-index-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.75rem;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.service-index a:hover,
.service-index a:focus-visible,
.service-index a.is-active {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(216, 180, 81, 0.1);
  color: var(--paper);
}

.service-index a.is-active {
  box-shadow: inset 0 0 0 1px rgba(216, 180, 81, 0.28);
}

.service-index a > span,
.service-index-item > span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
}

.service-index-disabled {
  cursor: default;
  color: rgba(222, 212, 189, 0.48);
  background: rgba(255, 255, 255, 0.02);
  filter: grayscale(1);
}

.ux-standards {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.ux-standards div {
  display: grid;
  gap: 0.45rem;
  min-height: 128px;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 11, 0.72);
  padding: 1rem;
}

.ux-standards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ux-standards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.42;
}

.deliverable-grid {
  display: grid;
  gap: 1rem;
}

.deliverable-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--ink-2);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--signal), var(--hot), var(--blue));
}

.deliverable-card:hover,
.deliverable-card:focus-visible {
  border-color: rgba(216, 180, 81, 0.58);
  transform: translateY(-2px);
}

.deliverable-card.is-active {
  cursor: default;
  transform: none;
  border-color: rgba(216, 180, 81, 0.68);
}

.promo-card {
  border-color: rgba(247, 240, 223, 0.16);
  background:
    linear-gradient(135deg, rgba(247, 240, 223, 0.07), rgba(255, 255, 255, 0.025)),
    var(--ink-2);
}

.promo-card::after {
  content: "SOON";
  position: absolute;
  right: 0.02em;
  bottom: -0.2em;
  color: rgba(247, 240, 223, 0.032);
  font-family: Anton, Impact, sans-serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.coming-soon-card {
  cursor: default;
  filter: grayscale(0.7);
}

.coming-soon-card:hover,
.coming-soon-card:focus-visible {
  transform: none;
  border-color: rgba(247, 240, 223, 0.16);
}

.coming-soon-card .deliverable-head {
  opacity: 0.76;
}

.service-status {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(247, 240, 223, 0.2);
  border-radius: var(--radius);
  padding: 0.35rem 0.55rem;
  background: rgba(247, 240, 223, 0.07);
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.deliverable-head {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.deliverable-card:not(.is-active) .deliverable-head {
  min-height: 250px;
  border-bottom: 0;
  align-content: start;
}

.deliverable-head .service-number {
  margin-bottom: 0;
}

.deliverable-head h3 {
  margin: 0;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.deliverable-head p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.deliverable-card:not(.is-active) .deliverable-head p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coming-soon-points {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.coming-soon-points li {
  display: flex;
  gap: 0.5rem;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.coming-soon-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: rgba(247, 240, 223, 0.42);
}

.deliverable-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem 1rem;
  padding: 1.25rem;
}

.deliverable-list li {
  display: flex;
  gap: 0.55rem;
  min-height: 26px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.deliverable-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 180, 81, 0.1);
}

.deliverable-card:not(.is-active) .deliverable-list,
.deliverable-card:not(.is-active) .bundle-suite {
  display: none;
}

.bundle-suite {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(8, 8, 11, 0.36);
}

.bundle-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 1rem;
}

.bundle-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-card h4 {
  margin: 0;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bundle-card p,
.bundle-card li {
  color: var(--muted);
  font-size: 0.92rem;
}

.bundle-card p {
  margin: 0;
}

.bundle-card ul {
  display: grid;
  gap: 0.45rem;
}

.bundle-card li {
  display: flex;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.bundle-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: rgba(216, 180, 81, 0.72);
}

.bundle-select {
  align-self: end;
  min-height: 42px;
  margin-top: 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.bundle-select:hover,
.bundle-select.is-selected {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

@media (min-width: 900px) {
  .ux-standards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .bundle-suite {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .deliverable-card.is-active {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1120px) {
  .deliverable-card.is-active .deliverable-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.work-section {
  background: linear-gradient(180deg, var(--ink), #0d0d10);
}

.work-grid {
  display: grid;
  gap: 1rem;
}

.work-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.work-card-body {
  padding: 1.2rem;
}

.work-card-body h3,
.service-card h3,
.process-step h3 {
  margin: 0;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-card-body p:last-child,
.service-card p,
.process-step p,
.quote-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

@media (min-width: 880px) {
  .work-grid {
    grid-template-columns: 0.9fr 1.25fr;
    align-items: stretch;
  }

  .work-card-large {
    grid-row: span 2;
  }

  .work-card-large img {
    aspect-ratio: 1.15;
  }
}

.services-section {
  background:
    linear-gradient(180deg, #0d0d10, var(--ink)),
    var(--ink);
}

.services-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.quote-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-card,
.process-step {
  padding: 1.35rem;
}

.service-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--signal), var(--hot), var(--blue));
  opacity: 0.8;
}

.service-number {
  display: inline-flex;
  margin-bottom: 1.3rem;
  color: var(--gold);
  font-weight: 900;
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.service-card li {
  display: flex;
  gap: 0.55rem;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.52rem;
  border-radius: 50%;
  background: var(--gold);
}

@media (min-width: 760px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.executive-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 180, 81, 0.14), rgba(0, 208, 161, 0.06)),
    var(--ink-2);
  padding-block: 5rem;
}

.executive-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.command-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(8, 8, 11, 0.72);
  box-shadow: var(--shadow);
}

.command-row {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.command-row:last-child {
  border-bottom: 0;
}

.command-row span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-row strong {
  color: var(--paper);
  font-size: 1.06rem;
}

@media (min-width: 900px) {
  .executive-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.process-section {
  background: var(--paper);
  color: var(--ink);
}

.process-section .eyebrow,
.process-step span {
  color: #7d651f;
}

.process-section .section-heading p:not(.eyebrow),
.process-step p {
  color: #4b463a;
}

.process-section .section-heading h2,
.process-step h3 {
  color: var(--ink);
}

.process-timeline {
  display: grid;
  gap: 1px;
  background: rgba(8, 8, 11, 0.14);
  border: 1px solid rgba(8, 8, 11, 0.14);
}

.process-step {
  min-height: 250px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
}

.process-step span {
  display: block;
  margin-bottom: 1.4rem;
  font-weight: 900;
}

@media (min-width: 760px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-section {
  background: var(--ink);
}

.proof-layout {
  display: grid;
  gap: 2rem;
}

.quote-card {
  margin: 0;
  padding: 1.25rem;
}

.quote-card p {
  color: var(--paper);
  font-size: 1.04rem;
  font-weight: 700;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.proof-metrics {
  display: grid;
  gap: 1px;
  margin-top: 2.4rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-metrics div {
  min-height: 150px;
  padding: 1.2rem;
  background: var(--ink-2);
}

.proof-metrics strong {
  display: block;
  color: var(--gold);
  font-family: Anton, Impact, sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.proof-metrics span {
  display: block;
  max-width: 18rem;
  margin-top: 0.75rem;
  color: var(--soft);
  font-weight: 800;
}

@media (min-width: 900px) {
  .proof-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

.about-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 61, 129, 0.07), rgba(114, 167, 255, 0.06)),
    var(--ink-2);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-text {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.faq-section {
  background: #0d0d10;
}

.faq-grid {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 68px;
  padding: 1rem;
  text-align: left;
  color: var(--paper);
  font-weight: 900;
}

.faq-question svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-answer > p {
  padding: 0 1rem 1rem;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-section {
  padding-block: 5rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(216, 180, 81, 0.1), rgba(8, 8, 11, 0)),
    var(--ink);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.calendar-summary {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.calendar-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
  color: var(--soft);
  font-weight: 800;
}

.brief-form {
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.brief-form label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.field-tag {
  flex: 0 0 auto;
  border: 1px solid rgba(216, 180, 81, 0.36);
  border-radius: var(--radius);
  padding: 0.18rem 0.38rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.field-tag-soft {
  border-color: rgba(247, 240, 223, 0.16);
  color: rgba(222, 212, 189, 0.68);
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 8, 11, 0.84);
  color: var(--paper);
  padding: 0.9rem 0.95rem;
  outline: 0;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(222, 212, 189, 0.55);
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--gold);
}

.brief-form input[readonly] {
  color: var(--gold);
  background: rgba(216, 180, 81, 0.08);
}

.brief-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.form-submit {
  width: 100%;
  margin-top: 0.4rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-note.is-error {
  color: var(--danger);
}

.form-note.is-success {
  color: var(--signal);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .contact-section {
    padding-block: 7rem;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .brief-form {
    padding: 1.25rem;
  }

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

.site-footer {
  border-top: 1px solid var(--line);
  background: #050507;
  padding-block: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  color: var(--muted);
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  max-width: 26rem;
  margin: 0.9rem 0 0;
}

.site-footer nav,
.footer-meta {
  display: grid;
  gap: 0.6rem;
}

.site-footer nav a,
.footer-meta a {
  color: var(--paper);
  font-weight: 800;
}

.site-footer nav a:hover,
.footer-meta a:hover {
  color: var(--gold);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.35fr 0.65fr 0.8fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.js-ready .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.js-ready .reveal:nth-child(3) {
  transition-delay: 120ms;
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.05rem;
  }

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

  .section-heading h2,
  .executive-copy h2,
  .proof-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }
}
