:root {
  --bg: #131114;
  --surface: #1e1c1f;
  --surface-2: #2d2d2f;
  --ink: #e1e1e1;
  --muted: #c3c3c5;
  --line: #505255;
  --blue: #d70b68;
  --teal: #66696b;
  --green: #d70b68;
  --dark: #090809;
  --icon-bg: #3e3e41;
  --icon-ink: #d70b68;
  --shadow: 0 24px 70px rgba(19, 17, 20, 0.18);
  --radius: 8px;
  color-scheme: light;
}

body.theme-dark {
  --bg: #090809;
  --surface: #131114;
  --surface-2: #1e1c1f;
  --ink: #e1e1e1;
  --muted: #929293;
  --line: #2d2d2f;
  --blue: #d70b68;
  --teal: #66696b;
  --green: #d70b68;
  --dark: #090809;
  --icon-bg: #1e1c1f;
  --icon-ink: #d70b68;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 11, 104, 0.14), transparent 34rem),
    radial-gradient(circle at top right, rgba(107, 22, 52, 0.16), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1160px) / 2));
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  border-bottom: 1px solid rgba(62, 62, 65, 0.48);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(225, 225, 225, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark), #131114);
  color: #e1e1e1;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.site-nav .nav-cta {
  color: #e1e1e1;
  background: var(--blue);
  border-radius: var(--radius);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-bot {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 32px;
  margin-right: -2px;
  color: #d70b68;
  filter: drop-shadow(0 0 10px rgba(215, 11, 104, 0.38));
  animation: nav-bot-idle 2.8s ease-in-out infinite;
  pointer-events: none;
}

.nav-bot-head,
.nav-bot-body,
.nav-bot-arm {
  position: absolute;
  display: block;
}

.nav-bot-head {
  top: 2px;
  left: 5px;
  width: 19px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 6px 6px 5px 5px;
  background: rgba(19, 17, 20, 0.94);
}

.nav-bot-head::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: currentColor;
  transform: translateX(-50%);
}

.nav-bot-head::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(215, 11, 104, 0.7);
  transform: translateX(-50%);
}

.nav-bot-head span {
  position: absolute;
  top: 5px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #e1e1e1;
}

.nav-bot-head span:first-child {
  left: 5px;
}

.nav-bot-head span:last-child {
  right: 5px;
}

.nav-bot-body {
  top: 18px;
  left: 9px;
  width: 12px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background: rgba(19, 17, 20, 0.94);
}

.nav-bot-arm {
  top: 19px;
  right: -5px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: left center;
  transform: rotate(-16deg);
  animation: nav-bot-point 1.4s ease-in-out infinite;
}

.nav-bot-arm::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translateY(-50%);
}

@keyframes nav-bot-idle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes nav-bot-point {
  0%,
  100% {
    transform: rotate(-16deg) translateX(0);
  }

  50% {
    transform: rotate(-10deg) translateX(2px);
  }
}

.header-hire {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 14px;
  animation: cta-smash-pulse 2.4s ease-in-out infinite;
}

@keyframes cta-smash-pulse {
  0%,
  58%,
  100% {
    box-shadow: none;
    filter: brightness(1);
  }

  68% {
    box-shadow:
      0 0 0 3px rgba(215, 11, 104, 0.18),
      0 0 22px rgba(215, 11, 104, 0.48);
    filter: brightness(1.12);
  }
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 11, 104, 0.82);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

.theme-svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  color: var(--icon-ink);
}

.sun-icon {
  display: none;
}

body.theme-dark .moon-icon {
  display: none;
}

body.theme-dark .sun-icon {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 8, 9, 0.99), rgba(9, 8, 9, 0.88)),
    radial-gradient(circle at 72% 42%, rgba(215, 11, 104, 0.24), transparent 24rem),
    radial-gradient(circle at 18% 20%, rgba(107, 22, 52, 0.3), transparent 24rem),
    #090809;
  color: #e1e1e1;
  isolation: isolate;
}

.hero::before {
  content: "SYSTEM";
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: -1;
  width: 100%;
  transform: translateX(-50%);
  color: transparent;
  background: linear-gradient(180deg, rgba(225, 225, 225, 0.18), rgba(225, 225, 225, 0.015));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(56px, 12vw, 146px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 72px;
  background: var(--bg);
  clip-path: polygon(0 42%, 36% 42%, 40% 78%, 60% 78%, 64% 42%, 100% 42%, 100% 100%, 0 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 660px;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(215, 11, 104, 0.42);
  border-radius: 999px;
  background: rgba(215, 11, 104, 0.12);
  color: #e1e1e1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e1e1e1;
  background: rgba(215, 11, 104, 0.18);
  box-shadow: 0 10px 28px rgba(215, 11, 104, 0.12);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 680px;
  color: #929293;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.button.primary {
  background: linear-gradient(135deg, #6b1634, #d70b68);
  color: #e1e1e1;
  border-color: rgba(225, 225, 225, 0.16);
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span,
.tags span,
.skill-list span,
.tools-wrap span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero .trust-list span {
  border-color: rgba(225, 225, 225, 0.14);
  background: rgba(225, 225, 225, 0.06);
  color: #929293;
  backdrop-filter: blur(12px);
}

.hero-proof {
  max-width: 560px;
  margin: 18px 0 0;
  color: #c3c3c5;
  font-size: 15px;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 0;
  border: 1px solid rgba(225, 225, 225, 0.16);
  border-radius: var(--radius);
  background: rgba(19, 17, 20, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 11, 104, 0.62);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
}

.hero-portrait-panel {
  min-height: 590px;
  overflow: visible;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-portrait-panel::before {
  content: "";
  position: absolute;
  inset: 7% 5% 5% 18%;
  z-index: -1;
  border: 1px solid rgba(225, 225, 225, 0.13);
  border-radius: 28px 8px 28px 8px;
  background:
    linear-gradient(135deg, rgba(225, 225, 225, 0.1), rgba(225, 225, 225, 0.025)),
    radial-gradient(circle at 54% 34%, rgba(215, 11, 104, 0.28), transparent 18rem);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  clip-path: polygon(0 0, 92% 0, 100% 9%, 100% 100%, 7% 100%, 0 91%);
}

.hero-photo-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(73%, 520px);
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 34px 56px rgba(0, 0, 0, 0.44));
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 9, 0.34), transparent 42%),
    linear-gradient(180deg, transparent 62%, rgba(9, 8, 9, 0.44));
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 14px;
  color: #929293;
  font-size: 13px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d70b68;
  box-shadow: 0 0 0 5px rgba(215, 11, 104, 0.22);
}

.workflow-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.flow-node {
  position: relative;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(225, 225, 225, 0.14);
  border-radius: var(--radius);
  background: rgba(19, 17, 20, 0.72);
  color: #e1e1e1;
  font-size: 13px;
  font-weight: 800;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.flow-node::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 4px;
  border-radius: 99px;
  background: #d70b68;
}

.hero-panel:hover .flow-node {
  transform: translateY(-2px);
  border-color: rgba(215, 11, 104, 0.54);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(225, 225, 225, 0.12);
  transition: transform 700ms ease, filter 300ms ease;
  filter: saturate(0.92) contrast(1.05);
}

.hero-panel:hover .hero-image {
  transform: scale(1.015);
  filter: saturate(1.04) contrast(1.02);
}

.hero-portrait {
  aspect-ratio: 4 / 5;
  height: min(72vh, 660px);
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  border: 0;
  border-radius: 12px 12px 0 0;
  filter: saturate(0.88) contrast(1.08) brightness(0.9);
}

.hero-portrait-panel:hover .hero-portrait {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1.09) brightness(0.94);
}

.tool-strip {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.tools-wrap {
  display: flex;
  gap: 10px;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tools-wrap::-webkit-scrollbar {
  display: none;
}

.audience-section {
  background:
    radial-gradient(circle at 78% 0, rgba(215, 11, 104, 0.12), transparent 22rem),
    var(--bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), var(--surface)),
    var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 11, 104, 0.54);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.compact p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-cta {
  margin-top: 8px;
}

.compact {
  max-width: 480px;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-step,
.testimonial-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), var(--surface)),
    var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.process-step::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(215, 11, 104, 0.22), transparent 34%, rgba(102, 105, 107, 0.12));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-card:hover,
.project-card:hover,
.process-step:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 11, 104, 0.54);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.service-card:hover::before,
.process-step:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.service-card:hover .card-icon,
.process-step:hover span {
  transform: translateY(-2px) scale(1.04);
  background: var(--blue);
  color: #e1e1e1;
}

.card-icon,
.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--icon-bg);
  color: var(--icon-ink);
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.service-card p,
.process-step p,
.project-content p,
.about-copy p,
.final-cta p {
  color: var(--muted);
}

.muted-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(215, 11, 104, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(102, 105, 107, 0.08), transparent 22rem),
    var(--surface-2);
}

.project-grid {
  display: grid;
  gap: 22px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project-image {
  min-height: 300px;
  background: #131114;
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(9, 8, 9, 0.44));
  pointer-events: none;
}

.project-image {
  position: relative;
}

.image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(225, 225, 225, 0.16);
  border-radius: 999px;
  background: rgba(9, 8, 9, 0.72);
  color: #e1e1e1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 700ms ease, filter 300ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.project-content {
  padding: 30px;
}

.project-snapshot {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.project-snapshot p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-2) 72%, transparent);
}

.project-snapshot strong {
  color: var(--ink);
}

.project-label,
.status {
  display: inline-flex;
  margin-bottom: 14px;
  color: #929293;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tags,
.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d70b68;
  transform: translateY(-50%);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

.proof-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1;
  align-self: start;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 700ms ease, filter 300ms ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 11, 104, 0.48);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.proof-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}

.proof-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dark-section {
  background:
    linear-gradient(90deg, rgba(9, 8, 9, 0.98), rgba(9, 8, 9, 0.9)),
    radial-gradient(circle at 72% 20%, rgba(215, 11, 104, 0.22), transparent 20rem),
    var(--dark);
  color: #e1e1e1;
}

.dark-section .eyebrow {
  color: #929293;
}

.dark-section p {
  color: #929293;
}

.case-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.case-list span {
  padding: 16px;
  border: 1px solid rgba(225, 225, 225, 0.14);
  border-radius: var(--radius);
  background: rgba(19, 17, 20, 0.74);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.deliverables-section {
  background:
    radial-gradient(circle at 12% 0, rgba(215, 11, 104, 0.12), transparent 22rem),
    var(--bg);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.deliverable-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), var(--surface)),
    var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(215, 11, 104, 0.2), transparent 38%, rgba(102, 105, 107, 0.12));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.deliverable-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 11, 104, 0.54);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.deliverable-card:hover::before {
  opacity: 1;
}

.deliverable-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--icon-bg);
  color: var(--icon-ink);
  font-weight: 900;
}

.deliverable-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
  animation: testimonial-scroll 82s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 clamp(280px, 31vw, 390px);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

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

.testimonial-card h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.rating {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(215, 11, 104, 0.52);
  border-radius: 999px;
  background: rgba(215, 11, 104, 0.22);
  color: #e1e1e1;
  font-size: 13px;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  transition: transform 700ms ease, filter 300ms ease;
}

.about-photo:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 11, 104, 0.54);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.about-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 94%, transparent) 0%, var(--surface-2) 100%),
    radial-gradient(circle at 50% 0, rgba(215, 11, 104, 0.2), transparent 28rem);
}

.final-cta .container {
  max-width: 760px;
}

.availability-line {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(215, 11, 104, 0.38);
  border-radius: 999px;
  background: rgba(215, 11, 104, 0.12);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.contact-actions .button span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-right: 8px;
  place-items: center;
  border-radius: 6px;
  background: rgba(225, 225, 225, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.contact-actions .button.secondary span {
  background: var(--icon-bg);
  color: var(--icon-ink);
}

.site-footer {
  padding: 28px 0;
  background: var(--dark);
  color: #e1e1e1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin-bottom: 0;
  color: #929293;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  color: #e1e1e1;
  font-weight: 800;
}

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

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

@media (max-width: 980px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-grid,
  .project-card,
  .proof-grid,
  .case-grid,
  .about-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-marquee {
    width: calc(100vw - 28px);
    margin-left: calc((100% - 100vw + 28px) / 2);
  }

  .hero-grid {
    gap: 34px;
    min-height: 0;
  }

  .hero-portrait-panel {
    min-height: 640px;
  }

  .hero-photo-frame {
    width: min(76%, 520px);
  }

  .service-grid,
  .process-grid,
  .audience-cards,
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-image {
    min-height: 260px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-photo {
    max-width: 420px;
  }
}

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

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: auto;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-bot {
    display: none;
  }

  .header-hire {
    width: auto;
    min-height: 42px;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero::before {
    top: 96px;
    font-size: 52px;
  }

  .hero::after {
    height: 44px;
  }

  .hero-portrait-panel {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-portrait-panel::before {
    inset: 0 0 64px;
    border-radius: var(--radius);
    clip-path: none;
  }

  .hero-photo-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-portrait {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-position: center top;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

.header-actions .header-hire,
  .header-actions .theme-toggle,
  .header-actions .nav-toggle {
    width: auto;
    flex: 0 0 auto;
  }

  .workflow-visual,
  .service-grid,
  .process-grid,
  .audience-cards,
  .deliverables-grid,
  .case-list {
    grid-template-columns: 1fr;
  }

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

  .testimonial-track {
    gap: 14px;
    animation-duration: 70s;
  }

  .testimonial-card {
    flex-basis: min(82vw, 330px);
    min-height: 270px;
  }

  .project-content {
    padding: 22px;
  }

  .project-image {
    min-height: 220px;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .proof-gallery {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .button:hover,
  .hero-panel:hover,
  .service-card:hover,
  .project-card:hover,
  .process-step:hover,
  .audience-card:hover,
  .deliverable-card:hover,
  .testimonial-card:hover,
  .proof-card:hover,
  .about-photo:hover {
    transform: none;
    box-shadow: inherit;
  }

  .hero-panel:hover .hero-image,
  .hero-panel:hover .flow-node,
  .project-card:hover .project-image img,
  .proof-card:hover img,
  .about-photo:hover img,
  .service-card:hover .card-icon,
  .process-step:hover span,
  .audience-card:hover {
    transform: none;
    filter: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .testimonial-track {
    width: auto;
    transform: none;
    animation: none;
    overflow-x: auto;
  }

  .nav-bot,
  .nav-bot-arm,
  .header-hire {
    animation: none;
  }
}
