@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --ink: #17131c;
  --ink-soft: #625b68;
  --night: #120d18;
  --night-soft: #1d1625;
  --paper: #f5f3f0;
  --white: #ffffff;
  --purple: #7523e7;
  --purple-deep: #5613b7;
  --purple-light: #a96cff;
  --lavender: #e7d9ff;
  --line: rgba(23, 19, 28, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
  --shell: min(1340px, calc(100vw - 64px));
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(80px, 8vw, 128px) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--purple-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--lavender);
}

.section-index {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 260ms var(--ease),
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    transform 260ms var(--ease);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 260ms var(--ease);
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button--primary {
  background: var(--purple);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #8436ee;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(13, 9, 17, 0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.button--hero-contact {
  border-color: var(--white);
  background: var(--white);
  color: var(--purple-deep);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.button--hero-contact:hover,
.button--hero-contact:focus-visible {
  border-color: var(--lavender);
  background: var(--lavender);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.button--white {
  background: var(--white);
  color: var(--purple-deep);
}

.button--white:hover,
.button--white:focus-visible {
  background: var(--lavender);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 24px;
  transition: padding 320ms var(--ease);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: width 420ms var(--ease);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 142px;
  height: 42px;
  align-items: center;
  transition: width 280ms var(--ease);
}

.brand img {
  position: absolute;
  left: 0;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  transition:
    opacity 220ms var(--ease),
    transform 280ms var(--ease);
}

.brand__wordmark {
  width: 142px;
  opacity: 1;
}

.brand .brand__mark {
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: scale(0.84);
}

.site-header.is-scrolled .brand {
  width: 38px;
}

.site-header.is-scrolled .brand__wordmark {
  opacity: 0;
  transform: translateX(-8px) scale(0.96);
}

.site-header.is-scrolled .brand .brand__mark {
  opacity: 1;
  transform: scale(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(13, 10, 17, 0.76);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 10px 18px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.site-nav > a[aria-current="page"],
.site-nav__dropdown-trigger.is-current {
  background: rgba(117, 35, 231, 0.78);
  box-shadow: inset 0 0 0 1px rgba(194, 151, 255, 0.2);
  color: var(--white);
}

.site-nav__group {
  position: relative;
}

.site-nav__dropdown-trigger {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: inherit;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav__dropdown-trigger:hover,
.site-nav__dropdown-trigger:focus-visible,
.site-nav__group.is-open .site-nav__dropdown-trigger {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.site-nav__dropdown-trigger svg,
.site-nav__cloud svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-nav__dropdown-trigger svg {
  transition: transform 220ms var(--ease);
}

.site-nav__group.is-open .site-nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  width: 294px;
  padding: 8px;
  transform: translate(-50%, -8px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(17, 12, 23, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(22px);
  transition:
    visibility 200ms ease,
    opacity 200ms ease,
    transform 240ms var(--ease);
}

.site-nav__submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.site-nav__group.is-open .site-nav__submenu {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__submenu a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  background: rgba(117, 35, 231, 0.18);
}

.site-nav__submenu a[aria-current="page"] {
  background: rgba(117, 35, 231, 0.28);
  color: var(--white);
}

.site-nav__submenu a span {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: -0.025em;
}

.site-nav__submenu a small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 500;
}

@media (hover: hover) and (min-width: 761px) {
  .site-nav__group:hover .site-nav__submenu {
    visibility: visible;
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }
}

.site-nav .site-nav__featured {
  background: rgba(117, 35, 231, 0.42);
  color: var(--white);
}

.site-nav .site-nav__featured:hover,
.site-nav .site-nav__featured:focus-visible {
  background: rgba(117, 35, 231, 0.7);
}

.site-nav .site-nav__cloud {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(117, 35, 231, 0.16);
  box-shadow: inset 0 0 0 1px rgba(169, 108, 255, 0.12);
  color: rgba(220, 197, 255, 0.9);
}

.site-nav .site-nav__cloud:hover,
.site-nav .site-nav__cloud:focus-visible {
  background: rgba(117, 35, 231, 0.3);
  box-shadow: inset 0 0 0 1px rgba(169, 108, 255, 0.26);
  color: var(--white);
}

@media (min-width: 761px) and (max-width: 900px) {
  .site-nav > .site-nav__featured {
    display: none;
  }

  .site-nav > a,
  .site-nav__dropdown-trigger {
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .brand,
  .brand__wordmark {
    width: 116px;
  }

  .header-cta {
    gap: 8px;
    font-size: 0.68rem;
  }
}

.header-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-self: end;
  gap: 12px;
  padding: 0;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 220ms var(--ease);
}

.header-cta svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(169, 108, 255, 0.7);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.26);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--lavender);
}

.header-cta:hover svg,
.header-cta:focus-visible svg {
  border-color: var(--purple-light);
  background: rgba(117, 35, 231, 0.48);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(13, 10, 17, 0.68);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.menu-toggle span {
  position: absolute;
  width: 17px;
  height: 1px;
  background: var(--white);
  transition: transform 240ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

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

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

.site-header.is-scrolled {
  padding-top: 12px;
}

.site-header.is-scrolled .site-header__inner {
  position: relative;
  width: min(1120px, calc(100vw - 96px));
}

.site-header.is-scrolled .site-header__inner::before {
  position: absolute;
  z-index: -1;
  inset: -8px -14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(18, 13, 24, 0.84);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
  content: "";
}

/* Hero */
.hero {
  --pointer-x: 70%;
  --pointer-y: 45%;
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-items: flex-end;
  background: var(--night);
  color: var(--white);
}

.hero__media,
.hero__shade,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media video {
  object-fit: cover;
  object-position: center;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
  scale: 1.015;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 6, 14, 0.92) 0%, rgba(10, 6, 14, 0.68) 37%, rgba(10, 6, 14, 0.1) 70%),
    linear-gradient(0deg, rgba(8, 5, 12, 0.94) 0%, rgba(8, 5, 12, 0.12) 45%, rgba(8, 5, 12, 0.5) 100%);
}

.hero__glow {
  background: radial-gradient(500px circle at var(--pointer-x) var(--pointer-y), rgba(154, 77, 255, 0.15), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: max(760px, 100svh);
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 144px;
}

.hero__content {
  width: min(840px, 76vw);
  padding-bottom: clamp(56px, 7vh, 88px);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4rem, 7.6vw, 8.2rem);
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--purple-light);
  font-style: normal;
}

.hero__lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}

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

.hero__footer {
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.4fr auto;
  align-items: stretch;
  border-top: 1px solid var(--line-light);
}

.hero-stat {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 30px 18px 0;
  border-right: 1px solid var(--line-light);
}

.hero-stat + .hero-stat {
  padding-left: 30px;
}

.hero-stat__value {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
}

.hero-stat__label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.4;
}

.scroll-cue {
  display: flex;
  width: max-content;
  align-self: center;
  align-items: center;
  justify-self: end;
  gap: 14px;
  padding-left: 12px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--lavender);
  transform: translateY(-3px);
}

.scroll-cue svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(169, 108, 255, 0.7);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.26);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  animation: scroll-nudge 1.8s ease-in-out infinite;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.scroll-cue:hover svg,
.scroll-cue:focus-visible svg {
  border-color: var(--purple-light);
  background: rgba(117, 35, 231, 0.48);
}

/* Manifesto */
.manifesto {
  background: var(--paper);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 2.4fr;
  gap: clamp(48px, 8vw, 140px);
}

.display-copy {
  max-width: 1050px;
  margin-bottom: 48px;
  font-size: clamp(2.7rem, 4.5vw, 4.9rem);
  line-height: 1.02;
}

.display-copy span,
.section-heading h2 span,
.promise__heading h2 span {
  color: var(--purple);
}

.manifesto__copy {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-left: auto;
}

.manifesto__copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Services */
.services {
  overflow: hidden;
  background:
    linear-gradient(rgba(117, 35, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 35, 231, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 0% 100%, rgba(117, 35, 231, 0.1), transparent 32%),
    #e9e6eb;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.services__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 66px);
}

.services__heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.1vw, 5.3rem);
  line-height: 0.96;
}

.services__heading h2 span {
  color: var(--purple);
}

.services__heading > p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.terminal-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #111015;
  color: #f5f2f7;
  box-shadow:
    0 34px 90px rgba(31, 20, 39, 0.24),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
}

.terminal-window__bar {
  display: grid;
  min-height: 52px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #302d33, #252329);
}

.terminal-window__controls {
  display: flex;
  gap: 8px;
}

.terminal-window__controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.3) inset;
}

.terminal-window__controls span:nth-child(2) {
  background: #febc2e;
}

.terminal-window__controls span:nth-child(3) {
  background: #28c840;
}

.terminal-window__title,
.terminal-window__status,
.terminal-session,
.terminal-service code {
  font-family: "SFMono-Regular", "SF Mono", Monaco, Consolas, "Liberation Mono", monospace;
}

.terminal-window__title {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.69rem;
}

.terminal-window__status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.terminal-window__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55d768;
  box-shadow: 0 0 10px rgba(85, 215, 104, 0.7);
}

.terminal-window__body {
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 90% 5%, rgba(117, 35, 231, 0.13), transparent 28%),
    #111015;
}

.terminal-session {
  padding: 2px 4px clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  line-height: 1.8;
}

.terminal-session p {
  margin-bottom: 0;
}

.terminal-prompt {
  color: #84df8f;
}

.terminal-path {
  color: var(--purple-light);
}

.terminal-output {
  color: rgba(255, 255, 255, 0.44);
}

.terminal-output::before {
  margin-right: 10px;
  color: rgba(169, 108, 255, 0.7);
  content: "›";
}

.terminal-success {
  color: #84df8f;
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 1.05em;
  margin-left: 7px;
  transform: translateY(2px);
  background: rgba(255, 255, 255, 0.78);
  animation: terminal-blink 1.1s steps(1) infinite;
}

.terminal-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terminal-service {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px 28px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 220ms var(--ease);
}

.terminal-service:first-child {
  padding-left: 4px;
}

.terminal-service:last-child {
  padding-right: 4px;
  border-right: 0;
}

.terminal-service:hover {
  background: rgba(117, 35, 231, 0.06);
}

.terminal-service code {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  white-space: normal;
}

.terminal-service code span {
  margin-right: 8px;
  color: #84df8f;
}

.terminal-service h3 {
  max-width: 300px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.02;
}

.terminal-service p {
  max-width: 360px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  line-height: 1.7;
}

.terminal-service__tag {
  width: max-content;
  padding-top: 13px;
  border-top: 1px solid rgba(132, 223, 143, 0.42);
  color: #84df8f;
  font-family: "SFMono-Regular", "SF Mono", Monaco, Consolas, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Pathways */
.pathways {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(117, 35, 231, 0.07), transparent 24%),
    #f7f5f2;
}

.pathways__heading {
  margin-bottom: clamp(40px, 5vw, 62px);
}

.pathways__heading h2 {
  max-width: 1180px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.1vw, 4.25rem);
  line-height: 1;
}

.pathways__heading h2 span {
  color: var(--purple);
}

.pathways__heading > div:last-child > p {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.pathway-card {
  --pathway-accent: var(--purple);
  position: relative;
  display: flex;
  min-height: 410px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow:
    0 18px 46px rgba(117, 35, 231, 0.1),
    0 5px 18px rgba(86, 19, 183, 0.07);
  transition:
    border-color 280ms var(--ease),
    box-shadow 280ms var(--ease),
    transform 280ms var(--ease);
}

.pathway-card:hover,
.pathway-card:focus-visible {
  border-color: rgba(117, 35, 231, 0.3);
  box-shadow:
    0 26px 64px rgba(117, 35, 231, 0.17),
    0 8px 24px rgba(86, 19, 183, 0.1);
  transform: translateY(-4px);
}

.pathway-card--purple {
  --pathway-accent: var(--purple);
}

.pathway-card--dark {
  --pathway-accent: var(--ink);
}

.pathway-card--light {
  --pathway-accent: #91899a;
}

.pathway-card--cloud {
  --pathway-accent: var(--purple-light);
}

.pathway-card__media {
  position: relative;
  height: 232px;
  overflow: hidden;
  background: var(--night);
}

.pathway-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 14, 0.06), rgba(10, 7, 14, 0.32));
  content: "";
}

.pathway-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms var(--ease),
    transform 700ms var(--ease);
}

.pathway-card--light .pathway-card__media img {
  object-position: center 56%;
}

.pathway-card--cloud .pathway-card__media {
  display: grid;
  background:
    radial-gradient(circle at 18% 84%, rgba(117, 35, 231, 0.65), transparent 38%),
    linear-gradient(145deg, #100b15, #261238);
  place-items: center;
}

.pathway-card--cloud .pathway-card__media img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  object-fit: contain;
}

.pathway-card:hover .pathway-card__media img,
.pathway-card:focus-visible .pathway-card__media img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.pathway-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.pathway-card__body > p {
  margin-bottom: 8px;
  color: var(--pathway-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-card__body h3 {
  margin-bottom: 28px;
  font-size: clamp(1.75rem, 2.2vw, 2.3rem);
  line-height: 1;
}

.pathway-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pathway-card__meta {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.pathway-card__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    border-color 240ms var(--ease),
    color 240ms var(--ease),
    transform 240ms var(--ease);
}

.pathway-card__arrow svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.pathway-card:hover .pathway-card__arrow,
.pathway-card:focus-visible .pathway-card__arrow {
  border-color: var(--pathway-accent);
  background: var(--pathway-accent);
  color: var(--white);
  transform: rotate(4deg);
}

/* Capability ticker */
.capability-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 23px 0;
}

.capability-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  animation: capability-marquee 36s linear infinite;
}

.capability-track span {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.capability-track i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
}

/* Portfolio */
.portfolio {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 35, 231, 0.08), transparent 26%),
    var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 2.4fr;
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 84px);
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.94;
}

.section-heading > div:last-child > p {
  max-width: 540px;
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 28, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(43, 28, 56, 0.04);
  transition:
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
}

.product-card:nth-child(7n + 1) {
  grid-column: span 2;
}

.product-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(117, 35, 231, 0.08), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(117, 35, 231, 0.11), transparent 28%);
  content: "";
  opacity: 0;
  transition: opacity 360ms var(--ease);
}

.product-card:hover {
  z-index: 1;
  border-color: rgba(117, 35, 231, 0.32);
  box-shadow: 0 28px 80px rgba(63, 32, 92, 0.14);
  transform: translateY(-5px);
}

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

.product-card__link {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: inherit;
  flex-direction: column;
  padding: 26px;
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__number {
  color: #8f8795;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.product-card__arrow {
  display: inline-grid;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition:
    color 280ms var(--ease),
    background 280ms var(--ease),
    border-color 280ms var(--ease),
    transform 280ms var(--ease);
}

.product-card__arrow svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.product-card:hover .product-card__arrow {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
  transform: rotate(5deg);
}

.product-card__brand {
  display: flex;
  min-height: 112px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 34px 22px 26px;
}

.product-card__brand img {
  width: auto;
  max-width: min(240px, 82%);
  height: auto;
  max-height: 62px;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  opacity: 0.9;
  transition: transform 360ms var(--ease);
}

.product-card:nth-child(7n + 1) .product-card__brand img {
  max-width: min(320px, 72%);
  max-height: 76px;
}

.product-card:hover .product-card__brand img,
.product-card:hover .company-wordmark {
  transform: scale(1.035);
}

.company-wordmark {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: transform 360ms var(--ease);
}

.product-card__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-card__bottom p {
  max-width: 350px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.product-card__cta {
  color: var(--purple-deep);
  font-size: 0.67rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Promise */
.promise {
  overflow: hidden;
  background:
    linear-gradient(145deg, #100b15 0%, #1b1026 62%, #241134 100%);
  color: var(--white);
}

.promise__orb {
  position: absolute;
  top: -28vw;
  right: -14vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(169, 108, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(117, 35, 231, 0.025),
    0 0 0 16vw rgba(117, 35, 231, 0.018);
}

.promise__orb::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 35, 231, 0.26), transparent 68%);
  content: "";
  filter: blur(20px);
}

.promise__heading {
  position: relative;
  max-width: none;
  margin-bottom: clamp(58px, 6vw, 84px);
  text-align: center;
}

.promise__heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  white-space: nowrap;
}

.promise__heading h2 span {
  color: var(--purple-light);
}

.promise__heading > p {
  max-width: none;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  white-space: nowrap;
}

.promise-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-light);
}

.promise-card {
  min-height: 280px;
  padding: 28px 32px 32px;
  border-right: 1px solid var(--line-light);
}

.promise-card:first-child {
  padding-left: 0;
}

.promise-card:last-child {
  border-right: 0;
}

.promise-card__icon {
  width: 34px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--purple-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.promise-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
}

.promise-card p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.65;
}

.promise__approach {
  position: relative;
  margin-top: clamp(46px, 5vw, 70px);
  text-align: center;
}

.promise__approach p {
  margin: 0 0 28px;
  color: var(--purple-light);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.promise__approach h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.6rem, 4.15vw, 4.6rem);
  line-height: 0.96;
  white-space: nowrap;
}

.promise__approach h2 span {
  color: var(--purple-light);
}

/* Process */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 280px;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li::after {
  position: absolute;
  top: 40px;
  right: -7px;
  z-index: 1;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--paper);
  content: "";
}

.process-list li:last-child::after {
  display: none;
}

.process-list li > span {
  display: block;
  margin-bottom: 66px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.65;
}

.promise .process-list {
  margin-top: clamp(48px, 5vw, 72px);
  border-color: var(--line-light);
}

.promise .process-list li {
  border-color: var(--line-light);
}

.promise .process-list li::after {
  border-color: var(--line-light);
  background: #1a1024;
}

.promise .process-list li > span {
  color: var(--purple-light);
}

.promise .process-list h3 {
  color: var(--white);
}

.promise .process-list p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

/* Project modal */
body.modal-open {
  overflow: hidden;
}

.project-modal {
  width: min(840px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--ink);
}

.project-modal[open] {
  animation: modal-in 300ms var(--ease) both;
}

.project-modal::backdrop {
  background: rgba(10, 7, 14, 0.76);
  backdrop-filter: blur(10px);
}

.project-modal__panel {
  position: relative;
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

.project-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition:
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.project-modal__close:hover,
.project-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(4deg);
}

.project-modal__close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.project-modal__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 16px 44px;
  align-items: end;
  padding: 38px 72px 36px 42px;
  background:
    radial-gradient(circle at 88% 0%, rgba(117, 35, 231, 0.5), transparent 38%),
    linear-gradient(145deg, #100b15, #28123a);
  color: var(--white);
}

.project-modal__intro > p:first-child {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-modal__intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.project-modal__intro h2 + p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.project-form {
  padding: 34px 42px 26px;
}

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

.project-form label {
  display: block;
  margin-bottom: 14px;
}

.project-form label > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.project-select {
  margin-bottom: 14px;
}

.project-select__label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.project-select__trigger {
  display: flex;
  width: 100%;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border: 1px solid rgba(23, 19, 28, 0.17);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.project-select__trigger:hover,
.project-select__trigger:focus-visible,
.project-select.is-open .project-select__trigger {
  border-color: var(--purple);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(117, 35, 231, 0.11);
}

.project-select.is-invalid .project-select__trigger {
  border-color: #a52b45;
  box-shadow: 0 0 0 3px rgba(165, 43, 69, 0.1);
}

.project-select__trigger svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms var(--ease);
}

.project-select.is-open .project-select__trigger svg {
  transform: rotate(180deg);
}

.project-select__menu {
  display: grid;
  max-height: 220px;
  gap: 3px;
  margin-top: 7px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid rgba(23, 19, 28, 0.14);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(42, 25, 59, 0.13);
}

.project-select__menu[hidden] {
  display: none;
}

.project-select__menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  text-align: left;
}

.project-select__menu button:hover,
.project-select__menu button:focus-visible,
.project-select__menu button[aria-selected="true"] {
  outline: 0;
  background: rgba(117, 35, 231, 0.1);
  color: var(--purple-deep);
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 19, 28, 0.17);
  border-radius: 9px;
  outline: 0;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.project-form input,
.project-form select {
  height: 46px;
  padding: 0 14px;
}

.project-form textarea {
  min-height: 100px;
  padding: 13px 14px;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(117, 35, 231, 0.11);
}

.project-form__trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.project-form__turnstile {
  width: 100%;
  min-height: 65px;
  margin: 2px 0 18px;
}

.project-form__turnstile .cf-turnstile {
  width: 100%;
}

.project-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 6px;
}

.project-form__footer > div {
  max-width: 300px;
}

.project-form__footer a {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--purple-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.project-form__footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.5;
}

.project-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.project-form__status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--purple-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.project-form__status.is-error {
  color: #a52b45;
}

@keyframes modal-in {
  from {
    transform: translateY(18px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Inner pages */
.inner-page {
  background: var(--paper);
}

.collection-hero,
.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(117, 35, 231, 0.24), transparent 28%),
    linear-gradient(140deg, #110c17, #201329);
  color: var(--white);
}

.collection-hero::after,
.about-hero::after {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.collection-hero--purple {
  background:
    radial-gradient(circle at 85% 10%, rgba(169, 108, 255, 0.3), transparent 30%),
    linear-gradient(140deg, #160d20, #2a1640);
}

.collection-hero--light {
  background:
    radial-gradient(circle at 85% 10%, rgba(169, 108, 255, 0.2), transparent 30%),
    linear-gradient(140deg, #161119, #2a232d);
}

.collection-hero__inner,
.about-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 540px;
  padding: 142px 0 76px;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
}

.breadcrumb-link svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.collection-hero__grid,
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 2.4fr;
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
}

.collection-hero .section-index,
.about-hero .section-index {
  color: rgba(255, 255, 255, 0.45);
}

.collection-hero h1,
.about-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 5.5vw, 5.7rem);
  line-height: 0.96;
}

.collection-hero__grid > div:last-child > p,
.about-hero__grid > div:last-child > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
}

.collection-note {
  background: var(--paper);
}

.collection-note__grid,
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) 2.4fr;
  gap: clamp(48px, 8vw, 140px);
}

.collection-note h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.collection-note__grid > div:last-child > p {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--purple-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.collection-products,
.team {
  background: #ebe7ed;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(44px, 5vw, 68px);
}

.compact-heading .eyebrow {
  margin-bottom: 14px;
}

.compact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
  line-height: 1;
}

.compact-heading > p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.homepage-team__intro {
  max-width: 440px;
}

.homepage-team {
  padding-bottom: clamp(48px, 5vw, 76px);
  background:
    radial-gradient(circle at 92% 20%, rgba(117, 35, 231, 0.055), transparent 30%),
    linear-gradient(180deg, #f7f5f2 0%, #f1edf3 30%, #ebe7ed 72%, #ebe7ed 100%);
}

.homepage-team + .services {
  padding-top: clamp(48px, 5vw, 76px);
}

.homepage-team__strapline {
  margin: 14px 0 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.homepage-team__intro p {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.homepage-team__intro .text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.more-collections {
  padding: 78px 0;
  background: var(--white);
}

.more-collections__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.more-collections__top h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.more-collections__top > span {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.more-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.more-collections__grid a {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.more-collections__grid a:first-child {
  padding-left: 0;
}

.more-collections__grid a:last-child {
  border-right: 0;
}

.more-collections__grid a:hover,
.more-collections__grid a:focus-visible {
  background: rgba(117, 35, 231, 0.04);
}

.more-collections__grid span {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.more-collections__grid strong {
  font-family: var(--display);
  font-size: 1.4rem;
}

.more-collections__grid svg {
  width: 18px;
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Technology page */
.technology-page {
  background: #f3f0f4;
}

.tech-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0d0912;
  color: var(--white);
}

.tech-hero__media,
.tech-hero__veil {
  position: absolute;
  inset: 0;
}

.tech-hero__media {
  transform: scale(1.02);
}

.tech-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: tech-hero-breathe 18s ease-in-out infinite alternate;
}

.tech-hero__veil {
  background:
    linear-gradient(90deg, rgba(9, 6, 12, 0.94) 0%, rgba(9, 6, 12, 0.77) 47%, rgba(9, 6, 12, 0.22) 82%),
    linear-gradient(180deg, rgba(8, 5, 11, 0.62) 0%, transparent 30%, rgba(8, 5, 11, 0.9) 100%);
}

.tech-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding-top: 132px;
}

.tech-hero__back {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  transition: color 220ms var(--ease);
}

.tech-hero__back:hover,
.tech-hero__back:focus-visible {
  color: var(--white);
}

.tech-hero__back svg,
.tech-hero__actions svg,
.tech-product-card__top svg,
.tech-bespoke .button svg,
.tech-brief .button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.tech-hero__content {
  width: min(920px, 80vw);
  margin-top: auto;
  padding: clamp(72px, 10vh, 120px) 0 clamp(54px, 7vh, 82px);
}

.tech-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.tech-hero h1 span {
  display: block;
  color: var(--purple-light);
}

.tech-hero__content > p {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.25vw, 1.06rem);
}

.tech-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.tech-hero__actions .button svg {
  transition: transform 220ms var(--ease);
}

.tech-hero__actions .button:hover svg,
.tech-hero__actions .button:focus-visible svg {
  transform: translateX(4px);
}

.tech-hero__explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  transition: color 220ms var(--ease);
}

.tech-hero__explore:hover,
.tech-hero__explore:focus-visible {
  color: var(--white);
}

.tech-hero__explore svg {
  transition: transform 220ms var(--ease);
}

.tech-hero__explore:hover svg,
.tech-hero__explore:focus-visible svg {
  transform: translateY(4px);
}

.tech-capabilities {
  background:
    radial-gradient(circle at 94% 10%, rgba(117, 35, 231, 0.08), transparent 24%),
    #f5f3f1;
}

.tech-capabilities__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.tech-capabilities__heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.3vw, 5.5rem);
  line-height: 0.94;
}

.tech-capabilities__heading h2 span {
  color: var(--purple);
}

.tech-capabilities__heading > p {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tech-capability-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  isolation: isolate;
}

.tech-capability-grid::before,
.tech-capability-grid::after {
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(117, 35, 231, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.tech-capability-grid::before {
  top: 50%;
  left: calc(50% - 38px);
  width: 76px;
  height: 1px;
}

.tech-capability-grid::after {
  top: calc(50% - 38px);
  left: 50%;
  width: 1px;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(117, 35, 231, 0.72), transparent);
}

.tech-capability-grid__hub {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(117, 35, 231, 0.32);
  border-radius: 50%;
  background: rgba(250, 248, 249, 0.94);
  box-shadow:
    0 0 0 8px rgba(117, 35, 231, 0.05),
    0 10px 35px rgba(63, 32, 92, 0.18);
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.tech-capability-grid__hub::before,
.tech-capability-grid__hub::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.tech-capability-grid__hub::before {
  inset: 8px;
  border: 1px solid rgba(117, 35, 231, 0.3);
}

.tech-capability-grid__hub::after {
  inset: -8px;
  border: 1px solid rgba(117, 35, 231, 0.16);
  animation: tech-capability-pulse 3.8s ease-in-out infinite;
}

.tech-capability-grid__hub i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 18px rgba(117, 35, 231, 0.9);
}

.tech-capability {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 310px;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 52px);
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(37, 24, 47, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 35, 231, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 60px rgba(43, 28, 56, 0.045);
  transition:
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
}

.tech-capability::before {
  position: absolute;
  top: -88px;
  right: -88px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(117, 35, 231, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(117, 35, 231, 0.025),
    0 0 0 48px rgba(117, 35, 231, 0.018);
  content: "";
  pointer-events: none;
  transition:
    border-color 320ms var(--ease),
    transform 500ms var(--ease);
}

.tech-capability:hover {
  border-color: rgba(117, 35, 231, 0.28);
  box-shadow: 0 28px 76px rgba(63, 32, 92, 0.11);
  transform: translateY(-4px);
}

.tech-capability:hover::before {
  border-color: rgba(117, 35, 231, 0.24);
  transform: scale(1.08);
}

.tech-capability__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(117, 35, 231, 0.22);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.06);
  color: var(--purple);
  place-items: center;
}

.tech-capability__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.tech-capability > div:last-child {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tech-capability span {
  margin-bottom: auto;
  padding-bottom: 42px;
  color: var(--purple-deep);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-capability h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 0.96;
}

.tech-capability p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@keyframes tech-capability-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

.tech-bespoke {
  background: #eae6ec;
}

.tech-bespoke__panel {
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  overflow: hidden;
  border-radius: 22px;
  background: var(--night);
  box-shadow: 0 36px 100px rgba(40, 23, 53, 0.15);
}

.tech-bespoke__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #e9e8e6;
}

.tech-bespoke__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 7, 13, 0.8));
  content: "";
  pointer-events: none;
}

.tech-bespoke__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.tech-bespoke__panel:hover .tech-bespoke__media img {
  transform: scale(1.025);
}

.tech-bespoke__copy {
  display: flex;
  padding: clamp(40px, 5vw, 70px);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
}

.tech-bespoke__copy > p:first-child {
  margin-bottom: 22px;
  color: var(--purple-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tech-bespoke__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 0.95;
}

.tech-bespoke__copy h2 span {
  color: var(--purple-light);
}

.tech-bespoke__copy h2 + p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.tech-bespoke__copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 34px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.tech-bespoke__copy li {
  padding: 15px 10px 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
}

.tech-bespoke__copy li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.tech-bespoke__copy li:nth-child(even) {
  padding-left: 18px;
}

.tech-bespoke__copy .button {
  align-self: flex-start;
}

.tech-products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 3%, rgba(117, 35, 231, 0.12), transparent 24%),
    #f2eef2;
}

.tech-products__mesh {
  position: absolute;
  top: -180px;
  right: -130px;
  width: min(680px, 55vw);
  height: min(680px, 55vw);
  border: 1px solid rgba(117, 35, 231, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(117, 35, 231, 0.025),
    0 0 0 140px rgba(117, 35, 231, 0.016);
  pointer-events: none;
}

.tech-products > .shell {
  position: relative;
  z-index: 1;
}

.tech-products__heading {
  margin-bottom: clamp(36px, 5vw, 58px);
}

.tech-products__heading > div {
  max-width: 980px;
}

.tech-products__heading h2 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 5.2vw, 5.5rem);
  line-height: 0.94;
}

.tech-products__heading h2 span {
  color: var(--purple);
}

.tech-products__heading > div > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tech-product-browser {
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 0%, rgba(117, 35, 231, 0.2), transparent 24%),
    #17121c;
  box-shadow: 0 34px 100px rgba(33, 18, 43, 0.18);
}

.tech-product-browser__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 6px 6px 18px;
}

.tech-product-browser__status {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  font-weight: 700;
}

.tech-product-filters {
  display: flex;
  gap: 8px;
  margin: 0;
  flex-wrap: wrap;
}

.tech-product-filters button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease);
}

.tech-product-filters button span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.6rem;
}

.tech-product-filters button:hover,
.tech-product-filters button:focus-visible {
  border-color: rgba(169, 108, 255, 0.7);
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.tech-product-filters button[aria-pressed="true"] {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.tech-product-filters button[aria-pressed="true"] span {
  color: rgba(255, 255, 255, 0.66);
}

.tech-product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tech-product-card {
  --product-accent: var(--purple);
  min-height: 340px;
  grid-column: span 1;
}

.tech-product-card--infrastructure {
  --product-accent: #a96cff;
}

.tech-product-card--events {
  --product-accent: #7256e8;
}

.tech-product-card--connected {
  --product-accent: #8e40ef;
}

.tech-product-card[hidden] {
  display: none;
}

.tech-product-card--featured {
  grid-column: span 2;
}

.tech-product-card > a {
  position: relative;
  display: flex;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  padding: clamp(22px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--product-accent) 9%, transparent), transparent 32%),
    #fbfafb;
  box-shadow: 0 18px 48px rgba(7, 4, 10, 0.12);
  flex-direction: column;
  transition:
    border-color 300ms var(--ease),
    background 300ms var(--ease),
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.tech-product-card > a::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
  content: "";
  opacity: 0.46;
  transform: scaleX(0.46);
  transition:
    opacity 300ms var(--ease),
    transform 400ms var(--ease);
}

.tech-product-card > a:hover,
.tech-product-card > a:focus-visible {
  border-color: color-mix(in srgb, var(--product-accent) 46%, transparent);
  outline: 0;
  background: var(--white);
  box-shadow: 0 28px 72px rgba(7, 4, 10, 0.22);
  transform: translateY(-5px);
}

.tech-product-card > a:hover::before,
.tech-product-card > a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.tech-product-card--featured > a {
  background:
    radial-gradient(circle at 82% 14%, rgba(169, 108, 255, 0.35), transparent 34%),
    linear-gradient(145deg, #211329, #100c15 70%);
}

.tech-product-card--featured > a:hover,
.tech-product-card--featured > a:focus-visible {
  background:
    radial-gradient(circle at 82% 14%, rgba(169, 108, 255, 0.44), transparent 36%),
    linear-gradient(145deg, #281634, #100c15 70%);
}

.tech-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--product-accent);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tech-product-card__top svg {
  transition: transform 220ms var(--ease);
}

.tech-product-card > a:hover .tech-product-card__top svg,
.tech-product-card > a:focus-visible .tech-product-card__top svg {
  transform: translate(3px, -3px);
}

.tech-product-card__brand {
  display: flex;
  min-height: 132px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.tech-product-card__brand img {
  width: auto;
  max-width: min(220px, 82%);
  height: auto;
  max-height: 58px;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  opacity: 0.9;
}

.tech-product-card--featured .tech-product-card__brand img {
  max-width: min(320px, 72%);
  max-height: 72px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.tech-product-card__brand strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.tech-product-card__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tech-product-card__bottom h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1;
}

.tech-product-card__bottom p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.tech-product-card__bottom > span {
  color: var(--product-accent);
  font-size: 0.64rem;
  font-weight: 700;
  white-space: nowrap;
}

.tech-product-card--featured .tech-product-card__top,
.tech-product-card--featured .tech-product-card__bottom > span {
  color: var(--purple-light);
}

.tech-product-card--featured .tech-product-card__bottom {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.tech-product-card--featured .tech-product-card__bottom h3 {
  color: var(--white);
}

.tech-product-card--featured .tech-product-card__bottom p {
  color: rgba(255, 255, 255, 0.62);
}

.tech-brief {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(117, 35, 231, 0.22), transparent 52%),
    var(--night);
  color: var(--white);
}

.tech-brief__orb {
  position: absolute;
  top: -34vw;
  right: -24vw;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(169, 108, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(117, 35, 231, 0.03),
    0 0 0 18vw rgba(117, 35, 231, 0.018);
  pointer-events: none;
}

.tech-brief__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: end;
}

.tech-brief__inner > div:first-child > p {
  margin-bottom: 20px;
  color: var(--purple-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tech-brief h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  line-height: 0.94;
}

.tech-brief h2 span {
  color: var(--purple-light);
}

.tech-brief__inner > div:last-child > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

@keyframes tech-hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@media (max-width: 1100px) {
  .tech-hero h1 {
    font-size: clamp(4rem, 8.5vw, 6.5rem);
  }

  .tech-capabilities__heading {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 54px;
  }

  .tech-capability {
    min-height: 340px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tech-capability span {
    padding-bottom: 34px;
  }

  .tech-bespoke__panel {
    min-height: 650px;
    grid-template-columns: 1fr 1fr;
  }

  .tech-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tech-product-card {
    grid-column: span 2;
  }

  .tech-product-card--featured {
    grid-column: span 4;
  }

  .tech-brief__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .tech-hero__inner {
    min-height: max(760px, 100svh);
    padding-top: 108px;
  }

  .tech-hero__media img {
    object-position: 62% center;
  }

  .tech-hero__veil {
    background:
      linear-gradient(90deg, rgba(9, 6, 12, 0.9), rgba(9, 6, 12, 0.42)),
      linear-gradient(180deg, rgba(8, 5, 11, 0.62), transparent 25%, rgba(8, 5, 11, 0.94) 100%);
  }

  .tech-hero__content {
    width: 100%;
    padding: 76px 0 52px;
  }

  .tech-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .tech-hero__content > p {
    max-width: 94%;
    font-size: 0.86rem;
  }

  .tech-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tech-hero__actions .button {
    width: 100%;
  }

  .tech-hero__explore {
    justify-content: center;
  }

  .tech-capabilities__heading,
  .tech-brief__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tech-capabilities__heading h2,
  .tech-products__heading h2,
  .tech-brief h2 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .tech-capability-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-capability-grid::before {
    top: 24px;
    bottom: 24px;
    left: 18px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(117, 35, 231, 0.5), transparent);
  }

  .tech-capability-grid::after,
  .tech-capability-grid__hub {
    display: none;
  }

  .tech-capability {
    min-height: 300px;
    padding: 28px;
    border-radius: 14px;
  }

  .tech-capability h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .tech-bespoke__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .tech-bespoke__media {
    min-height: 420px;
  }

  .tech-bespoke__copy {
    padding: 34px 26px 38px;
  }

  .tech-bespoke__copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .tech-bespoke__copy ul {
    grid-template-columns: 1fr;
  }

  .tech-bespoke__copy li,
  .tech-bespoke__copy li:nth-child(odd),
  .tech-bespoke__copy li:nth-child(even) {
    padding: 14px 0;
    border-right: 0;
  }

  .tech-bespoke__copy .button {
    width: 100%;
  }

  .tech-products__heading {
    margin-bottom: 32px;
  }

  .tech-product-browser {
    padding: 8px;
    border-radius: 18px;
  }

  .tech-product-browser__toolbar {
    align-items: flex-start;
    padding: 6px 4px 14px;
    flex-direction: column-reverse;
    gap: 14px;
  }

  .tech-product-filters {
    gap: 7px;
    width: calc(100% + 8px);
    margin-right: -8px;
    padding-right: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .tech-product-filters::-webkit-scrollbar {
    display: none;
  }

  .tech-product-filters button {
    flex: 0 0 auto;
  }

  .tech-product-grid {
    grid-template-columns: 1fr;
  }

  .tech-product-card,
  .tech-product-card--featured {
    min-height: 300px;
    grid-column: auto;
  }

  .tech-product-card > a {
    padding: 22px;
    border-radius: 12px;
  }

  .tech-product-card__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tech-brief__inner > div:last-child > p {
    margin-bottom: 26px;
  }

  .tech-brief .button {
    width: 100%;
  }
}

/* Freeware page */
.freeware-page {
  background: #f3eff6;
}

.freeware-page .site-header:not(.is-scrolled) .brand__wordmark {
  filter: brightness(0) saturate(100%);
}

.freeware-page .site-header:not(.is-scrolled) .header-cta {
  color: var(--ink);
}

.freeware-page .site-header:not(.is-scrolled) .header-cta svg {
  border-color: rgba(27, 21, 31, 0.35);
  background: rgba(255, 255, 255, 0.56);
}

.freeware-page .site-header:not(.is-scrolled) .header-cta:hover,
.freeware-page .site-header:not(.is-scrolled) .header-cta:focus-visible {
  color: var(--purple-deep);
}

.freeware-page .site-header:not(.is-scrolled) .header-cta:hover svg,
.freeware-page .site-header:not(.is-scrolled) .header-cta:focus-visible svg {
  border-color: var(--purple);
  background: rgba(117, 35, 231, 0.1);
}

.freeware-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 90%, rgba(117, 35, 231, 0.1), transparent 28%),
    linear-gradient(145deg, #fbf9fb 0%, #f0e9f6 68%, #e8ddf1 100%);
}

.freeware-hero::before {
  position: absolute;
  top: -24vw;
  right: -20vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid rgba(117, 35, 231, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(117, 35, 231, 0.025),
    0 0 0 16vw rgba(117, 35, 231, 0.014);
  content: "";
}

.freeware-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 35, 231, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 35, 231, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
  pointer-events: none;
}

.freeware-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  padding-top: 132px;
  padding-bottom: clamp(54px, 7vh, 82px);
  flex-direction: column;
}

.freeware-hero__back,
.freeware-hero__actions,
.freeware-hero__actions > a,
.freeware-next__actions,
.freeware-next__actions > a {
  display: flex;
  align-items: center;
}

.freeware-hero__back {
  align-self: flex-start;
  gap: 10px;
  margin-bottom: clamp(38px, 5vh, 62px);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.freeware-hero__back svg,
.freeware-hero__actions svg,
.freeware-tool-card__bottom svg,
.freeware-next__actions svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.freeware-hero__layout {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  flex: 1;
}

.freeware-hero__copy {
  padding: 20px 0;
}

.freeware-hero h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 7.2vw, 7.5rem);
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.freeware-hero h1 span {
  display: block;
  color: var(--purple);
}

.freeware-hero__copy > p {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.15vw, 1.03rem);
}

.freeware-hero__actions {
  gap: 24px;
}

.freeware-hero__actions .button svg {
  transition: transform 220ms var(--ease);
}

.freeware-hero__actions .button:hover svg,
.freeware-hero__actions .button:focus-visible svg {
  transform: translateY(4px);
}

.freeware-hero__visual {
  position: relative;
  min-height: clamp(560px, 65vh, 720px);
  align-self: stretch;
}

.freeware-hero__visual figure {
  position: absolute;
  inset: 0 0 22px 34px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(117, 35, 231, 0.14);
  border-radius: 28px;
  background: #17121b;
  box-shadow: 0 35px 100px rgba(40, 22, 54, 0.2);
}

.freeware-hero__visual figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 23, 0.03), rgba(18, 12, 23, 0.48)),
    linear-gradient(90deg, transparent 58%, rgba(117, 35, 231, 0.16));
  content: "";
}

.freeware-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 900ms var(--ease);
}

.freeware-hero__visual:hover img {
  transform: scale(1.025);
}

.freeware-hero__window {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -22px;
  width: min(380px, 82%);
  padding: 0 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(18, 13, 23, 0.94);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(15, 8, 21, 0.36);
  backdrop-filter: blur(16px);
}

.freeware-hero__window > div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 -22px 18px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.freeware-hero__window > div i,
.freeware-toolbox__bar > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6f67;
}

.freeware-hero__window > div i:nth-child(2),
.freeware-toolbox__bar > div i:nth-child(2) {
  background: #ffcb56;
}

.freeware-hero__window > div i:nth-child(3),
.freeware-toolbox__bar > div i:nth-child(3) {
  background: #51d174;
}

.freeware-hero__window > div span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.58rem;
}

.freeware-hero__window code {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
}

.freeware-hero__window code b {
  color: var(--purple-light);
}

.freeware-hero__window p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
}

.freeware-hero__window p span {
  color: #66e38b;
}

.freeware-hero__price {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: -24px;
  display: grid;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(117, 35, 231, 0.28);
  border-radius: 50%;
  background: rgba(249, 246, 250, 0.94);
  box-shadow:
    0 0 0 10px rgba(117, 35, 231, 0.055),
    0 18px 50px rgba(60, 33, 78, 0.18);
  text-align: center;
  place-content: center;
  backdrop-filter: blur(12px);
}

.freeware-hero__price strong {
  color: var(--purple);
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.freeware-hero__price span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.freeware-manifesto {
  background:
    radial-gradient(circle at 8% 86%, rgba(117, 35, 231, 0.07), transparent 26%),
    #faf8f8;
}

.freeware-manifesto__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.freeware-manifesto__heading > div > p,
.freeware-next__panel > div:first-child > p {
  margin-bottom: 18px;
  color: var(--purple-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.freeware-manifesto__heading h2,
.freeware-tools__heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: 0.94;
}

.freeware-manifesto__heading h2 span,
.freeware-tools__heading h2 span {
  color: var(--purple);
}

.freeware-tools__heading h2 span {
  display: block;
}

.freeware-manifesto__heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.freeware-manifesto__heading > p strong {
  color: var(--ink);
  font-weight: 800;
}

.freeware-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(37, 24, 47, 0.12);
}

.freeware-principles article {
  min-height: 290px;
  padding: clamp(30px, 4vw, 48px);
  border-right: 1px solid rgba(37, 24, 47, 0.12);
}

.freeware-principles article:first-child {
  padding-left: 0;
}

.freeware-principles article:last-child {
  padding-right: 0;
  border-right: 0;
}

.freeware-principles svg {
  width: 34px;
  height: 34px;
  margin-bottom: clamp(60px, 8vw, 106px);
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.freeware-principles h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.freeware-principles p {
  max-width: 340px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.freeware-tools {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(117, 35, 231, 0.18), transparent 52%),
    #120d18;
  color: var(--white);
}

.freeware-tools__orb {
  position: absolute;
  top: -34vw;
  right: -26vw;
  width: 74vw;
  height: 74vw;
  border: 1px solid rgba(169, 108, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 9vw rgba(117, 35, 231, 0.025),
    0 0 0 18vw rgba(117, 35, 231, 0.014);
}

.freeware-tools > .shell {
  position: relative;
  z-index: 1;
}

.freeware-tools__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(46px, 6vw, 74px);
}

.freeware-tools__heading h2 span {
  color: var(--purple-light);
}

.freeware-tools__heading > p {
  max-width: 300px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.freeware-toolbox {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(8, 6, 11, 0.45);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.2);
}

.freeware-toolbox__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 6px 8px 18px;
}

.freeware-toolbox__bar > div {
  display: flex;
  gap: 7px;
}

.freeware-toolbox__bar > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.59rem;
}

.freeware-toolbox__bar > strong {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.57rem;
  font-weight: 600;
}

.freeware-toolbox__bar > strong i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #51d174;
  box-shadow: 0 0 10px rgba(81, 209, 116, 0.7);
}

.freeware-tool-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.freeware-tool-card {
  min-height: 350px;
  grid-column: span 2;
}

.freeware-tool-card--wide {
  grid-column: span 3;
}

.freeware-tool-card:last-child:nth-child(6) {
  grid-column: 2 / span 4;
}

.freeware-tool-card > a {
  position: relative;
  display: flex;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(117, 35, 231, 0.11);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(117, 35, 231, 0.1), transparent 32%),
    #fbf9fb;
  color: var(--ink);
  flex-direction: column;
  transition:
    border-color 300ms var(--ease),
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.freeware-tool-card:nth-child(2) > a,
.freeware-tool-card:nth-child(4) > a {
  background:
    radial-gradient(circle at 0% 100%, rgba(117, 35, 231, 0.09), transparent 34%),
    #f1ecf5;
}

.freeware-tool-card > a::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  content: "";
  opacity: 0.45;
  transform: scaleX(0.4);
  transition:
    opacity 300ms var(--ease),
    transform 400ms var(--ease);
}

.freeware-tool-card > a:hover,
.freeware-tool-card > a:focus-visible {
  border-color: rgba(169, 108, 255, 0.48);
  outline: 0;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.freeware-tool-card > a:hover::before,
.freeware-tool-card > a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.freeware-tool-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--purple-deep);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.freeware-tool-card__top i {
  padding: 6px 9px;
  border: 1px solid rgba(117, 35, 231, 0.2);
  border-radius: 999px;
  background: rgba(117, 35, 231, 0.06);
  color: var(--purple);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.freeware-tool-card__brand {
  display: flex;
  min-height: 126px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 30px 22px;
}

.freeware-tool-card__brand img {
  width: auto;
  max-width: min(250px, 82%);
  height: auto;
  max-height: 62px;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  opacity: 0.88;
  transition: transform 360ms var(--ease);
}

.freeware-tool-card--wide .freeware-tool-card__brand img {
  max-width: min(330px, 72%);
  max-height: 76px;
}

.freeware-tool-card > a:hover .freeware-tool-card__brand img {
  transform: scale(1.035);
}

.freeware-tool-card__brand > strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.freeware-tool-card__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 24, 47, 0.12);
}

.freeware-tool-card__bottom h3 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1;
}

.freeware-tool-card__bottom p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.freeware-tool-card__bottom > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-deep);
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.freeware-tool-card__bottom > span svg {
  transition: transform 220ms var(--ease);
}

.freeware-tool-card > a:hover .freeware-tool-card__bottom > span svg,
.freeware-tool-card > a:focus-visible .freeware-tool-card__bottom > span svg {
  transform: translate(3px, -3px);
}

.freeware-next {
  background:
    radial-gradient(circle at 92% 10%, rgba(117, 35, 231, 0.08), transparent 26%),
    #eee9f0;
}

.freeware-next__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: end;
  padding: clamp(44px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(169, 108, 255, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, rgba(169, 108, 255, 0.25), transparent 30%),
    linear-gradient(145deg, #1c1026, #100c15 72%);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(43, 24, 57, 0.16);
}

.freeware-next__panel > div:first-child > p {
  color: var(--purple-light);
}

.freeware-next h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.94;
}

.freeware-next h2 span {
  color: var(--purple-light);
}

.freeware-next__panel > div:last-child > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.freeware-next__actions {
  gap: 22px;
}

.freeware-next__actions > a:not(.button) {
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.freeware-next__actions svg {
  transition: transform 220ms var(--ease);
}

.freeware-next__actions > a:hover svg,
.freeware-next__actions > a:focus-visible svg {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .freeware-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 42px;
  }

  .freeware-hero h1 {
    font-size: clamp(4rem, 7.8vw, 6rem);
  }

  .freeware-hero__price {
    right: -12px;
    width: 128px;
    height: 128px;
  }

  .freeware-manifesto__heading {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
  }

  .freeware-principles article {
    min-height: 310px;
  }

  .freeware-tool-card {
    grid-column: span 3;
  }

  .freeware-tool-card:last-child {
    grid-column: 2 / span 4;
  }

  .freeware-next__panel {
    grid-template-columns: 1fr 0.8fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .freeware-hero {
    min-height: auto;
  }

  .freeware-hero__grid-pattern {
    mask-image: linear-gradient(180deg, black, transparent 58%);
  }

  .freeware-hero__inner {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 58px;
  }

  .freeware-hero__back {
    margin-bottom: 48px;
  }

  .freeware-hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .freeware-hero__copy {
    padding: 0;
  }

  .freeware-hero h1 {
    font-size: clamp(3.6rem, 15vw, 5rem);
  }

  .freeware-hero__copy > p {
    font-size: 0.86rem;
  }

  .freeware-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .freeware-hero__actions .button {
    width: 100%;
  }

  .freeware-hero__visual {
    min-height: 560px;
  }

  .freeware-hero__visual figure {
    inset: 0 0 48px;
    border-radius: 18px;
  }

  .freeware-hero__window {
    bottom: 0;
    left: 12px;
    width: calc(100% - 24px);
  }

  .freeware-hero__price {
    top: 20px;
    right: -8px;
    width: 118px;
    height: 118px;
  }

  .freeware-hero__price strong {
    font-size: 2.9rem;
  }

  .freeware-manifesto__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  .freeware-manifesto__heading h2,
  .freeware-tools__heading h2,
  .freeware-next h2 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

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

  .freeware-principles article,
  .freeware-principles article:first-child,
  .freeware-principles article:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(37, 24, 47, 0.12);
  }

  .freeware-principles article:last-child {
    border-bottom: 0;
  }

  .freeware-principles svg {
    margin-bottom: 44px;
  }

  .freeware-tools__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .freeware-toolbox {
    padding: 8px;
    border-radius: 18px;
  }

  .freeware-toolbox__bar {
    grid-template-columns: 1fr auto;
    padding: 6px 4px 14px;
  }

  .freeware-toolbox__bar > span {
    display: none;
  }

  .freeware-tool-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .freeware-tool-card,
  .freeware-tool-card--wide,
  .freeware-tool-card:last-child,
  .freeware-tool-card:last-child:nth-child(6) {
    min-height: 330px;
    grid-column: auto;
  }

  .freeware-tool-card > a {
    padding: 22px;
    border-radius: 12px;
  }

  .freeware-tool-card__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .freeware-next__panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 26px;
    border-radius: 18px;
  }

  .freeware-next__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .freeware-next__actions .button {
    width: 100%;
  }

  .freeware-next__actions > a:not(.button) {
    justify-content: center;
  }
}

/* About page */
.about-story {
  background: var(--paper);
}

.about-story h2 {
  max-width: 900px;
  margin-bottom: 44px;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 1.02;
}

.about-story__copy {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  margin-left: auto;
}

.about-story__copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.person-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.person-card__portrait {
  position: relative;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(169, 108, 255, 0.34), transparent 25%),
    linear-gradient(150deg, #1b1322, #3b1c55);
  color: rgba(255, 255, 255, 0.82);
  place-items: center;
}

.person-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
  transition: filter 360ms var(--ease), transform 700ms var(--ease);
}

.person-card__portrait--josh img {
  object-position: center 34%;
}

.person-card__portrait--chris img {
  object-position: 54% 32%;
}

.person-card:hover .person-card__portrait img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.person-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.person-card__content > span {
  margin-bottom: auto;
  color: var(--purple);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
}

.person-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.person-card__toggle {
  display: none;
}

.person-card__bio {
  display: grid;
  grid-template-rows: 1fr;
}

.person-card__bio > div {
  min-height: 0;
  overflow: hidden;
}

.person-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.about-philosophy {
  background:
    radial-gradient(circle at 90% 0%, rgba(117, 35, 231, 0.22), transparent 26%),
    var(--night);
  color: var(--white);
}

.about-philosophy__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: end;
}

.about-philosophy h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: 1;
}

.about-philosophy__grid > div:last-child > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.about-philosophy__grid strong {
  display: block;
  margin: 24px 0 30px;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
}

/* Events */
.events-page {
  background: #f4f1f5;
}

.event-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0d0912;
  color: var(--white);
}

.event-hero__media,
.event-hero__veil {
  position: absolute;
  inset: 0;
}

.event-hero__media img,
.event-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-hero__media {
  transform: scale(1.015);
}

.event-hero__veil {
  background:
    linear-gradient(90deg, rgba(10, 7, 13, 0.92) 0%, rgba(10, 7, 13, 0.68) 44%, rgba(10, 7, 13, 0.16) 78%),
    linear-gradient(180deg, rgba(8, 5, 11, 0.58) 0%, transparent 32%, rgba(8, 5, 11, 0.78) 100%),
    radial-gradient(circle at 38% 48%, rgba(117, 35, 231, 0.22), transparent 36%);
}

.event-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: 128px 0 30px;
}

.event-hero__back {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.event-hero__back:hover,
.event-hero__back:focus-visible {
  color: var(--white);
}

.event-hero__back svg,
.event-hero__project svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.event-hero__content {
  display: flex;
  max-width: 1050px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 72px;
}

.event-hero__kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--lavender);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.event-hero__kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 16px rgba(169, 108, 255, 0.9);
}

.event-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  line-height: 0.88;
}

.event-hero h1 span {
  color: var(--purple-light);
}

.event-hero__content > p:not(.event-hero__kicker) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

.event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.event-hero__actions .button svg {
  transform: none;
}

.event-hero__project {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 100px;
  background: rgba(13, 9, 18, 0.28);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.event-hero__project:hover,
.event-hero__project:focus-visible {
  border-color: rgba(169, 108, 255, 0.76);
  background: rgba(117, 35, 231, 0.28);
}

.event-hero__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.event-hero__footer span {
  position: relative;
  padding: 22px 24px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.event-hero__footer span::before {
  position: absolute;
  top: -4px;
  left: 24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 12px rgba(169, 108, 255, 0.72);
  content: "";
}

.event-hero__footer span:first-child {
  padding-left: 0;
}

.event-hero__footer span:first-child::before {
  left: 0;
}

.event-hero__footer span:last-child {
  border-right: 0;
}

.event-product-reel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 70px) 0;
  border-top: 1px solid rgba(117, 35, 231, 0.1);
  background: #eeeaf1;
  color: var(--ink);
}

.event-product-reel__heading {
  margin-bottom: 28px;
}

.event-product-reel__heading > div:first-child > p {
  margin-bottom: 15px;
  color: var(--purple-deep);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-product-reel__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 3.6vw, 3.8rem);
  line-height: 0.96;
  white-space: nowrap;
}

.event-product-reel__heading h2 span {
  color: var(--purple);
}

.event-product-reel__aside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.event-product-reel__aside > p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.event-product-reel__carousel {
  position: relative;
}

.event-product-reel__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(117, 35, 231, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(49, 29, 65, 0.12);
  color: var(--purple-deep);
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(14px);
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.event-product-reel__control--previous {
  left: -23px;
}

.event-product-reel__control--next {
  right: -23px;
}

.event-product-reel__control:hover,
.event-product-reel__control:focus-visible {
  border-color: var(--purple);
  outline: 0;
  background: var(--purple);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.event-product-reel__control svg,
.event-product-reel__card-top svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.event-product-reel__viewport {
  overflow-x: auto;
  outline: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.event-product-reel__viewport::-webkit-scrollbar {
  display: none;
}

.event-product-reel__viewport:focus-visible {
  border-radius: 16px;
  box-shadow: 0 0 0 2px var(--purple);
}

.event-product-reel__track {
  display: flex;
  gap: 14px;
}

.event-product-reel__card {
  display: flex;
  min-height: 260px;
  flex: 0 0 min(350px, calc((100% - 28px) / 3));
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(23, 19, 28, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(49, 30, 64, 0.05);
  scroll-snap-align: start;
  transition:
    border-color 300ms var(--ease),
    background 300ms var(--ease),
    transform 300ms var(--ease);
}

.event-product-reel__card:hover,
.event-product-reel__card:focus-visible {
  border-color: rgba(117, 35, 231, 0.36);
  outline: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(68, 35, 94, 0.12);
  transform: translateY(-4px);
}

.event-product-reel__card-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-product-reel__card-top svg {
  margin-left: auto;
  color: var(--purple);
}

.event-product-reel__brand {
  display: flex;
  min-height: 105px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
}

.event-product-reel__brand img {
  width: auto;
  max-width: min(240px, 78%);
  height: auto;
  max-height: 52px;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  opacity: 0.9;
}

.event-product-reel__brand strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.event-product-reel__card > p {
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.event-intro {
  background:
    radial-gradient(circle at 94% 16%, rgba(117, 35, 231, 0.07), transparent 26%),
    #f5f3f0;
}

.event-intro__heading,
.event-products__heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.event-intro__heading h2,
.event-products__heading h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0.96;
}

.event-intro__heading h2 span,
.event-products__heading h2 span {
  color: var(--purple);
}

.event-intro__heading > div > p,
.event-products__heading > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.event-intro__heading--solo {
  grid-template-columns: minmax(0, 1fr);
}

.event-intro__heading--solo > div {
  max-width: 1080px;
}

.event-intro__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.52fr);
  gap: 14px;
}

.event-intro__image {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--night);
}

.event-intro__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 7, 13, 0.84));
  content: "";
}

.event-intro__image img {
  width: 100%;
  height: 100%;
  transition:
    opacity 260ms var(--ease),
    transform 900ms var(--ease);
  object-fit: cover;
}

.event-intro__stage.is-changing .event-intro__image img {
  opacity: 0;
  transform: scale(1.018);
}

.event-intro__image:hover img {
  transform: scale(1.025);
}

.event-intro__image figcaption {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 34px;
  left: 38px;
}

.event-intro__image figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-light);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-intro__image figcaption strong {
  max-width: 520px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.event-intro__points {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.event-intro__points article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    background 360ms var(--ease),
    color 360ms var(--ease),
    transform 360ms var(--ease);
}

.event-intro__points article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.event-intro__points article:not(.is-active):hover {
  background: rgba(239, 230, 250, 0.94);
}

.event-intro__points article:focus-visible {
  z-index: 1;
  outline: 3px solid var(--purple);
  outline-offset: -3px;
}

.event-intro__points article.is-active {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
}

.event-intro__points article.is-active::after {
  opacity: 1;
  animation: event-intro-progress 5600ms linear forwards;
}

.event-intro__stage:hover .event-intro__points article.is-active::after,
.event-intro__stage:focus-within .event-intro__points article.is-active::after {
  animation-play-state: paused;
}

.event-intro__points article > span {
  margin-bottom: auto;
  padding-bottom: 28px;
  color: var(--purple);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.event-intro__points article.is-active > span {
  color: rgba(255, 255, 255, 0.68);
}

.event-intro__points h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  transition: color 360ms var(--ease);
}

.event-intro__points p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  transition: color 360ms var(--ease);
}

.event-intro__points article.is-active p {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes event-intro-progress {
  to {
    transform: scaleX(1);
  }
}

.event-capabilities {
  overflow: hidden;
  background:
    linear-gradient(145deg, #0f0b14 0%, #17101f 64%, #22132f 100%);
  color: var(--white);
}

.event-capabilities__glow {
  position: absolute;
  top: -28vw;
  right: -20vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(169, 108, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(117, 35, 231, 0.025),
    0 0 0 16vw rgba(117, 35, 231, 0.018);
  pointer-events: none;
}

.event-capabilities__heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.45fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 82px);
}

.event-capabilities__heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  line-height: 0.94;
}

.event-capabilities__heading h2 span {
  color: var(--purple-light);
}

.event-capabilities__heading > p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.event-capability-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.event-capability {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 340px;
  grid-column: span 5;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #17101f;
  transition:
    border-color 320ms var(--ease),
    transform 320ms var(--ease);
}

.event-capability::before,
.event-capability::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.event-capability::before {
  inset: -8px;
  background-image: var(--capability-image);
  background-position: var(--capability-position, center);
  background-size: cover;
  filter: blur(2.5px) saturate(0.78);
  transform: scale(1.035);
  transition:
    filter 520ms var(--ease),
    transform 700ms var(--ease);
}

.event-capability::after {
  background:
    linear-gradient(180deg, rgba(13, 8, 18, 0.42) 0%, rgba(13, 8, 18, 0.76) 62%, rgba(13, 8, 18, 0.94) 100%),
    linear-gradient(135deg, rgba(72, 27, 117, 0.24), transparent 62%);
  transition: background 420ms var(--ease);
}

.event-capability--networks {
  --capability-image: url("/assets/images/events/293756252_617557439539859_752579642057086310_n.jpg");
  --capability-position: center 62%;
}

.event-capability--live {
  --capability-image: url("/assets/images/events/livestage.jpg");
  --capability-position: center 58%;
}

.event-capability--software {
  --capability-image: url("/assets/images/events/av.jpg");
  --capability-position: center;
}

.event-capability--deployment {
  --capability-image: url("/assets/images/events/IMG_7477.jpg");
  --capability-position: center 56%;
}

.event-capability--wide {
  grid-column: span 7;
}

.event-capability:hover {
  border-color: rgba(169, 108, 255, 0.48);
  transform: translateY(-4px);
}

.event-capability:hover::before {
  filter: blur(1.5px) saturate(0.92);
  transform: scale(1.055);
}

.event-capability:hover::after {
  background:
    linear-gradient(180deg, rgba(13, 8, 18, 0.36) 0%, rgba(13, 8, 18, 0.7) 62%, rgba(13, 8, 18, 0.92) 100%),
    linear-gradient(135deg, rgba(117, 35, 231, 0.32), transparent 62%);
}

.event-capability__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.event-capability__top svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--purple-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.event-capability__top span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-capability h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  line-height: 0.96;
}

.event-capability p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
}

.event-concept {
  background:
    radial-gradient(circle at 4% 0%, rgba(117, 35, 231, 0.08), transparent 24%),
    #ebe7ed;
}

.event-concept__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 70px);
}

.event-concept__heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0.96;
}

.event-concept__heading h2 span {
  color: var(--purple);
}

.event-concept__heading > p {
  max-width: 520px;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.event-concept__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.event-concept__card {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(190px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid rgba(44, 25, 56, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(40, 23, 53, 0.09);
  transition:
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
}

.event-concept__card:hover {
  border-color: rgba(117, 35, 231, 0.28);
  box-shadow: 0 28px 80px rgba(57, 29, 76, 0.14);
  transform: translateY(-4px);
}

.event-concept__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--night);
}

.event-concept__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 16, 0.08), transparent 48%, rgba(12, 8, 16, 0.42));
  content: "";
  pointer-events: none;
}

.event-concept__media video {
  width: 100%;
  height: 100%;
  transition: transform 900ms var(--ease);
  object-fit: cover;
}

.event-concept__card:hover video {
  transform: scale(1.025);
}

.event-concept__media > span {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 10, 19, 0.58);
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.event-concept__card--execution .event-concept__media > span {
  background: rgba(117, 35, 231, 0.76);
}

.event-concept__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 40px);
}

.event-concept__copy h3 {
  max-width: 290px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.96;
}

.event-concept__copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.event-products {
  background: #f6f3f1;
}

.event-products__heading {
  grid-template-columns: minmax(0, 1fr);
}

.event-products__heading h2 {
  margin-bottom: 0;
}

.event-products__heading > div {
  max-width: 1080px;
}

.event-products__heading .event-products__intro {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.event-products__intro a {
  color: var(--purple-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(117, 35, 231, 0.3);
  text-underline-offset: 4px;
  transition:
    color 220ms var(--ease),
    text-decoration-color 220ms var(--ease);
}

.event-products__intro a:hover,
.event-products__intro a:focus-visible {
  color: var(--purple);
  text-decoration-color: currentColor;
}

.event-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.event-product-card {
  display: flex;
  min-height: 340px;
  grid-column: span 2;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(23, 19, 28, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(49, 30, 64, 0.04);
  transition:
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
}

.event-product-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.event-product-card:hover,
.event-product-card:focus-visible {
  border-color: rgba(117, 35, 231, 0.34);
  box-shadow: 0 28px 70px rgba(61, 32, 85, 0.11);
  transform: translateY(-5px);
}

.event-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-product-card__top svg {
  width: 20px;
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.event-product-card__brand {
  display: flex;
  min-height: 150px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
}

.event-product-card__brand img {
  width: auto;
  max-width: min(250px, 78%);
  height: auto;
  max-height: 65px;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
  opacity: 0.88;
}

.event-product-card__brand strong {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.event-product-card > p {
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.event-delivery {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(169, 108, 255, 0.18), transparent 32%),
    var(--night);
  color: var(--white);
}

.event-delivery__heading {
  margin-bottom: clamp(50px, 6vw, 80px);
  text-align: center;
}

.event-delivery__heading > p {
  margin-bottom: 16px;
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-delivery__heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.event-delivery__heading h2 span {
  color: var(--purple-light);
}

.event-delivery__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.event-delivery__steps li {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.event-delivery__steps li:first-child {
  padding-left: 0;
}

.event-delivery__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.event-delivery__steps li > span {
  display: block;
  margin-bottom: 74px;
  color: var(--purple-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-delivery__steps h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
}

.event-delivery__steps p {
  max-width: 350px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
}

.event-delivery__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: clamp(48px, 6vw, 78px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(169, 108, 255, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(117, 35, 231, 0.38), rgba(117, 35, 231, 0.08));
}

.event-delivery__cta p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
}

.event-delivery__cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1;
}

@media (max-width: 1100px) {
  .event-hero h1 {
    font-size: clamp(4rem, 8.5vw, 6.5rem);
  }

  .event-intro__stage {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .event-intro__image {
    min-height: 610px;
  }

  .event-capability,
  .event-capability--wide {
    grid-column: span 6;
  }

  .event-product-card,
  .event-product-card:nth-child(-n + 2) {
    grid-column: span 3;
  }

  .event-product-card:last-child {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 760px) {
  .event-hero__veil {
    background:
      linear-gradient(90deg, rgba(10, 7, 13, 0.88), rgba(10, 7, 13, 0.42)),
      linear-gradient(180deg, rgba(8, 5, 11, 0.62), transparent 25%, rgba(8, 5, 11, 0.88) 100%);
  }

  .event-hero__inner {
    min-height: max(760px, 100svh);
    padding: 108px 0 22px;
  }

  .event-hero__content {
    justify-content: flex-end;
    padding: 66px 0 54px;
  }

  .event-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.4rem, 15.5vw, 5rem);
  }

  .event-hero__content > p:not(.event-hero__kicker) {
    font-size: 0.85rem;
  }

  .event-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .event-hero__actions .button,
  .event-hero__project {
    width: 100%;
  }

  .event-hero__project {
    justify-content: center;
  }

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

  .event-hero__footer span {
    padding: 18px 12px 4px;
  }

  .event-hero__footer span:nth-child(2) {
    border-right: 0;
  }

  .event-hero__footer span:nth-child(n + 3) {
    display: none;
  }

  .event-product-reel__heading {
    margin-bottom: 24px;
  }

  .event-product-reel__heading h2 {
    font-size: clamp(0.9rem, 3.8vw, 1.2rem);
  }

  .event-product-reel__control {
    width: 40px;
    height: 40px;
  }

  .event-product-reel__control--previous {
    left: 8px;
  }

  .event-product-reel__control--next {
    right: 8px;
  }

  .event-product-reel__card {
    min-height: 248px;
    flex-basis: min(78vw, 300px);
    padding: 22px;
  }

  .event-product-reel__brand {
    min-height: 100px;
  }

  .event-intro__heading,
  .event-products__heading,
  .event-capabilities__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .event-intro__heading h2,
  .event-products__heading h2,
  .event-capabilities__heading h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .event-intro__stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .event-intro__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .event-intro__image figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .event-intro__image figcaption span {
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .event-intro__image figcaption strong {
    max-width: 280px;
    font-size: clamp(1.25rem, 6.2vw, 1.65rem);
  }

  .event-intro__points {
    gap: 8px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .event-intro__points article {
    min-height: 64px;
    justify-content: center;
    padding: 17px 18px;
    border: 1px solid rgba(117, 35, 231, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 24px rgba(43, 22, 62, 0.04);
  }

  .event-intro__points article.is-active {
    min-height: 128px;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(117, 35, 231, 0.2);
  }

  .event-intro__points h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  .event-intro__points h3::after {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid rgba(117, 35, 231, 0.18);
    border-radius: 50%;
    color: var(--purple);
    content: "+";
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 500;
    transition:
      background 260ms ease,
      color 260ms ease,
      transform 320ms var(--ease);
  }

  .event-intro__points article.is-active h3::after {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    content: "−";
    transform: rotate(180deg);
  }

  .event-intro__points p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 360ms var(--ease),
      margin 360ms var(--ease),
      opacity 240ms ease,
      transform 360ms var(--ease);
  }

  .event-intro__points article.is-active p {
    max-height: 120px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
  }

  .event-capability,
  .event-capability--wide {
    min-height: 300px;
    grid-column: 1 / -1;
    border-radius: 14px;
  }

  .event-capability h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .event-concept__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .event-concept__heading h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .event-concept__grid {
    grid-template-columns: 1fr;
  }

  .event-concept__card {
    min-height: 420px;
    grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
    border-radius: 14px;
  }

  .event-product-card,
  .event-product-card:nth-child(-n + 2),
  .event-product-card:last-child {
    min-height: 310px;
    grid-column: 1 / -1;
    border-radius: 14px;
  }

  .event-delivery__steps {
    grid-template-columns: 1fr;
  }

  .event-delivery__steps li,
  .event-delivery__steps li:first-child,
  .event-delivery__steps li:last-child {
    min-height: 0;
    padding: 30px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .event-delivery__steps li:last-child {
    border-bottom: 0;
  }

  .event-delivery__steps li > span {
    margin-bottom: 36px;
  }

  .event-delivery__cta {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .event-delivery__cta .button {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--night);
  color: var(--white);
  padding: 0 0 24px;
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 64px));
  height: 2px;
  transform: translateX(-50%) scaleX(0.72);
  background: linear-gradient(90deg, transparent, var(--purple-light), var(--purple), var(--purple-light), transparent);
  box-shadow: 0 0 18px rgba(117, 35, 231, 0.62);
  content: "";
  animation: footer-line-pulse 4.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes footer-line-pulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(0.72);
    opacity: 0.34;
  }
  50% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.95;
  }
}

.site-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: end;
  padding: clamp(76px, 8vw, 120px) 0;
}

.site-footer__contact-intro h2 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  line-height: 0.94;
}

.site-footer__contact-intro h2 + p {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer__contact-button {
  min-height: 72px;
  padding-inline: 40px;
  font-size: 1.05rem;
}

.site-footer__contact-details {
  border-top: 1px solid var(--line-light);
}

.site-footer__contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.site-footer__contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact-detail a,
.site-footer__contact-detail address {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.site-footer__contact-detail a {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms ease;
}

.site-footer__contact-detail a:hover,
.site-footer__contact-detail a:focus-visible {
  background-size: 100% 1px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line-light);
}

.site-footer__brand img {
  width: 160px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-footer__top p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.site-footer__strapline {
  white-space: nowrap;
}

.site-footer__strapline span {
  color: var(--purple-light);
  animation: footer-dot-glow 3.6s ease-in-out infinite;
  text-shadow:
    0 0 4px rgba(169, 108, 255, 0.3),
    0 0 10px rgba(117, 35, 231, 0.2);
}

.site-footer__strapline span:nth-of-type(2) {
  animation-delay: 0.35s;
}

.site-footer__strapline span:nth-of-type(3) {
  animation-delay: 0.7s;
}

.site-footer__strapline span:nth-of-type(4) {
  animation-delay: 1.05s;
}

@keyframes footer-dot-glow {
  0%,
  100% {
    color: rgba(169, 108, 255, 0.72);
    text-shadow:
      0 0 3px rgba(169, 108, 255, 0.18),
      0 0 8px rgba(117, 35, 231, 0.12);
  }

  50% {
    color: #c69cff;
    text-shadow:
      0 0 7px rgba(198, 156, 255, 0.8),
      0 0 16px rgba(117, 35, 231, 0.62);
  }
}

.site-footer__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--white);
}

.site-footer__socials {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.site-footer__socials a {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.68);
  place-items: center;
  transition:
    color 200ms var(--ease),
    border-color 200ms var(--ease),
    background 200ms var(--ease),
    box-shadow 200ms var(--ease),
    transform 200ms var(--ease);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  border-color: var(--purple-light);
  background: rgba(117, 35, 231, 0.28);
  box-shadow: 0 0 24px rgba(117, 35, 231, 0.26);
  color: var(--white);
  transform: translateY(-2px);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(169, 108, 255, 0.7);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.26);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  animation: back-to-top-bounce 1.8s ease-in-out infinite;
  transition:
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--lavender);
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  border-color: var(--purple-light);
  background: rgba(117, 35, 231, 0.48);
}

@keyframes back-to-top-bounce {
  0%,
  100% {
    transform: translateY(2px);
  }

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

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.63rem;
}

.site-footer__bottom span:last-child {
  margin-left: auto;
}

/* Reveal animation */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms var(--ease) var(--reveal-delay, 0ms),
    transform 800ms var(--ease) var(--reveal-delay, 0ms);
}

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

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes scroll-nudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

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

@keyframes terminal-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .hero__content {
    width: min(760px, 86vw);
  }

  .hero__footer {
    grid-template-columns: 0.8fr 0.9fr 1.3fr;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto__grid,
  .section-heading,
  .pathways__heading,
  .collection-hero__grid,
  .about-hero__grid,
  .collection-note__grid,
  .about-story__grid,
  .process__heading {
    grid-template-columns: 170px 1fr;
    gap: 52px;
  }

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

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

  .product-card:nth-child(7n + 1) {
    grid-column: span 1;
  }

  .product-card:first-child {
    grid-column: span 2;
  }

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

  .process-list li:nth-child(3) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .process-list li:nth-child(3)::after {
    display: none;
  }

  .process-list li > span {
    margin-bottom: 56px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .section {
    padding: 72px 0;
  }

  .services__heading {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 38px;
  }

  .services__heading h2 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
  }

  .services__heading > p {
    margin-bottom: 0;
  }

  .terminal-window {
    border-radius: 10px;
  }

  .terminal-window__bar {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding-inline: 14px;
  }

  .terminal-window__title {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .terminal-window__status {
    display: none;
  }

  .terminal-window__body {
    padding: 22px 18px;
  }

  .terminal-session {
    overflow-wrap: anywhere;
    padding-bottom: 28px;
    font-size: 0.68rem;
  }

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

  .terminal-service,
  .terminal-service:first-child,
  .terminal-service:last-child {
    min-height: 265px;
    padding: 26px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .terminal-service:last-child {
    border-bottom: 0;
  }

  .terminal-service h3 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .site-header {
    padding-top: 16px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 124px;
  }

  .brand__wordmark {
    width: 124px;
  }

  .brand .brand__mark,
  .site-header.is-scrolled .brand {
    width: 36px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    visibility: hidden;
    padding: 110px 24px 42px;
    transform: translateY(-12px);
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 90% 5%, rgba(117, 35, 231, 0.4), transparent 30%),
      rgba(18, 13, 24, 0.985);
    opacity: 0;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    transition:
      visibility 320ms ease,
      opacity 320ms ease,
      transform 320ms var(--ease);
  }

  .site-nav a,
  .site-nav__dropdown-trigger {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    border-radius: 0;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2rem, 11vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -0.055em;
  }

  .site-nav__group {
    width: 100%;
  }

  .site-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    background: none;
    text-align: left;
  }

  .site-nav__dropdown-trigger svg {
    width: 22px;
    height: 22px;
  }

  .site-nav__submenu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: none;
    transition:
      max-height 320ms var(--ease),
      opacity 220ms ease,
      padding 320ms var(--ease);
  }

  .site-nav__group.is-open .site-nav__submenu {
    max-height: 280px;
    padding: 6px 0 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav__submenu::before {
    display: none;
  }

  .site-nav__submenu a {
    gap: 2px;
    padding: 11px 18px;
    border-bottom: 0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: -0.02em;
  }

  .site-nav__submenu a span {
    font-size: 1.05rem;
  }

  .site-nav__submenu a small {
    font-size: 0.65rem;
  }

  .site-nav a:first-child {
    border-top: 1px solid var(--line-light);
  }

  .site-nav .site-nav__featured {
    background: none;
  }

  .site-nav .site-nav__cloud {
    justify-content: space-between;
    margin-top: 10px;
    padding: 15px 18px;
    border: 1px solid rgba(169, 108, 255, 0.2);
    border-radius: 14px;
    background: rgba(117, 35, 231, 0.15);
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .site-nav__cloud svg {
    width: 22px;
    height: 22px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: none;
    color: var(--purple-light);
  }

  .menu-open .site-nav {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .site-header.is-scrolled .site-header__inner::before {
    inset: -6px -8px;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 6, 14, 0.86), rgba(10, 6, 14, 0.28)),
      linear-gradient(0deg, rgba(8, 5, 12, 0.96) 0%, rgba(8, 5, 12, 0.18) 58%, rgba(8, 5, 12, 0.55) 100%);
  }

  .hero__media video,
  .hero__media img {
    object-position: 62% center;
  }

  .hero__inner {
    padding-top: 116px;
  }

  .hero__content {
    width: 100%;
    padding-bottom: 52px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.75rem, 17.5vw, 5.7rem);
    line-height: 0.88;
  }

  .hero__lede {
    max-width: 92%;
    font-size: 0.94rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero-stat {
    min-height: 86px;
    padding: 14px 16px 14px 0;
  }

  .hero-stat + .hero-stat {
    padding-left: 16px;
  }

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

  .hero-stat--wide {
    grid-column: span 2;
    padding-left: 0 !important;
    border-top: 1px solid var(--line-light);
    border-right: 0;
  }

  .manifesto__grid,
  .section-heading,
  .pathways__heading,
  .collection-hero__grid,
  .about-hero__grid,
  .collection-note__grid,
  .about-story__grid,
  .process__heading {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .display-copy {
    margin-bottom: 36px;
    font-size: clamp(2.6rem, 10.5vw, 3.6rem);
  }

  .manifesto__copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .capability-strip {
    padding: 17px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .promise__heading h2 {
    font-size: clamp(2.8rem, 11.5vw, 4rem);
  }

  .section-heading > div:last-child > p {
    margin-left: 0;
  }

  .pathways__heading {
    margin-bottom: 38px;
  }

  .pathways__heading h2 {
    font-size: clamp(2.65rem, 10vw, 3.45rem);
  }

  .pathways__heading > div:last-child > p {
    margin-left: 0;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pathway-card {
    min-height: 390px;
  }

  .pathway-card__media {
    height: 220px;
  }

  .pathway-card__body {
    padding: 22px;
  }

  .pathway-card__body h3 {
    margin-bottom: 24px;
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .pathway-card__meta {
    font-size: 0.7rem;
  }

  .pathway-card__arrow {
    width: 36px;
    height: 36px;
  }

  .collection-hero__inner,
  .about-hero__inner {
    min-height: 470px;
    padding: 118px 0 58px;
  }

  .breadcrumb-link {
    margin-bottom: 52px;
  }

  .collection-hero h1,
  .about-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.9rem);
  }

  .collection-note h2 {
    font-size: clamp(2.3rem, 9.5vw, 3.2rem);
  }

  .compact-heading,
  .more-collections__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.3rem);
  }

  .more-collections {
    padding: 60px 0;
  }

  .more-collections__grid {
    grid-template-columns: 1fr;
  }

  .more-collections__grid a,
  .more-collections__grid a:first-child {
    min-height: 120px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .more-collections__grid a:last-child {
    border-bottom: 0;
  }

  .about-story h2 {
    margin-bottom: 34px;
    font-size: clamp(2.5rem, 10.5vw, 3.5rem);
  }

  .about-story__copy,
  .team-grid,
  .about-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .about-story__copy {
    gap: 24px;
  }

  .team-grid {
    gap: 12px;
  }

  .person-card {
    min-height: 440px;
    grid-template-columns: 1fr;
    grid-template-rows: 210px 1fr;
  }

  .person-card__content {
    padding: 26px;
  }

  .person-card__content > span {
    margin-bottom: 38px;
  }

  .person-card__portrait--josh img {
    object-position: center 15%;
  }

  .person-card__portrait--chris img {
    object-position: 56% 15%;
  }

  .about-philosophy h2 {
    font-size: clamp(2.6rem, 11vw, 3.7rem);
  }

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

  .product-card,
  .product-card:first-child {
    min-height: 300px;
    grid-column: auto;
  }

  .product-card__link {
    padding: 22px;
  }

  .product-card__brand {
    min-height: 118px;
  }

  .product-card:nth-child(7n + 1) .product-card__brand img {
    max-width: min(240px, 82%);
    max-height: 62px;
  }

  .product-card__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promise__heading {
    margin-bottom: 48px;
  }

  .promise__approach h2 {
    white-space: normal;
  }

  .promise__heading h2 {
    white-space: normal;
  }

  .promise__heading > p {
    white-space: normal;
  }

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

  .promise-card,
  .promise-card:first-child {
    min-height: 0;
    padding: 30px 0 44px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .promise-card:last-child {
    border-bottom: 0;
  }

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

  .process-list li,
  .process-list li:first-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(n + 4) {
    border-top: 0;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li::after {
    display: none;
  }

  .process-list li > span {
    margin-bottom: 34px;
  }

  .project-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }

  .project-modal__panel {
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }

  .project-modal__close {
    top: 14px;
    right: 14px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .project-modal__intro {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 58px 28px 22px;
  }

  .project-modal__intro > p:first-child {
    grid-column: auto;
    margin-bottom: 4px;
  }

  .project-modal__intro h2 {
    max-width: none;
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .project-modal__intro h2 + p {
    margin-top: 4px;
  }

  .project-form {
    padding: 28px 22px 22px;
  }

  .project-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .project-form__footer .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 0;
  }

  .site-footer__contact {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 68px 0;
  }

  .site-footer__contact-intro h2 {
    font-size: clamp(2.9rem, 12vw, 4.1rem);
  }

  .site-footer__contact-intro .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 48px;
  }

  .site-footer__top .site-footer__strapline {
    font-size: clamp(0.75rem, 3.7vw, 1rem);
    letter-spacing: -0.025em;
  }

  .site-footer__navigation {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .back-to-top {
    justify-self: start;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom span:last-child {
    margin-left: 0;
  }
}

@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;
  }

  .capability-track {
    animation: none;
  }
}

/* About — origin story */
.about-page-v2 {
  background: #f4f1f5;
}

.about-section-label {
  margin-bottom: 16px;
  color: var(--purple-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-origin-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #100c15;
  color: var(--white);
}

.about-origin-hero__media,
.about-origin-hero__veil {
  position: absolute;
  inset: 0;
}

.about-origin-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-origin-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.74) contrast(1.04);
  transform: scale(1.015);
  animation: about-hero-breathe 16s ease-in-out infinite alternate;
}

.about-origin-hero__veil {
  background:
    linear-gradient(90deg, rgba(12, 8, 16, 0.88) 0%, rgba(12, 8, 16, 0.63) 45%, rgba(12, 8, 16, 0.2) 74%, rgba(12, 8, 16, 0.36) 100%),
    linear-gradient(0deg, rgba(12, 8, 16, 0.82) 0%, transparent 48%),
    radial-gradient(circle at 72% 28%, rgba(117, 35, 231, 0.18), transparent 34%);
}

.about-origin-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  padding: 132px 0 46px;
}

.about-origin-hero .breadcrumb-link {
  margin-bottom: 0;
}

.about-origin-hero__content {
  max-width: 920px;
  margin-top: auto;
  padding: 84px 0 52px;
}

.about-origin-hero__content > p:first-child {
  margin-bottom: 18px;
  color: var(--lavender);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-origin-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.7vw, 7rem);
  line-height: 0.94;
}

.about-origin-hero h1 span {
  display: block;
  color: var(--purple-light);
}

.about-origin-hero__summary {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.about-origin-hero__cue {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 220ms var(--ease);
}

.about-origin-hero__cue svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(169, 108, 255, 0.7);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.28);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.about-origin-hero__cue:hover,
.about-origin-hero__cue:focus-visible {
  color: var(--white);
}

.about-opening {
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 14%, rgba(117, 35, 231, 0.08), transparent 25%),
    #f7f5f2;
}

.about-opening__grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 2.35fr);
  gap: clamp(48px, 8vw, 132px);
}

.about-opening__aside {
  padding-top: 34px;
  border-top: 1px solid rgba(117, 35, 231, 0.34);
}

.about-opening__aside span {
  display: block;
  max-width: 140px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about-opening__aside strong {
  display: block;
  margin-top: 32px;
  color: var(--purple);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.about-opening__story h2 {
  max-width: 880px;
  margin-bottom: 38px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.about-opening__copy {
  display: grid;
  max-width: 930px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}

.about-opening__copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-opening__copy strong {
  color: var(--ink);
  font-weight: 700;
}

.about-opening blockquote {
  position: relative;
  max-width: 920px;
  margin: clamp(52px, 6vw, 82px) 0 0;
  padding: 28px 0 0 72px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.16;
}

.about-opening blockquote span {
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--purple);
  font-size: 4.6rem;
  line-height: 0.8;
}

.about-journey {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 6%, rgba(117, 35, 231, 0.24), transparent 25%),
    linear-gradient(145deg, #100c15, #18111f 72%, #120d18);
  color: var(--white);
}

.about-journey__heading,
.about-founders__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(40px, 7vw, 108px);
  margin-bottom: clamp(56px, 7vw, 92px);
}

.about-journey__heading > div,
.about-founders__heading > div {
  flex: 1 1 auto;
}

.about-journey__heading h2,
.about-founders__heading h2,
.about-lessons__heading h2 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
}

.about-journey__heading h2 span,
.about-lessons__heading h2 span {
  color: var(--purple-light);
}

.about-journey__heading > p,
.about-founders__heading > p {
  flex: 0 0 min(390px, 32vw);
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
}

.about-journey .about-section-label {
  color: var(--purple-light);
}

.about-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-timeline__chapter {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(180px, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(24px, 4vw, 62px);
  padding: 42px 34px 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-timeline__chapter:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-timeline__chapter--now::before {
  position: absolute;
  inset: 8px 0;
  border: 1px solid rgba(169, 108, 255, 0.26);
  border-radius: 12px;
  background: rgba(117, 35, 231, 0.1);
  content: "";
}

.about-timeline__chapter--now > * {
  position: relative;
  z-index: 1;
}

.about-timeline__marker {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-timeline__marker span {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(169, 108, 255, 0.55);
  border-radius: 50%;
  background: rgba(117, 35, 231, 0.12);
  color: var(--lavender);
  font-size: 0.67rem;
  font-weight: 700;
  place-items: center;
}

.about-timeline__marker i {
  position: absolute;
  top: 42px;
  bottom: -42px;
  left: 50%;
  width: 1px;
  background: linear-gradient(rgba(169, 108, 255, 0.48), rgba(169, 108, 255, 0.08));
}

.about-timeline__chapter:last-child .about-timeline__marker i {
  display: none;
}

.about-timeline__meta span {
  display: block;
  margin-bottom: 10px;
  color: var(--purple-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-timeline__meta strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 600;
}

.about-timeline__copy {
  max-width: 750px;
}

.about-timeline__copy h3 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  line-height: 1.04;
}

.about-timeline__copy p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.about-timeline__copy p:last-child {
  margin-bottom: 0;
}

.about-snapshots {
  position: relative;
  overflow: hidden;
  padding-top: clamp(28px, 4vw, 60px);
  background: #100c15;
  color: var(--white);
}

.about-snapshots::before {
  position: absolute;
  inset: -20px;
  background: url("/assets/images/about/snapshots-wembley-blur.webp") center 48% / cover no-repeat;
  content: "";
  opacity: 0.46;
  transform: scale(1.035);
}

.about-snapshots::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 12, 21, 0.83) 0%, rgba(16, 12, 21, 0.68) 42%, rgba(16, 12, 21, 0.9) 100%),
    radial-gradient(circle at 12% 96%, rgba(117, 35, 231, 0.28), transparent 30%);
  content: "";
}

.about-snapshots > .shell {
  position: relative;
  z-index: 1;
}

.about-snapshots__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(40px, 7vw, 108px);
  margin-bottom: clamp(52px, 6vw, 78px);
}

.about-snapshots__heading > div {
  flex: 1 1 auto;
}

.about-snapshots .about-section-label {
  color: var(--purple-light);
}

.about-snapshots__heading h2 {
  max-width: 930px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
}

.about-snapshots__heading h2 span {
  display: block;
  color: var(--purple-light);
}

.about-snapshots__heading > p {
  flex: 0 0 min(390px, 32vw);
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 330px 330px 260px 600px;
  gap: 12px;
}

.about-snapshot {
  position: relative;
  min-width: 0;
  min-height: 0;
  grid-column: span 3;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #1b1421;
}

.about-snapshot--team {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.about-snapshot--stadium {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.about-snapshot img,
.about-snapshot video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
  transition: filter 420ms var(--ease);
}

.about-snapshot::before {
  position: absolute;
  z-index: 0;
  inset: -24px;
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(18px) brightness(0.36) saturate(0.72);
  transform: scale(1.08);
}

.about-snapshot:nth-child(1)::before {
  background-image: url("/assets/images/about/chelsea-team.webp");
}

.about-snapshot:nth-child(2)::before {
  background-image: url("/assets/images/about/stadium-broadcast.webp");
}

.about-snapshot:nth-child(3)::before {
  background-image: url("/assets/images/about/infrastructure-rack.webp");
}

.about-snapshot:nth-child(4)::before {
  background-image: url("/assets/images/about/shop-fitout.webp");
}

.about-snapshot:nth-child(5)::before {
  background-image: url("/assets/images/about/pitchside-img-1495.webp");
}

.about-snapshot:nth-child(6)::before {
  background-image: url("/assets/images/about/josh-and-chris-onsite.webp");
}

.about-snapshot:nth-child(7)::before {
  background-image: url("/assets/images/about/field-drone.webp");
}

.about-snapshot:nth-child(8)::before {
  background-image: url("/assets/images/about/lighting-trail-poster.webp");
}

.about-snapshot--team img {
  object-fit: contain;
  object-position: center 45%;
}

.about-snapshot--stadium img {
  object-position: center 43%;
}

.about-snapshot--field {
  grid-column: 1 / 9;
  grid-row: 4;
}

.about-snapshot--motion {
  grid-column: 9 / 13;
  grid-row: 4;
}

.about-snapshot::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 8, 16, 0.88) 0%, rgba(12, 8, 16, 0.18) 52%, transparent 72%),
    linear-gradient(110deg, rgba(117, 35, 231, 0.14), transparent 46%);
  content: "";
  pointer-events: none;
}

.about-snapshot:hover img,
.about-snapshot:hover video {
  filter: saturate(1) contrast(1.03);
}

.about-snapshot figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.about-snapshot figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-snapshot figcaption strong {
  display: block;
  max-width: 420px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.about-founders {
  background:
    radial-gradient(circle at 8% 20%, rgba(117, 35, 231, 0.07), transparent 27%),
    #efebf1;
}

.about-founders__heading h2 {
  color: var(--ink);
}

.about-founders__heading > p {
  color: var(--ink-soft);
}

.about-founders__heading > .about-founders__statement {
  flex-basis: min(430px, 35vw);
  margin-bottom: 0;
  padding: 20px 22px;
  border-left: 3px solid var(--purple);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  box-shadow: 0 16px 42px rgba(86, 19, 183, 0.08);
}

.about-founders__statement span {
  color: var(--purple-deep);
}

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

.about-founder {
  display: grid;
  min-height: 580px;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(117, 35, 231, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 64px rgba(86, 19, 183, 0.11);
}

.about-founder__toggle {
  display: none;
}

.about-founder__panel {
  display: contents;
}

.about-founder__portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #211529;
}

.about-founder__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 10, 20, 0.8), transparent 48%);
  content: "";
}

.about-founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
  transition: filter 380ms var(--ease), transform 700ms var(--ease);
}

.about-founder--josh .about-founder__portrait img {
  object-position: 45% 50%;
}

.about-founder--chris .about-founder__portrait img {
  object-position: 49% 50%;
}

.about-founder:hover .about-founder__portrait img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.025);
}

.about-founder__portrait span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-founder__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.3vw, 48px);
}

.about-founder__content > p:first-child {
  margin-bottom: auto;
  color: var(--purple-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-founder__content h3 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 0.98;
}

.about-founder__content > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.about-founders__equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1.25fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 50%, rgba(117, 35, 231, 0.34), transparent 35%),
    var(--night);
  color: var(--white);
}

.about-founders__equation span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.about-founders__equation i {
  color: var(--purple-light);
  font-family: var(--display);
  font-size: 1.8rem;
  font-style: normal;
}

.about-founders__equation strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.about-lessons {
  background: #f7f5f2;
}

.about-lessons__heading {
  max-width: 980px;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.about-lessons__heading h2 span {
  display: block;
  color: var(--purple);
}

.about-lessons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-lessons__grid article {
  position: relative;
  min-height: 330px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.about-lessons__grid article:last-child {
  border-right: 0;
}

.about-lessons__grid article::before {
  position: absolute;
  top: -1px;
  right: 100%;
  left: 0;
  height: 2px;
  background: var(--purple);
  content: "";
  transition: right 480ms var(--ease);
}

.about-lessons__grid article:hover::before {
  right: 0;
}

.about-lessons__grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--purple);
  font-size: 0.67rem;
  font-weight: 700;
}

.about-lessons__grid h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.about-lessons__grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.about-closing {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 124px) 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(117, 35, 231, 0.22), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(117, 35, 231, 0.12), transparent 28%),
    #100c15;
  color: var(--white);
}

.about-closing::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.about-closing__orb {
  position: absolute;
  top: -230px;
  right: -130px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(169, 108, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 130px rgba(117, 35, 231, 0.18),
    inset 0 0 100px rgba(117, 35, 231, 0.08);
}

.about-closing__inner {
  position: relative;
}

.about-closing__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.4vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025) 52%),
    rgba(12, 8, 17, 0.7);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.about-closing__panel::before {
  position: absolute;
  top: 0;
  left: clamp(28px, 4.4vw, 68px);
  width: min(240px, 28%);
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), rgba(169, 108, 255, 0));
  box-shadow: 0 0 22px rgba(169, 108, 255, 0.7);
  content: "";
}

.about-closing__panel::after {
  position: absolute;
  top: clamp(10px, 2vw, 28px);
  right: clamp(18px, 4vw, 62px);
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  background: url("/assets/images/brand/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
}

.about-closing__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.about-closing .about-section-label {
  margin-bottom: 0;
  color: var(--purple-light);
}

.about-closing__topline > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-closing h2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(480px, 1.6fr);
  align-items: end;
  gap: clamp(34px, 6vw, 92px);
  max-width: none;
  margin-bottom: clamp(54px, 7vw, 94px);
}

.about-closing__setup {
  max-width: 380px;
  padding-left: 20px;
  border-left: 2px solid rgba(169, 108, 255, 0.62);
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1.45rem, 2.25vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-closing__truth {
  max-width: 830px;
  color: var(--white);
  font-size: clamp(3.1rem, 5.6vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.about-closing__truth em {
  color: var(--purple-light);
  font-style: normal;
  text-shadow: 0 0 34px rgba(169, 108, 255, 0.32);
}

.about-closing__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.about-closing__footer p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  line-height: 1.65;
}

.about-closing__footer .button {
  min-height: 58px;
  padding-inline: 26px;
  white-space: nowrap;
}

@keyframes about-hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@media (max-width: 1100px) {
  .about-snapshot-grid {
    grid-template-rows: repeat(4, 250px);
    grid-auto-rows: 300px;
  }

  .about-snapshot--team {
    grid-column: 1 / 9;
    grid-row: 1 / 3;
  }

  .about-snapshot--stadium {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
  }

  .about-snapshot:nth-child(n + 3) {
    grid-column: span 6;
  }

  .about-snapshot--field,
  .about-snapshot--motion {
    grid-row: auto;
  }

  .about-founder {
    min-height: 680px;
    grid-template-columns: 1fr;
    grid-template-rows: 360px 1fr;
  }

  .about-founders__equation {
    grid-template-columns: 1fr auto 1fr;
  }

  .about-founders__equation strong {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
  }

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

  .about-lessons__grid article {
    border-bottom: 1px solid var(--line);
  }

  .about-lessons__grid article:nth-child(2n) {
    border-right: 0;
  }

  .about-lessons__grid article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-nav > a[aria-current="page"],
  .site-nav__dropdown-trigger.is-current {
    background: transparent;
    box-shadow: none;
    color: var(--purple-light);
  }

  .site-nav__submenu a[aria-current="page"] {
    background: rgba(117, 35, 231, 0.2);
    box-shadow: inset 3px 0 0 var(--purple-light);
    color: var(--white);
  }

  .about-origin-hero,
  .about-origin-hero__inner {
    min-height: 780px;
  }

  .about-origin-hero__media img {
    object-position: 57% center;
  }

  .about-origin-hero__veil {
    background:
      linear-gradient(0deg, rgba(12, 8, 16, 0.94) 0%, rgba(12, 8, 16, 0.78) 56%, rgba(12, 8, 16, 0.32) 100%),
      radial-gradient(circle at 70% 35%, rgba(117, 35, 231, 0.17), transparent 35%);
  }

  .about-origin-hero__inner {
    padding: 116px 0 30px;
  }

  .about-origin-hero__content {
    width: 100%;
    min-width: 0;
    padding: 80px 0 38px;
  }

  .about-origin-hero h1 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(2.85rem, 13vw, 4.5rem);
    overflow-wrap: break-word;
  }

  .about-origin-hero__summary {
    width: 100%;
    max-width: 100%;
    font-size: 0.84rem;
    overflow-wrap: anywhere;
  }

  .about-opening__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-opening__aside {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .about-opening__aside strong {
    margin-top: 0;
    font-size: 4.2rem;
  }

  .about-opening__story h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .about-opening__copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-opening blockquote {
    padding: 24px 0 0 48px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .about-opening blockquote span {
    font-size: 3.6rem;
  }

  .about-journey__heading,
  .about-founders__heading,
  .about-snapshots__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-journey__heading h2,
  .about-founders__heading h2,
  .about-snapshots__heading h2,
  .about-lessons__heading h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .about-journey__heading > p,
  .about-founders__heading > p,
  .about-snapshots__heading > p {
    flex-basis: auto;
    max-width: 520px;
  }

  .about-timeline__chapter {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px 20px;
    padding: 34px 14px 34px 0;
  }

  .about-timeline__marker {
    grid-row: 1 / span 2;
  }

  .about-timeline__marker span {
    width: 38px;
    height: 38px;
  }

  .about-timeline__marker i {
    top: 38px;
    bottom: -34px;
  }

  .about-timeline__meta,
  .about-timeline__copy {
    grid-column: 2;
  }

  .about-timeline__meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .about-timeline__meta span {
    margin-bottom: 0;
  }

  .about-timeline__copy h3 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .about-snapshot-grid {
    display: flex;
    flex-direction: column;
  }

  .about-snapshot,
  .about-snapshot--team,
  .about-snapshot--stadium {
    min-height: 0;
  }

  .about-snapshot--team {
    aspect-ratio: 1169 / 877;
  }

  .about-snapshot--stadium {
    aspect-ratio: 788 / 1400;
  }

  .about-snapshot:nth-child(3),
  .about-snapshot:nth-child(4) {
    aspect-ratio: 1;
  }

  .about-snapshot:nth-child(5) {
    aspect-ratio: 4 / 3;
  }

  .about-snapshot:nth-child(6) {
    aspect-ratio: 1316 / 877;
  }

  .about-snapshot:nth-child(7) {
    aspect-ratio: 3 / 2;
  }

  .about-snapshot:nth-child(8) {
    aspect-ratio: 9 / 16;
  }

  .about-snapshot figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-founder {
    display: block;
    min-height: 0;
  }

  .about-founder__toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
  }

  .about-founder__toggle small,
  .about-founder__toggle strong {
    display: block;
  }

  .about-founder__toggle small {
    margin-bottom: 5px;
    color: var(--purple-deep);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .about-founder__toggle strong {
    font-family: var(--display);
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .about-founder__toggle svg {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 9px;
    border: 1px solid rgba(117, 35, 231, 0.24);
    border-radius: 50%;
    background: rgba(117, 35, 231, 0.08);
    fill: none;
    stroke: var(--purple-deep);
    stroke-linecap: round;
    stroke-width: 1.7;
    transition: background 220ms var(--ease), transform 280ms var(--ease);
  }

  .about-founder__toggle:hover svg,
  .about-founder__toggle:focus-visible svg {
    background: rgba(117, 35, 231, 0.16);
  }

  .about-founder__toggle:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: -4px;
  }

  .about-founder.is-expanded .about-founder__toggle svg {
    transform: rotate(45deg);
  }

  .about-founder__panel {
    display: grid;
    grid-template-rows: 330px auto;
    border-top: 1px solid rgba(117, 35, 231, 0.12);
  }

  .about-founder__panel[hidden] {
    display: none;
  }

  .about-founder__content {
    padding: 28px 24px 30px;
  }

  .about-founder__content > p:first-child,
  .about-founder__content h3 {
    display: none;
  }

  .about-founders__equation {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    padding: 28px;
    text-align: center;
  }

  .about-founders__equation i {
    font-size: 1.3rem;
  }

  .about-founders__equation strong {
    grid-column: auto;
    margin-top: 10px;
  }

  .about-lessons__grid {
    grid-template-columns: 1fr;
  }

  .about-lessons__grid article,
  .about-lessons__grid article:nth-child(2n),
  .about-lessons__grid article:nth-child(n + 3) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-lessons__grid article:last-child {
    border-bottom: 0;
  }

  .about-lessons__grid article > span {
    margin-bottom: 48px;
  }

  .about-closing h2 {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .about-closing__setup {
    max-width: 520px;
  }

  .about-closing__truth {
    max-width: 760px;
    font-size: clamp(2.7rem, 10.6vw, 5rem);
  }

  .about-closing__topline {
    margin-bottom: 46px;
  }

  .about-closing__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .about-closing__footer .button {
    width: 100%;
  }
}

/* Keep the opening view self-contained across every page. */
.hero,
.event-hero,
.tech-hero,
.freeware-hero,
.about-origin-hero,
.collection-hero {
  min-height: 100vh;
  min-height: 100svh;
}

.hero__inner,
.event-hero__inner,
.tech-hero__inner,
.freeware-hero__inner,
.about-origin-hero__inner,
.collection-hero__inner {
  min-height: 100vh;
  min-height: 100svh;
}

@media (prefers-reduced-motion: reduce) {
  .about-origin-hero__media img {
    animation: none;
  }
}

/* Responsive polish shared by every page. */
@media (max-width: 900px) {
  .site-header {
    padding-top: 16px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand__wordmark {
    width: 124px;
  }

  .brand {
    z-index: 4;
  }

  .brand .brand__mark,
  .site-header.is-scrolled .brand {
    width: 36px;
  }

  .menu-open .brand__wordmark {
    filter: none !important;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    visibility: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(104px + env(safe-area-inset-top)) 24px calc(30px + env(safe-area-inset-bottom));
    overflow-y: auto;
    transform: translateY(-12px);
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 90% 5%, rgba(117, 35, 231, 0.4), transparent 30%),
      rgba(18, 13, 24, 0.985);
    opacity: 0;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    overscroll-behavior: contain;
    transition:
      visibility 320ms ease,
      opacity 320ms ease,
      transform 320ms var(--ease);
  }

  .menu-open .site-nav {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav > .site-nav__featured {
    display: block;
  }

  .site-nav a,
  .site-nav__dropdown-trigger {
    min-height: 66px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2rem, 6vw, 3.1rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .site-nav a:first-child {
    border-top: 1px solid var(--line-light);
  }

  .site-nav__group {
    width: 100%;
  }

  .site-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .site-nav__dropdown-trigger:hover,
  .site-nav__dropdown-trigger:focus-visible,
  .site-nav__group.is-open .site-nav__dropdown-trigger {
    background: transparent;
    color: var(--purple-light);
  }

  .site-nav__dropdown-trigger svg {
    width: 22px;
    height: 22px;
  }

  .site-nav__submenu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: none;
    transition:
      max-height 320ms var(--ease),
      opacity 220ms ease,
      padding 320ms var(--ease);
  }

  .site-nav__group.is-open .site-nav__submenu,
  .site-nav__group:hover .site-nav__submenu {
    max-height: 310px;
    padding: 6px 0 12px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__submenu::before {
    display: none;
  }

  .site-nav__submenu a {
    display: grid;
    min-height: 58px;
    gap: 3px;
    padding: 11px 18px;
    border: 0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }

  .site-nav__submenu a:hover,
  .site-nav__submenu a:focus-visible {
    background: rgba(117, 35, 231, 0.14);
  }

  .site-nav__submenu a span {
    font-size: 1.05rem;
  }

  .site-nav__submenu a small {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .site-nav .site-nav__featured {
    background: transparent;
  }

  .site-nav .site-nav__cloud {
    min-height: 70px;
    justify-content: space-between;
    margin-top: 14px;
    padding: 15px 18px;
    border: 1px solid rgba(169, 108, 255, 0.24);
    border-radius: 14px;
    background: rgba(117, 35, 231, 0.15);
    color: #d7baff;
    font-size: clamp(1.55rem, 7vw, 2.45rem);
  }

  .site-nav__cloud svg {
    width: 22px;
    height: 22px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: transparent;
    color: var(--purple-light);
  }

  .promise__heading h2,
  .promise__heading > p,
  .promise__approach h2 {
    white-space: normal;
  }

  .promise__heading > p {
    max-width: 720px;
  }

  .promise__orb {
    display: none;
  }

  .promise .process-list {
    overflow: hidden;
  }

  .promise .process-list li {
    overflow: hidden;
  }

  .breadcrumb-link,
  .text-link,
  .freeware-hero__back,
  .freeware-next__actions > a:not(.button),
  .site-footer__brand,
  .site-footer__contact-detail a,
  .site-footer__links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .site-header.is-scrolled .site-header__inner::before {
    inset-inline: -6px;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .site-header.is-scrolled .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-nav {
    padding-top: calc(92px + env(safe-area-inset-top));
    padding-inline: 18px;
  }

  .site-nav a,
  .site-nav__dropdown-trigger {
    min-height: 56px;
    padding-block: 11px;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .site-nav__submenu a {
    min-height: 52px;
    padding-block: 9px;
  }

  .site-nav .site-nav__cloud {
    min-height: 60px;
  }

  .pathway-grid {
    gap: 9px;
  }

  .pathway-card {
    min-height: 0;
    border-radius: 12px;
    transform: none;
  }

  .pathway-card:hover,
  .pathway-card:focus-visible {
    transform: none;
  }

  .pathway-card__media {
    height: 0;
    max-height: 0;
    opacity: 0;
    transition:
      height 380ms var(--ease),
      max-height 380ms var(--ease),
      opacity 260ms ease;
  }

  .pathway-card.is-expanded .pathway-card__media {
    height: 220px;
    max-height: 220px;
    opacity: 1;
  }

  .pathway-card__body {
    min-height: 132px;
    padding: 18px 20px;
  }

  .pathway-card__body h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .pathway-card__footer {
    padding-top: 12px;
  }

  .pathway-card__meta {
    font-size: 0.72rem;
  }

  .pathway-card.is-expanded .pathway-card__meta::after {
    color: var(--purple-deep);
    content: " · tap to open";
    font-weight: 700;
  }

  .pathway-card__arrow {
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
  }

  .pathway-card.is-expanded .pathway-card__arrow {
    border-color: var(--pathway-accent);
    background: var(--pathway-accent);
    color: var(--white);
    transform: rotate(0);
  }

  .hero-stat--wide {
    align-items: center;
    padding-inline: 0 !important;
    text-align: center;
  }

  .breadcrumb-link,
  .text-link,
  .freeware-hero__back,
  .freeware-next__actions > a:not(.button),
  .event-products__heading a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
  }

  .freeware-tools__orb,
  .tech-products__mesh,
  .tech-brief__orb,
  .event-capabilities__glow,
  .about-closing__orb {
    display: none;
  }

  .about-snapshots::before {
    inset: 0;
  }

  .event-capability::before,
  .about-snapshot::before {
    inset: 0;
    transform: none;
  }

  .tech-capability::before {
    top: -48px;
    right: 0;
    width: 132px;
    height: 132px;
    box-shadow:
      0 0 0 18px rgba(117, 35, 231, 0.025),
      0 0 0 36px rgba(117, 35, 231, 0.018);
  }

  .freeware-hero::before {
    top: -90px;
    right: 0;
    width: 250px;
    height: 250px;
    box-shadow:
      0 0 0 32px rgba(117, 35, 231, 0.025),
      0 0 0 64px rgba(117, 35, 231, 0.014);
  }

  .freeware-hero__price {
    right: 12px;
  }

  .tech-hero__media {
    transform: none;
  }

  .tech-hero__media img {
    animation: none;
  }

  .event-product-reel__control {
    width: 44px;
    height: 44px;
  }

  .event-hero__footer {
    display: none;
  }

  .tech-product-filters button,
  .project-select__menu button {
    min-height: 44px;
  }

  .tech-product-browser,
  .freeware-toolbox {
    overflow: hidden;
  }

  .tech-product-browser__toolbar {
    min-width: 0;
  }

  .tech-product-filters {
    width: 100%;
    margin-right: 0;
    padding: 0 4px 4px 0;
    scroll-padding-inline: 4px;
  }

  .tech-product-grid {
    gap: 8px;
  }

  .tech-product-card,
  .tech-product-card--featured {
    min-height: 0;
    grid-column: 1 / -1;
  }

  .tech-product-card > a {
    display: grid;
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    grid-template-rows: auto auto auto auto;
    gap: 2px 14px;
    align-items: center;
    padding: 14px;
    border-radius: 13px;
    transform: none;
  }

  .tech-product-card > a:hover,
  .tech-product-card > a:focus-visible {
    transform: none;
  }

  .tech-product-card > a::before {
    right: 16px;
    left: 16px;
  }

  .tech-product-card > a::after {
    display: grid;
    width: 34px;
    height: 34px;
    grid-column: 3;
    grid-row: 1 / span 2;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--product-accent) 24%, transparent);
    border-radius: 50%;
    color: var(--product-accent);
    content: "+";
    font-size: 1rem;
    transition:
      background 260ms ease,
      color 260ms ease,
      transform 320ms var(--ease);
  }

  .tech-product-card.is-expanded > a::after {
    background: var(--product-accent);
    color: var(--white);
    content: "↗";
    transform: rotate(0);
  }

  .tech-product-card__top {
    display: contents;
  }

  .tech-product-card__top span {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 0.57rem;
  }

  .tech-product-card__top svg {
    display: none;
  }

  .tech-product-card__brand {
    width: 58px;
    height: 58px;
    min-height: 0;
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 8px;
    border-radius: 10px;
    background: rgba(117, 35, 231, 0.055);
  }

  .tech-product-card__brand img,
  .tech-product-card--featured .tech-product-card__brand img {
    max-width: 100%;
    max-height: 34px;
  }

  .tech-product-card__bottom {
    display: contents;
  }

  .tech-product-card__bottom > div {
    display: contents;
  }

  .tech-product-card__bottom h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 2px 0 0;
    font-size: 1.08rem;
  }

  .tech-product-card__bottom p {
    max-height: 0;
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-top: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 360ms var(--ease),
      margin 360ms var(--ease),
      padding 360ms var(--ease),
      opacity 240ms ease,
      transform 360ms var(--ease);
  }

  .tech-product-card__bottom > span {
    max-height: 0;
    grid-column: 1 / -1;
    grid-row: 4;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 300ms var(--ease),
      margin 300ms var(--ease),
      opacity 220ms ease;
  }

  .tech-product-card.is-expanded .tech-product-card__bottom p {
    max-height: 150px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .tech-product-card.is-expanded .tech-product-card__bottom > span {
    max-height: 32px;
    margin-top: 10px;
    opacity: 1;
  }

  .tech-product-card--featured.is-expanded .tech-product-card__bottom p {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

  .event-capability-grid {
    gap: 8px;
  }

  .event-capability,
  .event-capability--wide {
    min-height: 108px;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 18px;
    border-radius: 14px;
    cursor: pointer;
    transform: none;
    transition:
      min-height 420ms var(--ease),
      padding 420ms var(--ease),
      border-color 320ms var(--ease),
      transform 320ms var(--ease);
  }

  .event-capability:hover {
    transform: none;
  }

  .event-capability.is-expanded {
    min-height: 270px;
    padding: 22px;
    border-color: rgba(169, 108, 255, 0.48);
  }

  .event-capability:focus-visible {
    outline: 3px solid var(--purple-light);
    outline-offset: 3px;
  }

  .event-capability__top {
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .event-capability__top svg {
    width: 34px;
    height: 34px;
  }

  .event-capability__top span {
    margin-left: auto;
  }

  .event-capability__top::after {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border: 1px solid rgba(169, 108, 255, 0.34);
    border-radius: 50%;
    color: var(--purple-light);
    content: "+";
    font-size: 1rem;
  }

  .event-capability.is-expanded .event-capability__top::after {
    background: rgba(169, 108, 255, 0.18);
    color: var(--white);
    content: "−";
  }

  .event-capability > div:last-child {
    margin-top: 16px;
  }

  .event-capability h3 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .event-capability p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition:
      max-height 360ms var(--ease),
      margin 360ms var(--ease),
      opacity 240ms ease,
      transform 360ms var(--ease);
  }

  .event-capability.is-expanded p {
    max-height: 150px;
    margin-top: 12px;
    opacity: 1;
    transform: translateY(0);
  }

  .event-capability.is-expanded::after {
    background:
      linear-gradient(180deg, rgba(13, 8, 18, 0.3) 0%, rgba(13, 8, 18, 0.74) 55%, rgba(54, 18, 89, 0.96) 100%),
      linear-gradient(135deg, rgba(117, 35, 231, 0.34), transparent 62%);
  }

  .event-product-grid {
    gap: 8px;
  }

  .event-product-card,
  .event-product-card:nth-child(-n + 2),
  .event-product-card:last-child {
    position: relative;
    display: grid;
    min-height: 0;
    grid-column: 1 / -1;
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 13px;
    transform: none;
  }

  .event-product-card:hover,
  .event-product-card:focus-visible {
    transform: none;
  }

  .event-product-card::after {
    display: grid;
    width: 34px;
    height: 34px;
    grid-column: 3;
    grid-row: 1;
    place-items: center;
    border: 1px solid rgba(117, 35, 231, 0.2);
    border-radius: 50%;
    color: var(--purple);
    content: "+";
    font-size: 1rem;
  }

  .event-product-card.is-expanded::after {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
    content: "↗";
  }

  .event-product-card__top {
    display: contents;
  }

  .event-product-card__top span {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.64rem;
  }

  .event-product-card__top svg {
    display: none;
  }

  .event-product-card__brand {
    width: 58px;
    height: 58px;
    min-height: 0;
    grid-column: 1;
    grid-row: 1;
    padding: 7px;
    border-radius: 10px;
    background: rgba(117, 35, 231, 0.055);
  }

  .event-product-card__brand img {
    max-width: 100%;
    max-height: 34px;
  }

  .event-product-card > p {
    max-height: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-top: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      max-height 360ms var(--ease),
      margin 360ms var(--ease),
      padding 360ms var(--ease),
      opacity 240ms ease,
      transform 360ms var(--ease);
  }

  .event-product-card.is-expanded > p {
    max-height: 180px;
    margin-top: 2px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .event-product-card.is-expanded > p::after {
    display: block;
    margin-top: 10px;
    color: var(--purple);
    content: "Tap again to visit product ↗";
    font-size: 0.66rem;
    font-weight: 700;
  }

  .project-modal__panel {
    display: flex;
    height: 100%;
    max-height: none;
    overflow: hidden;
    flex-direction: column;
    overscroll-behavior: contain;
  }

  .project-modal {
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .project-modal__panel {
    border: 0;
    border-radius: 0;
  }

  .project-modal__close {
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .project-modal__intro {
    flex: 0 0 auto;
    gap: 8px;
    padding: calc(20px + env(safe-area-inset-top)) 64px 20px 20px;
  }

  .project-modal__intro > p:first-child {
    margin-bottom: 2px;
    font-size: 0.66rem;
  }

  .project-modal__intro h2 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .project-modal__intro h2 + p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .project-form {
    min-height: 0;
    flex: 1 1 auto;
    padding: 20px 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .project-form input,
  .project-form select,
  .project-select__trigger {
    height: 48px;
  }

  .project-form textarea {
    min-height: 108px;
  }

  .project-form__turnstile {
    margin-bottom: 16px;
  }

  .project-select__menu {
    max-height: min(220px, 31svh);
  }

  .project-form__footer a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
  }

  .site-footer__contact-detail a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .site-footer {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 100% 8%, rgba(117, 35, 231, 0.18), transparent 26%),
      var(--night);
  }

  .site-footer::before {
    width: calc(100% - 36px);
  }

  .site-footer__contact {
    gap: 14px;
    padding: 54px 0 34px;
  }

  .site-footer__contact-intro {
    padding: 26px 22px 22px;
    border: 1px solid rgba(169, 108, 255, 0.22);
    border-radius: 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(117, 35, 231, 0.26), transparent 34%),
      rgba(255, 255, 255, 0.035);
  }

  .site-footer__contact-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(2.65rem, 12.5vw, 3.6rem);
  }

  .site-footer__contact-intro h2 + p {
    margin-bottom: 24px;
    font-size: 0.86rem;
  }

  .site-footer__contact-intro .button {
    min-height: 62px;
  }

  .site-footer__contact-details {
    display: grid;
    grid-template-columns: minmax(118px, 0.78fr) minmax(0, 1.22fr);
    gap: 9px;
    border-top: 0;
  }

  .site-footer__contact-detail {
    min-height: 138px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
  }

  .site-footer__contact-detail span {
    margin-bottom: 12px;
    color: var(--purple-light);
  }

  .site-footer__contact-detail a,
  .site-footer__contact-detail address {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .site-footer__contact-detail a {
    overflow-wrap: anywhere;
  }

  .site-footer__contact-detail--address {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
    gap: 18px 22px;
    align-items: center;
    padding: 30px 0;
  }

  .site-footer__brand img {
    width: 126px;
  }

  .site-footer__top .site-footer__strapline {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 330px;
    white-space: normal;
    line-height: 1.5;
  }

  .back-to-top {
    min-height: 44px;
    justify-self: end;
  }

  .site-footer__navigation {
    gap: 20px;
    padding: 18px 0 24px;
  }

  .site-footer__links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .site-footer__links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
  }

  .site-footer__links a::after {
    margin-left: auto;
    color: var(--purple-light);
    content: "↗";
    font-size: 0.72rem;
  }

  .site-footer__socials {
    position: relative;
    width: 100%;
    align-items: center;
    padding-top: 38px;
  }

  .site-footer__socials::before {
    position: absolute;
    top: 8px;
    left: 0;
    color: rgba(255, 255, 255, 0.42);
    content: "Follow Apexia";
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .site-footer__socials a {
    width: 46px;
    height: 46px;
  }

  .site-footer__bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding-top: 22px;
    line-height: 1.5;
  }

  .site-footer__bottom span:first-child {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
  }

  .site-footer__bottom span:last-child {
    margin-left: 0;
  }

  .terminal-service p,
  .promise-card p,
  .promise .process-list p,
  .person-card__content p,
  .event-capability p,
  .event-product-card > p,
  .tech-capability p,
  .tech-product-card__bottom p,
  .freeware-tool-card__bottom p,
  .about-timeline__copy p,
  .about-lessons__grid p {
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .person-card {
    min-height: 0;
    grid-template-rows: clamp(360px, 108vw, 420px) auto;
  }

  .person-card__portrait--josh img {
    object-position: center 28%;
  }

  .person-card__portrait--chris img {
    object-position: center 24%;
  }

  .person-card__content {
    justify-content: flex-start;
    padding: 22px;
  }

  .person-card__content > span {
    margin: 0 0 12px;
  }

  .person-card__heading h3 {
    margin-bottom: 0;
  }

  .person-card__toggle {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(117, 35, 231, 0.22);
    border-radius: 50%;
    background: rgba(117, 35, 231, 0.07);
    color: var(--purple);
    cursor: pointer;
    place-items: center;
  }

  .person-card__toggle svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 260ms var(--ease);
  }

  .person-card__bio {
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
      grid-template-rows 340ms var(--ease),
      opacity 220ms ease,
      padding-top 340ms var(--ease);
  }

  .person-card.is-expanded .person-card__bio {
    grid-template-rows: 1fr;
    padding-top: 18px;
    opacity: 1;
  }

  .person-card.is-expanded .person-card__toggle {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
  }

  .person-card.is-expanded .person-card__toggle svg {
    transform: rotate(180deg);
  }
}

.homepage-team__intro .text-link {
  min-height: 48px;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid rgba(117, 35, 231, 0.24);
  border-radius: 999px;
  background: rgba(117, 35, 231, 0.075);
  box-shadow: 0 10px 28px rgba(86, 19, 183, 0.08);
  transition:
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.homepage-team__intro .text-link svg {
  width: 18px;
  transition: transform 220ms var(--ease);
}

.homepage-team__intro .text-link:hover,
.homepage-team__intro .text-link:focus-visible {
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: 0 14px 34px rgba(86, 19, 183, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.homepage-team__intro .text-link:hover svg,
.homepage-team__intro .text-link:focus-visible svg {
  transform: translateX(4px);
}

/* Website design service */
.home-web-design {
  padding-top: clamp(36px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 50%, rgba(117, 35, 231, 0.08), transparent 30%),
    var(--paper);
}

.home-web-design__panel {
  position: relative;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  border: 1px solid rgba(117, 35, 231, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(117, 35, 231, 0.34), transparent 35%),
    linear-gradient(145deg, #21162d, var(--night) 65%);
  box-shadow: 0 34px 90px rgba(38, 19, 56, 0.16);
}

.home-web-design__panel::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  pointer-events: none;
}

.home-web-design__media {
  position: relative;
  z-index: 1;
  min-height: 660px;
}

.home-web-design__browser {
  position: absolute;
  top: 11%;
  right: 6%;
  left: 7%;
  overflow: hidden;
  margin: 0;
  transform: rotate(-2.4deg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: #0d0911;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.home-web-design__browser > div {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 13, 24, 0.96);
}

.home-web-design__browser > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.home-web-design__browser > div i:first-child {
  background: var(--purple-light);
}

.home-web-design__browser > div span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-web-design__browser img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: top;
}

.home-web-design__browser--small {
  z-index: 2;
  top: auto;
  right: 1%;
  bottom: 7%;
  left: auto;
  width: 39%;
  transform: rotate(4deg);
  border-radius: 12px;
}

.home-web-design__browser--small img {
  aspect-ratio: 0.82 / 1;
}

.home-web-design__copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(54px, 6vw, 88px);
  color: var(--white);
}

.home-web-design__copy::before {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
}

.home-web-design__copy h2 {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  line-height: 0.94;
}

.home-web-design__copy h2 span {
  color: var(--purple-light);
}

.home-web-design__copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.home-web-design__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.home-web-design__actions > a:last-child {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
}

.home-web-design__actions > a:last-child svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.home-web-design__actions > a:last-child:hover,
.home-web-design__actions > a:last-child:focus-visible {
  border-color: var(--purple-light);
  color: var(--white);
}

.web-design-page {
  background: var(--paper);
}

.web-design-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: clamp(160px, 14vw, 210px) 0 120px;
  background:
    radial-gradient(circle at 80% 38%, rgba(117, 35, 231, 0.34), transparent 31%),
    linear-gradient(145deg, #21142d 0%, var(--night) 54%, #0d0911 100%);
  color: var(--white);
}

.web-design-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.32) 70%, transparent);
}

.web-design-hero__glow {
  position: absolute;
  top: 6%;
  right: -10%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(169, 108, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(117, 35, 231, 0.035),
    0 0 0 180px rgba(117, 35, 231, 0.025);
}

.web-design-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(400px, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}

.web-design-hero__copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.4vw, 7.1rem);
  line-height: 0.88;
}

.web-design-hero__copy h1 span {
  display: block;
  color: var(--purple-light);
}

.web-design-hero__summary {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.web-design-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
}

.web-design-link,
.web-design-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.76rem;
  font-weight: 700;
}

.web-design-link {
  min-height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.82);
}

.web-design-link svg,
.web-design-text-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms var(--ease);
}

.web-design-link:hover,
.web-design-link:focus-visible {
  border-color: var(--purple-light);
  color: var(--white);
}

.web-design-link:hover svg,
.web-design-link:focus-visible svg,
.web-design-text-link:hover svg,
.web-design-text-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.web-design-hero__price {
  max-width: 520px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.web-design-hero__price > span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.web-design-hero__price strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.web-design-hero__price p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.6;
}

.web-design-showcase {
  position: relative;
  min-height: 600px;
  perspective: 1400px;
}

.web-design-browser {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: #0d0911;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44);
}

.web-design-browser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.web-design-browser--main {
  z-index: 3;
  top: 12%;
  right: 1%;
  left: 1%;
  border-radius: 16px;
  transform: rotateY(-5deg) rotateZ(1.5deg);
}

.web-design-browser--main img {
  height: auto;
  aspect-ratio: 1000 / 520;
}

.web-design-browser__bar {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.web-design-browser__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.web-design-browser__bar i:first-child {
  background: var(--purple-light);
}

.web-design-browser__bar span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.web-design-browser--one,
.web-design-browser--two {
  z-index: 1;
  bottom: 1%;
  width: 31%;
  aspect-ratio: 0.78 / 1;
  border-radius: 12px;
}

.web-design-browser--one {
  left: 4%;
  transform: rotate(-5deg);
}

.web-design-browser--two {
  right: 4%;
  transform: rotate(5deg);
}

.web-design-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.web-design-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.5vw, 6rem);
  line-height: 0.92;
}

.web-design-heading h2 span,
.web-design-faq h2 span {
  color: var(--purple);
}

.web-design-heading > p,
.web-design-heading > div:last-child > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.web-design-text-link {
  width: fit-content;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(117, 35, 231, 0.28);
  color: var(--purple-deep);
}

.web-design-text-link:hover,
.web-design-text-link:focus-visible {
  border-color: var(--purple);
  color: var(--purple);
}

.web-design-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.web-design-feature-grid article {
  min-height: 330px;
  padding: 34px clamp(22px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
}

.web-design-feature-grid article:first-child {
  padding-left: 0;
}

.web-design-feature-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.web-design-feature-grid span,
.web-design-process__steps > li > span {
  color: var(--purple);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.web-design-feature-grid h3 {
  margin: 90px 0 18px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.web-design-feature-grid p,
.web-design-process__steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.web-design-pricing {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(117, 35, 231, 0.3), transparent 30%),
    var(--night);
  color: var(--white);
}

.web-design-pricing__orb {
  position: absolute;
  right: -220px;
  bottom: -360px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(169, 108, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(117, 35, 231, 0.035),
    0 0 0 220px rgba(117, 35, 231, 0.025);
}

.web-design-pricing__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: center;
}

.web-design-pricing__copy > p:first-child,
.web-design-cta__inner > div:first-child > p {
  margin-bottom: 18px;
  color: var(--purple-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.web-design-pricing__copy h2 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  line-height: 0.9;
}

.web-design-pricing__copy h2 span,
.web-design-cta h2 span {
  color: var(--purple-light);
}

.web-design-pricing__copy > p:not(:first-child) {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.64);
}

.web-design-pricing__card {
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.web-design-pricing__card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--purple-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.web-design-pricing__card ul {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.web-design-pricing__card li {
  position: relative;
  padding: 14px 0 14px 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 1rem;
}

.web-design-pricing__card li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  content: "";
}

.web-design-pricing__card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

.web-design-work {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 10%, rgba(117, 35, 231, 0.08), transparent 28%),
    #ece9e5;
}

.web-design-work__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 18px;
}

.web-design-work__grid article > div {
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  border: 1px solid rgba(23, 19, 28, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(43, 28, 56, 0.08);
}

.web-design-work__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 700ms var(--ease);
}

.web-design-work__grid article:hover img {
  transform: scale(1.025);
}

.web-design-work__grid article > p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin: 15px 4px 0;
}

.web-design-work__grid article span {
  color: var(--purple-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.web-design-work__grid article strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
}

.web-design-process {
  background: var(--white);
}

.web-design-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.web-design-process__steps li {
  position: relative;
  min-height: 310px;
  padding: 32px clamp(22px, 2.6vw, 38px);
  border-right: 1px solid var(--line);
}

.web-design-process__steps li:first-child {
  padding-left: 0;
}

.web-design-process__steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.web-design-process__steps h3 {
  margin: 96px 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.web-design-faq {
  background:
    radial-gradient(circle at 0% 0%, rgba(117, 35, 231, 0.08), transparent 32%),
    var(--paper);
}

.web-design-faq__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(460px, 1fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: start;
}

.web-design-faq h2 {
  max-width: 550px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.93;
}

.web-design-faq__list {
  border-top: 1px solid var(--line);
}

.web-design-faq details {
  border-bottom: 1px solid var(--line);
}

.web-design-faq summary {
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  letter-spacing: -0.03em;
  list-style: none;
}

.web-design-faq summary::-webkit-details-marker {
  display: none;
}

.web-design-faq summary svg {
  width: 22px;
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease);
}

.web-design-faq details[open] summary svg {
  transform: rotate(45deg);
}

.web-design-faq details p {
  max-width: 660px;
  margin: -4px 54px 26px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.web-design-cta {
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(117, 35, 231, 0.35), transparent 34%),
    var(--night);
  color: var(--white);
}

.web-design-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
}

.web-design-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 6.5vw, 7.2rem);
  line-height: 0.88;
}

.web-design-cta__inner > div:last-child > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 1100px) {
  .home-web-design__panel {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  }

  .home-web-design__copy {
    padding: 54px 44px;
  }

  .home-web-design__copy h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .web-design-hero {
    min-height: 0;
  }

  .web-design-hero__inner {
    grid-template-columns: minmax(350px, 0.9fr) minmax(400px, 1.1fr);
    gap: 38px;
  }

  .web-design-hero__copy h1 {
    font-size: clamp(4rem, 7.5vw, 6rem);
  }

  .web-design-showcase {
    min-height: 520px;
  }

  .web-design-feature-grid,
  .web-design-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-design-feature-grid article,
  .web-design-feature-grid article:first-child,
  .web-design-feature-grid article:last-child,
  .web-design-process__steps li,
  .web-design-process__steps li:first-child,
  .web-design-process__steps li:last-child {
    padding-inline: 30px;
    border-right: 1px solid var(--line);
  }

  .web-design-feature-grid article:nth-child(2n),
  .web-design-process__steps li:nth-child(2n) {
    border-right: 0;
  }

  .web-design-feature-grid article:nth-child(n + 3),
  .web-design-process__steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .web-design-pricing__inner,
  .web-design-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .web-design-hero__inner,
  .web-design-pricing__inner,
  .web-design-faq__inner,
  .web-design-cta__inner {
    grid-template-columns: 1fr;
  }

  .web-design-hero__inner {
    gap: 70px;
  }

  .web-design-showcase {
    width: min(100%, 720px);
    min-height: 590px;
    margin-inline: auto;
  }

  .web-design-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .web-design-heading > p,
  .web-design-heading > div:last-child > p {
    max-width: 680px;
  }

  .web-design-pricing__inner,
  .web-design-faq__inner,
  .web-design-cta__inner {
    gap: 58px;
  }

  .web-design-pricing__card {
    max-width: 680px;
  }

  .web-design-faq__list {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-web-design {
    padding: 34px 0 72px;
  }

  .home-web-design__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    border-radius: 18px;
  }

  .home-web-design__copy {
    grid-area: copy;
    padding: 44px 24px 28px;
  }

  .home-web-design__copy::before {
    display: none;
  }

  .home-web-design__copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .home-web-design__copy > p:not(.eyebrow) {
    margin-bottom: 26px;
    font-size: 0.86rem;
  }

  .home-web-design__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .home-web-design__actions .button {
    width: 100%;
  }

  .home-web-design__actions > a:last-child {
    width: fit-content;
  }

  .home-web-design__media {
    min-height: 360px;
    overflow: hidden;
    grid-area: media;
  }

  .home-web-design__browser {
    top: 18px;
    right: 18px;
    left: 18px;
    transform: rotate(-1.5deg);
  }

  .home-web-design__browser img {
    height: 306px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 34%;
  }

  .home-web-design__browser--small {
    display: none;
  }

  .web-design-hero {
    padding: 132px 0 78px;
  }

  .web-design-hero__glow {
    top: 30%;
    right: -100%;
  }

  .web-design-hero__inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .web-design-hero__copy h1 {
    font-size: clamp(3.45rem, 15.2vw, 5.2rem);
    line-height: 0.9;
  }

  .web-design-hero__summary {
    font-size: 0.94rem;
  }

  .web-design-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .web-design-hero__actions .button {
    width: 100%;
  }

  .web-design-link {
    width: fit-content;
  }

  .web-design-hero__price {
    margin-top: 36px;
    padding-top: 22px;
  }

  .web-design-hero__price strong {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .web-design-hero__price p {
    max-width: 340px;
  }

  .web-design-showcase {
    min-height: 390px;
  }

  .web-design-browser--main {
    top: 7%;
    right: -5%;
    left: -5%;
    border-radius: 11px;
    transform: rotateZ(1.5deg);
  }

  .web-design-browser--one,
  .web-design-browser--two {
    bottom: 0;
    width: 34%;
  }

  .web-design-browser--one {
    left: 1%;
  }

  .web-design-browser--two {
    right: 1%;
  }

  .web-design-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .web-design-heading h2,
  .web-design-faq h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .web-design-heading > p,
  .web-design-heading > div:last-child > p {
    font-size: 0.87rem;
  }

  .web-design-feature-grid,
  .web-design-process__steps {
    grid-template-columns: 1fr;
  }

  .web-design-feature-grid article,
  .web-design-feature-grid article:first-child,
  .web-design-feature-grid article:last-child,
  .web-design-process__steps li,
  .web-design-process__steps li:first-child,
  .web-design-process__steps li:last-child {
    min-height: 0;
    padding: 28px 0 30px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .web-design-feature-grid article:first-child,
  .web-design-process__steps li:first-child {
    border-top: 0;
  }

  .web-design-feature-grid h3,
  .web-design-process__steps h3 {
    margin: 42px 0 12px;
    font-size: 1.7rem;
  }

  .web-design-pricing__inner,
  .web-design-cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .web-design-pricing__copy h2,
  .web-design-cta h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .web-design-pricing__copy .button,
  .web-design-cta .button {
    width: 100%;
  }

  .web-design-pricing__card {
    padding: 28px 22px;
    border-radius: 15px;
  }

  .web-design-work__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .web-design-work__grid article > div {
    border-radius: 11px;
  }

  .web-design-work__grid article > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .web-design-faq__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .web-design-faq summary {
    min-height: 76px;
    font-size: 1rem;
  }

  .web-design-faq details p {
    margin-right: 34px;
    font-size: 0.82rem;
  }
}
