:root {
  --purple-950: #180022;
  --purple-900: #240033;
  --purple-800: #3f0558;
  --purple-700: #5a0875;
  --purple-600: #7d0c9d;
  --blue: #6d28ff;
  --accent: #c026d3;
  --accent-bright: #e14fe8;
  --grad-hbo: linear-gradient(135deg, var(--purple-700) 0%, var(--blue) 48%, var(--accent) 100%);
  --paper: #f5f0f7;
  --white: #fff;
  --ink: #170c1c;
  --muted: #a994b1;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(23, 12, 28, 0.16);
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --heading: "Inter", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--purple-950);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--accent);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}

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

.site-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle, rgba(192, 38, 211, 0.32) 0%, transparent 42%),
    radial-gradient(circle, var(--blue) 0%, transparent 62%);
  filter: blur(28px);
  transition:
    left 0.5s cubic-bezier(0.16, 0.8, 0.24, 1),
    top 0.5s cubic-bezier(0.16, 0.8, 0.24, 1),
    opacity 0.6s ease;
  will-change: left, top, opacity;
}

.cursor-glow.is-active {
  opacity: 0.28;
}

.site-header {
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 24px var(--gutter);
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  padding-block: 14px;
  border-bottom: 1px solid var(--line-light);
  background: rgba(24, 0, 34, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand-badge {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-hbo);
  color: var(--white);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: 0 0 34px rgba(109, 40, 255, 0.35);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand:hover .brand-badge {
  transform: rotate(12deg) scale(1.06);
}

.brand-text-group {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
}

.brand-mark-text {
  color: var(--white);
  font-family: var(--heading);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.9;
}

.brand-word {
  padding-bottom: 5px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--grad-hbo);
  border-color: transparent;
  color: var(--white);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(140px, 17vh, 210px) var(--gutter) clamp(45px, 7vh, 80px);
  background:
    radial-gradient(circle at 78% 22%, rgba(109, 40, 255, 0.55), transparent 32%),
    radial-gradient(circle at 72% 28%, rgba(141, 19, 177, 0.72), transparent 28%),
    radial-gradient(circle at 4% 86%, rgba(192, 38, 211, 0.4), transparent 36%),
    radial-gradient(circle at 10% 80%, rgba(111, 4, 143, 0.92), transparent 34%),
    linear-gradient(135deg, #4c0467 0%, #260039 52%, #170020 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.055) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%);
  background-size: 25vw 25vw;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-title {
  max-width: 1200px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(58px, 9.6vw, 150px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.hero-title span {
  color: var(--accent);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 500px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-top: clamp(42px, 7vh, 80px);
  padding-left: clamp(0px, 10vw, 165px);
}

.hero-bottom-copy {
  display: grid;
  gap: 26px;
}

.hero-bottom-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-cta {
  width: max-content;
}

.circle-link {
  display: flex;
  width: 126px;
  height: 126px;
  flex: 0 0 126px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(127, 212, 179, 0.7);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.circle-link:hover {
  transform: rotate(-8deg) scale(1.04);
  background: var(--grad-hbo);
  border-color: transparent;
  color: var(--white);
}

.circle-arrow {
  font-size: 22px;
}

.hero-monogram {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: -3vw;
  color: transparent;
  font-family: var(--heading);
  font-size: min(43vw, 620px);
  font-weight: 700;
  letter-spacing: -0.14em;
  line-height: 1;
  opacity: 0.12;
  -webkit-text-stroke: 1px var(--white);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(127, 212, 179, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: -18vw;
  right: 18vw;
  width: 44vw;
  height: 44vw;
}

.orbit-two {
  right: -9vw;
  bottom: -20vw;
  width: 42vw;
  height: 42vw;
}

.hero-index {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-index span:first-child {
  color: var(--accent);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 18px 0;
  background: var(--grad-hbo);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.ticker i {
  width: 7px;
  height: 7px;
  margin: 0 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

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

.section-pad {
  position: relative;
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.section-pad > * {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.section-label {
  display: grid;
  grid-template-columns: minmax(40px, 0.35fr) 1fr;
  gap: 20px;
  margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span:last-child::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  margin: 0 14px 3px 0;
  content: "";
  background: currentColor;
}

.section-label-dark {
  color: var(--purple-700);
}

.manifesto,
.method,
.innovation,
.contact {
  background: var(--purple-950);
}

.manifesto-grid,
.innovation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.display-heading {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(48px, 7.3vw, 108px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.display-heading span {
  color: var(--accent);
}

.manifesto-copy p,
.innovation-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.75;
}

.manifesto-copy .lead,
.innovation-copy .lead {
  color: var(--white);
  font-size: clamp(20px, 2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.section-cta {
  margin-top: clamp(48px, 7vw, 90px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line-light);
}

.principle {
  min-height: 270px;
  padding: 28px 28px 20px 0;
  border-right: 1px solid var(--line-light);
}

.principle + .principle {
  padding-left: 28px;
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.principle h3 {
  margin: 86px 0 14px;
  font-family: var(--heading);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.services,
.work,
.insights {
  background: var(--paper);
  color: var(--ink);
}

.services-heading,
.work-heading,
.insights-heading,
.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(50px, 10vw, 170px);
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.services-heading .display-heading span,
.work-heading .display-heading span,
.insights-heading .display-heading span {
  color: var(--purple-700);
}

.services-heading > p,
.work-heading > p,
.insights-heading > p,
.method-heading > p {
  margin: 0;
  color: #6c5c72;
  font-size: 16px;
  line-height: 1.7;
}

.service-list {
  border-top: 1px solid var(--line-dark);
}

.service-item {
  border-bottom: 1px solid var(--line-dark);
}

.service-item summary {
  display: grid;
  min-height: 108px;
  grid-template-columns: minmax(50px, 0.22fr) 1fr auto;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-number {
  color: var(--purple-700);
  font-size: 11px;
  font-weight: 800;
}

.service-name {
  font-family: var(--heading);
  font-size: clamp(25px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.service-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  content: "";
  transform: translate(-50%, -50%);
  background: var(--ink);
  transition: transform 0.25s ease;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-item[open] .service-icon {
  background: var(--accent);
}

.service-item[open] .service-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.service-content {
  display: grid;
  grid-template-columns: minmax(50px, 0.22fr) minmax(260px, 0.8fr) 1.2fr;
  gap: 24px;
  padding: 0 0 54px;
}

.service-content::before {
  content: "";
}

.service-content p {
  margin: 0;
  color: #6c5c72;
  font-size: 14px;
  line-height: 1.7;
}

.service-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  font-weight: 600;
}

.service-content li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--purple-600);
}

.method {
  overflow: hidden;
}

.method-heading {
  position: relative;
  z-index: 2;
}

.method-heading > p {
  color: rgba(255, 255, 255, 0.6);
}

.method-steps {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.method-steps li {
  display: grid;
  min-height: 138px;
  grid-template-columns: minmax(50px, 0.22fr) 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

.method-steps li:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(127, 212, 179, 0.06);
}

.step-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.method-steps div {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) 1fr;
  align-items: center;
  gap: 40px;
}

.method-steps h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.method-steps p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.method-orbit {
  position: absolute;
  top: 0;
  right: -20vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(127, 212, 179, 0.08);
  border-radius: 50%;
}

.method-orbit::before,
.method-orbit::after {
  position: absolute;
  border: 1px solid rgba(127, 212, 179, 0.08);
  border-radius: 50%;
  content: "";
}

.method-orbit::before {
  inset: 15%;
}

.method-orbit::after {
  inset: 30%;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 72px) clamp(20px, 3vw, 40px);
}

.case-card:nth-child(even) {
  margin-top: clamp(60px, 9vw, 140px);
}

.case-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--purple-900);
}

.case-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(24, 0, 34, 0.22));
  transition: opacity 0.35s ease;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.case-card a:hover img {
  transform: scale(1.035);
}

.case-card a:hover .case-arrow {
  transform: rotate(45deg);
  background: var(--accent);
}

.case-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
}

.case-meta span:first-child {
  color: var(--purple-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-meta h3 {
  margin: 5px 0 0;
  font-family: var(--heading);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.case-arrow,
.insight-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.client-heading {
  margin-top: clamp(100px, 14vw, 180px);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.subheading {
  margin: 0 0 16px;
  font-family: var(--heading);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.client-heading p {
  max-width: 520px;
  margin: 0;
  color: #6c5c72;
  font-size: 15px;
  line-height: 1.7;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.client-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: var(--white);
  transition:
    transform 0.25s ease,
    background 0.35s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  will-change: transform;
}

.client-card small {
  display: block;
  color: var(--purple-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-card h3 {
  margin: 46px 0 10px;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.client-card p {
  margin: 0;
  color: #6c5c72;
  font-size: 13px;
  line-height: 1.55;
}

.client-card:hover {
  background: var(--grad-hbo);
  border-color: transparent;
  color: var(--white);
}

.client-card:hover small {
  color: rgba(255, 255, 255, 0.8);
}

.client-card:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.client-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: clamp(80px, 12vw, 160px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.client-cloud li {
  display: grid;
  min-height: 118px;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #85778a;
  font-family: var(--heading);
  font-size: clamp(14px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.035em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.client-cloud li:hover {
  background: var(--purple-900);
  color: var(--accent);
}

.innovation {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 75%, rgba(114, 4, 147, 0.8), transparent 30%),
    linear-gradient(135deg, #250033, #16001e);
}

.innovation-grid {
  position: relative;
  z-index: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.tag-row span {
  padding: 9px 13px;
  border: 1px solid rgba(127, 212, 179, 0.34);
  border-radius: 999px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.innovation-symbol {
  position: absolute;
  top: -5vw;
  right: -8vw;
  display: flex;
  gap: 2vw;
  opacity: 0.13;
  transform: rotate(-16deg);
}

.innovation-symbol span {
  width: 12vw;
  height: 50vw;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.insight-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.insight-card:hover {
  background: var(--purple-900);
  color: var(--white);
}

.insight-category {
  color: var(--purple-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.insight-card:hover .insight-category {
  color: var(--accent);
}

.insight-card h3 {
  margin: 60px 0 30px;
  font-family: var(--heading);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.insight-arrow {
  margin-top: auto;
}

.insight-card:hover .insight-arrow {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: var(--purple-950);
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 60%, rgba(126, 10, 159, 0.72), transparent 34%),
    var(--purple-950);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: clamp(70px, 10vw, 170px);
}

.contact-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(54px, 8vw, 122px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.contact-title span {
  color: var(--accent);
}

.contact-intro {
  max-width: 520px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0 14px;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.submit-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 22px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: var(--grad-hbo);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(109, 40, 255, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(192, 38, 211, 0.4);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.5;
}

.contact-orbit {
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(127, 212, 179, 0.12);
  border-radius: 50%;
}

.site-footer {
  padding: 58px var(--gutter) 30px;
  background: var(--grad-hbo);
  color: var(--white);
}

.footer-top,
.footer-bottom {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer .brand-mark-text {
  color: var(--white);
}

.footer-top > p {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.back-top {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 0, 34, 0.22);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.privacy-note {
  max-width: var(--max-width);
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 0, 34, 0.16);
  color: rgba(23, 12, 28, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-transform: none;
}

.privacy-note strong {
  color: var(--purple-950);
}

.privacy-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.contact-form .consent-field > .consent-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

@media (max-width: 720px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .site-header > .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    justify-self: end;
    cursor: pointer;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 0.25s ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: 110px var(--gutter) 50px;
    opacity: 0;
    background: var(--purple-950);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    padding: 10px 0;
    font-family: var(--heading);
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 500;
    letter-spacing: -0.055em;
  }

  .mobile-menu nav a:hover {
    color: var(--accent);
  }

  .mobile-menu p {
    margin: auto 0 0;
    color: var(--muted);
    font-size: 13px;
  }

  .hero-bottom {
    padding-left: 0;
  }

  .manifesto-grid,
  .innovation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .innovation-copy {
    max-width: 680px;
    margin-left: 18vw;
  }

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

  .principle:nth-child(2) {
    border-right: 0;
  }

  .principle:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }

  .service-content {
    grid-template-columns: minmax(50px, 0.22fr) 1fr;
  }

  .service-content::before {
    display: none;
  }

  .service-content p {
    grid-column: 2;
  }

  .service-content ul {
    grid-column: 2;
  }

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

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

  .insight-list {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .cursor-glow,
  .hero-index {
    display: none;
  }

  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand-mark-text {
    font-size: 28px;
  }

  .brand-word {
    display: none;
  }

  .hero {
    min-height: 880px;
    align-items: center;
    padding-top: 140px;
  }

  .hero::before {
    background-size: 50vw 50vw;
  }

  .hero-title {
    font-size: clamp(56px, 17vw, 88px);
    line-height: 0.88;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .circle-link {
    width: 106px;
    height: 106px;
    flex-basis: 106px;
    justify-self: end;
  }

  .hero-monogram {
    top: 22%;
    right: -20vw;
    font-size: 72vw;
  }

  .orbit-one {
    top: -10vw;
    right: -30vw;
    width: 95vw;
    height: 95vw;
  }

  .section-label {
    grid-template-columns: 40px 1fr;
    margin-bottom: 52px;
  }

  .manifesto-grid,
  .services-heading,
  .work-heading,
  .insights-heading,
  .method-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .display-heading {
    font-size: clamp(46px, 15vw, 72px);
  }

  .manifesto-copy,
  .innovation-copy {
    margin-left: 0;
  }

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

  .principle,
  .principle + .principle {
    min-height: auto;
    padding: 26px 0 32px;
    border-right: 0;
    border-top: 1px solid var(--line-light);
  }

  .principle:first-child {
    border-top: 0;
  }

  .principle h3 {
    margin-top: 38px;
  }

  .service-item summary {
    min-height: 92px;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
  }

  .service-name {
    font-size: clamp(22px, 7vw, 30px);
  }

  .service-icon {
    width: 32px;
    height: 32px;
  }

  .service-content {
    display: block;
    padding: 0 0 40px 44px;
  }

  .service-content p {
    margin-bottom: 26px;
  }

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

  .method-steps li {
    grid-template-columns: 32px 1fr;
    padding: 30px 0;
  }

  .method-steps div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .case-card:nth-child(even) {
    margin-top: 0;
  }

  .case-image-wrap {
    aspect-ratio: 4 / 3;
  }

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

  .client-cloud {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-cloud li {
    min-height: 90px;
  }

  .innovation-symbol {
    top: 25%;
    opacity: 0.08;
  }

  .innovation-symbol span {
    width: 24vw;
    height: 100vw;
  }

  .contact-grid {
    gap: 70px;
  }

  .contact-title {
    font-size: clamp(52px, 16vw, 78px);
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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