:root {
  color-scheme: light;
  --ink: #211a2d;
  --muted: #6e6678;
  --line: #e8e0eb;
  --paper: #fffdfa;
  --cream: #fff8ea;
  --mist: #f5f1f6;
  --plum-950: #160c2d;
  --plum-900: #211044;
  --plum-800: #2d1952;
  --purple: #7b4be4;
  --lavender: #c6b5ff;
  --pink: #f24f9d;
  --pink-bright: #ff72b4;
  --shell: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow-soft: 0 24px 70px rgb(34 16 68 / 10%);
  font-family: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--plum-900);
  background: var(--cream);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell-width {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: white;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  min-height: 92px;
}

.brand-link {
  display: inline-flex;
  width: fit-content;
  border-radius: 12px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.9px;
}

.brand img {
  display: block;
  width: 43px;
  height: 43px;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  color: #e7dff1;
  font-size: 14px;
  font-weight: 720;
}

.desktop-nav a {
  padding-block: 9px;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 820;
  line-height: 1.1;
  letter-spacing: -0.15px;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-light,
.button-cream {
  color: var(--plum-900);
  background: var(--cream);
  box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
}

.button-light {
  min-height: 46px;
  padding-inline: 21px;
  font-size: 14px;
}

.button-light:hover,
.button-cream:hover {
  background: white;
}

.button-pink,
.button-primary {
  color: var(--plum-900);
  background: var(--pink-bright);
  box-shadow: 0 14px 34px rgb(242 79 157 / 24%);
}

.button-pink:hover,
.button-primary:hover {
  background: #ff8bc3;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 28%, rgb(123 75 228 / 18%), transparent 31%),
    linear-gradient(132deg, var(--plum-950) 0%, var(--plum-900) 58%, #26134d 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, var(--plum-950) 0%, rgb(22 12 45 / 98%) 30%, rgb(22 12 45 / 79%) 48%, rgb(22 12 45 / 8%) 78%),
    linear-gradient(0deg, rgb(22 12 45 / 32%), transparent 50%),
    url("/assets/spotlight-stage.png?v=20260720.2") center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -48%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgb(198 181 255 / 12%);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -190px;
  left: -160px;
  width: 440px;
  height: 440px;
  background: rgb(242 79 157 / 8%);
}

.hero-glow-two {
  right: 18%;
  bottom: -210px;
  width: 480px;
  height: 480px;
  background: rgb(123 75 228 / 14%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  gap: 54px;
  align-items: center;
  min-height: 770px;
  padding-top: 106px;
  padding-bottom: 54px;
}

.hero-grid > *,
.split-heading > *,
.audience-intro > *,
.performance-grid > *,
.closing-card > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-pink {
  color: var(--pink);
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 6.1vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -4.2px;
}

.hero h1 span {
  color: var(--cream);
  background-image: linear-gradient(90deg, var(--cream), #f5d89d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 570px;
  margin: 27px 0 0;
  color: #ddd4e8;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 10px 2px;
  font-weight: 780;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: white;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 21px;
  margin: 43px 0 0;
  padding: 0;
  color: #cfc5db;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-proof li span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgb(242 79 157 / 12%);
}

.hero-art-space {
  min-height: 540px;
}

.section-space {
  padding-block: 112px;
}

.section-heading h2,
.performance-copy h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(36px, 4.7vw, 56px);
  font-weight: 840;
  line-height: 1.06;
  letter-spacing: -2.8px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
}

.audience-tabs {
  position: relative;
  display: grid;
  width: min(100%, 760px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 46px;
  padding: 6px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
}

.audience-tab {
  display: grid;
  min-width: 0;
  min-height: 44px;
  padding: 10px 19px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.audience-tab:hover {
  color: var(--plum-900);
}

.audience-tab.is-active {
  color: white;
  background: var(--plum-900);
  box-shadow: 0 8px 20px rgb(33 16 68 / 18%);
}

.htmx-indicator {
  position: absolute;
  left: calc(100% + 14px);
  align-self: center;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 120ms ease;
}

.htmx-indicator.htmx-request {
  opacity: 1;
}

.audience-panel-schools,
.detail-hero-schools {
  --audience-hero: url("/assets/audience-schools-v1.jpg?v=20260720.5");
}

.audience-panel-organisers,
.detail-hero-organisers {
  --audience-hero: url("/assets/audience-organisers-v1.jpg?v=20260720.5");
}

.audience-panel-performers,
.detail-hero-performers {
  --audience-hero: url("/assets/audience-performers-v1.jpg?v=20260720.5");
}

.audience-panel-adjudicators,
.detail-hero-adjudicators {
  --audience-hero: url("/assets/audience-adjudicators-v1.jpg?v=20260720.5");
}

.audience-panel {
  margin-top: 25px;
  padding: 0 0 35px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--plum-900);
  box-shadow: var(--shadow-soft);
  animation: audience-panel-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes audience-panel-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.audience-panel-hero {
  display: flex;
  min-height: 370px;
  padding: 48px 45px;
  align-items: center;
  background:
    linear-gradient(90deg, var(--plum-900) 0%, rgb(33 16 68 / 98%) 31%, rgb(33 16 68 / 83%) 49%, rgb(33 16 68 / 16%) 78%),
    linear-gradient(0deg, var(--plum-900) 0%, rgb(33 16 68 / 6%) 42%),
    var(--audience-hero) center / cover no-repeat;
}

.audience-intro {
  width: min(540px, 52%);
}

.audience-intro h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.audience-intro > p:last-child {
  max-width: 520px;
  margin: 20px 0 0;
  color: #d7cde3;
  font-size: 17px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding-inline: 45px;
}

.benefit-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 5%);
}

.benefit-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--plum-900);
  background: var(--lavender);
  font-size: 11px;
  font-weight: 900;
}

.benefit-card:nth-child(2) .benefit-number {
  background: var(--pink-bright);
}

.benefit-card h4 {
  margin: 28px 0 8px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.benefit-card p {
  margin: 0;
  color: #d4cadd;
  font-size: 14px;
  line-height: 1.55;
}

.audience-more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 30px 45px 0;
  padding: 12px 2px;
  color: var(--cream);
  font-weight: 820;
}

.audience-more span {
  transition: transform 160ms ease;
}

.audience-more:hover span {
  transform: translateX(4px);
}

.detail-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: white;
  background: var(--plum-950);
}

.detail-hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--plum-950) 0%, rgb(22 12 45 / 98%) 35%, rgb(22 12 45 / 73%) 55%, rgb(22 12 45 / 10%) 82%),
    linear-gradient(0deg, rgb(22 12 45 / 28%), transparent 55%),
    var(--audience-hero, url("/assets/spotlight-stage.png?v=20260720.2")) center / cover no-repeat;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  padding-top: 148px;
  padding-bottom: 72px;
  align-items: center;
}

.detail-hero-copy {
  width: min(650px, 58%);
}

.breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 49px;
  align-items: center;
  color: #cfc4dc;
  font-size: 12px;
  font-weight: 740;
}

.breadcrumb a:hover {
  color: white;
}

.detail-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(47px, 5.8vw, 76px);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -4px;
}

.detail-hero-lede {
  max-width: 620px;
  margin: 27px 0 0;
  color: #e0d6ea;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}

.detail-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 39px 0 0;
  padding: 0;
  list-style: none;
}

.detail-signals li {
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  color: #ded4e7;
  background: rgb(22 12 45 / 52%);
  font-size: 11px;
  font-weight: 790;
  backdrop-filter: blur(8px);
}

.pressure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 105px;
  align-items: start;
}

.pressure-grid > * {
  min-width: 0;
}

.pressure-grid h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 58px);
  font-weight: 840;
  line-height: 1.04;
  letter-spacing: -3px;
}

.pressure-copy > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.pressure-note {
  margin-top: 32px;
  padding: 25px 27px;
  border-left: 4px solid var(--pink);
  border-radius: 0 18px 18px 0;
  background: var(--mist);
}

.pressure-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.pressure-note strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.capabilities-section {
  background: var(--mist);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.capability-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 34px rgb(33 16 68 / 5%);
}

.capability-kicker {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: #eee8ff;
  font-size: 10px;
  font-weight: 880;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.capability-card:nth-child(3n + 2) .capability-kicker {
  color: #a52567;
  background: #ffe8f3;
}

.capability-card h3 {
  margin: 35px 0 10px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.audience-journey {
  background: var(--paper);
}

.audience-journey-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.audience-journey-list li {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.audience-journey-list li::after {
  position: absolute;
  top: 41px;
  left: calc(100% + 1px);
  width: 11px;
  height: 1px;
  background: #d8cde1;
  content: "";
}

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

.journey-step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--plum-900);
  font-size: 10px;
  font-weight: 900;
}

.audience-journey-list li:nth-child(even) .journey-step-number {
  color: var(--plum-900);
  background: var(--pink-bright);
}

.audience-journey-list h3 {
  margin: 31px 0 9px;
  font-size: 19px;
  line-height: 1.17;
  letter-spacing: -0.5px;
}

.audience-journey-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.highlight-section {
  color: white;
  background:
    radial-gradient(circle at 92% 8%, rgb(123 75 228 / 22%), transparent 28%),
    var(--plum-950);
}

.highlight-section .split-heading > p {
  color: #cfc5db;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.highlight-card {
  padding: 39px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 26px;
  background: rgb(255 255 255 / 5%);
}

.highlight-kicker {
  margin: 0 0 22px;
  color: var(--pink-bright);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.highlight-card h3 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.highlight-card > p:not(.highlight-kicker) {
  margin: 21px 0 0;
  color: #d7cde1;
  font-size: 15px;
}

.highlight-card ul {
  display: grid;
  gap: 12px;
  margin: 29px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  list-style: none;
}

.highlight-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  color: #ede7f2;
  font-size: 13px;
}

.highlight-card li span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--plum-900);
  background: var(--lavender);
  font-size: 10px;
  font-weight: 900;
}

.competition-section {
  background: var(--cream);
}

.competition-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: 100px;
  align-items: start;
}

.competition-grid > * {
  min-width: 0;
}

.competition-grid h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 56px);
  line-height: 1.04;
  letter-spacing: -2.8px;
}

.competition-grid header > p:last-child {
  margin: 23px 0 0;
  color: #665c6e;
  font-size: 17px;
}

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

.competition-pillars article {
  min-height: 215px;
  padding: 25px;
  border: 1px solid #eadbc5;
  border-radius: 20px;
  background: rgb(255 255 255 / 62%);
}

.competition-pillars article > span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
}

.competition-pillars h3 {
  margin: 27px 0 8px;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.competition-pillars p {
  margin: 0;
  color: #716775;
  font-size: 13px;
  line-height: 1.55;
}

.flow-section {
  background: var(--mist);
}

.centred-heading {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.centred-heading > p:last-child {
  max-width: 620px;
  margin: 19px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  position: absolute;
  top: 25px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #d9cfe0;
  content: "";
}

.flow-list li {
  position: relative;
  text-align: center;
}

.flow-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  place-items: center;
  border: 7px solid var(--mist);
  border-radius: 50%;
  color: white;
  background: var(--plum-900);
  font-size: 11px;
  font-weight: 900;
  box-sizing: content-box;
}

.flow-list li:nth-child(even) .flow-number {
  color: var(--plum-900);
  background: var(--pink-bright);
}

.flow-list h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -0.4px;
}

.flow-list p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.all-performances {
  overflow: hidden;
  color: white;
  background: var(--plum-950);
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 85px;
  align-items: center;
}

.performance-copy {
  max-width: 580px;
}

.performance-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #d9d0e3;
  font-size: 17px;
}

.performance-cloud {
  position: relative;
  min-height: 460px;
}

.performance-cloud::before,
.performance-cloud::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(198 181 255 / 15%);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.performance-cloud::before {
  width: 390px;
  height: 390px;
}

.performance-cloud::after {
  width: 270px;
  height: 270px;
}

.performance-pill {
  position: absolute;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 999px;
  color: white;
  background: #2d1952;
  box-shadow: 0 15px 30px rgb(0 0 0 / 18%);
  font-size: 13px;
  font-weight: 800;
}

.pill-1 { top: 2%; left: 43%; }
.pill-2 { top: 19%; right: 2%; }
.pill-3 { right: 0; bottom: 23%; }
.pill-4 { right: 30%; bottom: 1%; }
.pill-5 { bottom: 14%; left: 2%; }
.pill-6 { top: 29%; left: -2%; }
.pill-7 { top: 3%; left: 8%; }

.mini-iris {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 206px;
  height: 206px;
  border-radius: 50%;
  background: #211044;
  transform: translate(-50%, -50%);
}

.mini-iris::after {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 40px rgb(255 248 234 / 24%);
  content: "";
  transform: translate(-50%, -50%);
}

.mini-blade {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 82px;
  width: 42px;
  height: 96px;
  clip-path: polygon(16% 0, 84% 0, 60% 100%, 40% 100%);
  background: var(--purple);
  transform-origin: 50% 100%;
}

.mini-blade-1 { background: var(--pink); transform: rotate(0deg); }
.mini-blade-2 { transform: rotate(60deg); }
.mini-blade-3 { background: var(--lavender); transform: rotate(120deg); }
.mini-blade-4 { background: var(--pink); transform: rotate(180deg); }
.mini-blade-5 { transform: rotate(240deg); }
.mini-blade-6 { background: var(--lavender); transform: rotate(300deg); }

.closing-section {
  padding: 40px 0;
  background: var(--paper);
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 64px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 88% -20%, rgb(242 79 157 / 25%), transparent 35%),
    linear-gradient(120deg, var(--plum-900), #351761);
  box-shadow: var(--shadow-soft);
}

.closing-card h2 {
  max-width: 680px;
}

.closing-card p:last-child {
  margin: 15px 0 0;
  color: #d9cfe4;
  font-size: 17px;
}

.closing-card .button {
  white-space: nowrap;
}

.site-footer {
  padding: 54px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  align-items: start;
}

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

.footer-grid > div > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  justify-content: flex-end;
  color: #544c5d;
  font-size: 13px;
  font-weight: 760;
}

.footer-grid nav a:hover {
  color: var(--pink);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #8a828f;
  font-size: 12px;
}

.not-found {
  display: flex;
  min-height: 100vh;
  width: min(calc(100% - 40px), 720px);
  margin-inline: auto;
  padding-block: 80px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1;
  letter-spacing: -3px;
}

.not-found p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.988);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.motion-ready [data-reveal-delay="2"] {
  transition-delay: 150ms;
}

.motion-ready [data-reveal-delay="3"] {
  transition-delay: 220ms;
}

.motion-ready [data-reveal].is-visible,
.motion-disabled [data-reveal] {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 20px;
  }

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

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

  .audience-journey-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-journey-list li::after {
    display: none;
  }

  .competition-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
    gap: 55px;
  }

  .performance-grid {
    gap: 40px;
  }
}

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

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .mobile-nav summary {
    padding: 9px 13px;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 230px;
    padding: 10px;
    border: 1px solid #e1d6e8;
    border-radius: 17px;
    color: var(--ink);
    background: white;
    box-shadow: 0 24px 60px rgb(10 3 25 / 25%);
  }

  .mobile-nav nav a {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 720;
  }

  .mobile-nav nav a:hover {
    background: var(--mist);
  }

  .header-sign-in {
    grid-column: 3;
    grid-row: 1;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, var(--plum-950) 0%, rgb(22 12 45 / 98%) 42%, rgb(22 12 45 / 72%) 59%, rgb(22 12 45 / 8%) 82%),
      url("/assets/spotlight-stage.png?v=20260720.2") 68% bottom / 100% auto no-repeat;
  }

  .hero-art-space {
    min-height: 480px;
  }

  .detail-hero,
  .detail-hero-inner {
    min-height: auto;
  }

  .detail-hero-art {
    background:
      linear-gradient(180deg, var(--plum-950) 0%, rgb(22 12 45 / 98%) 47%, rgb(22 12 45 / 67%) 63%, rgb(22 12 45 / 8%) 84%),
      var(--audience-hero, url("/assets/spotlight-stage.png?v=20260720.2")) 72% bottom / 150% auto no-repeat;
  }

  .detail-hero-inner {
    padding-top: 140px;
    padding-bottom: 460px;
    align-items: flex-start;
  }

  .detail-hero-copy {
    width: min(680px, 100%);
  }

  .pressure-grid,
  .competition-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .benefit-card {
    min-height: 0;
  }

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

  .audience-journey-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
  }

  .audience-journey-list h3 {
    margin-top: 4px;
  }

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

  .audience-intro {
    width: min(680px, 100%);
  }

  .audience-panel-hero {
    min-height: 540px;
    padding: 42px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, var(--plum-900) 0%, rgb(33 16 68 / 98%) 39%, rgb(33 16 68 / 68%) 57%, rgb(33 16 68 / 5%) 82%),
      linear-gradient(0deg, var(--plum-900) 0%, rgb(33 16 68 / 5%) 35%),
      var(--audience-hero) 72% bottom / cover no-repeat;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 25px;
  }

  .flow-list::before {
    display: none;
  }

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

  .performance-copy {
    max-width: 680px;
  }

  .closing-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .audience-tabs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .shell-width {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    gap: 10px;
    min-height: 78px;
  }

  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-sign-in {
    display: none;
  }

  .mobile-nav {
    grid-column: 3;
  }

  .hero-grid {
    padding-top: 128px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 60px);
    letter-spacing: -2.8px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
  }

  .hero-art-space {
    min-height: 360px;
  }

  .detail-hero-inner {
    padding-top: 118px;
    padding-bottom: 330px;
  }

  .breadcrumb {
    margin-bottom: 35px;
  }

  .detail-hero h1 {
    font-size: clamp(41px, 12vw, 58px);
    letter-spacing: -2.7px;
  }

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

  .detail-signals {
    margin-top: 30px;
  }

  .section-space {
    padding-block: 80px;
  }

  .section-heading h2,
  .performance-copy h2,
  .closing-card h2 {
    letter-spacing: -2px;
  }

  .split-heading > p,
  .centred-heading > p:last-child {
    font-size: 16px;
  }

  .audience-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
    border-radius: 16px;
  }

  .audience-tab {
    min-height: 44px;
    padding-inline: 14px;
    text-align: center;
  }

  .htmx-indicator {
    display: none;
  }

  .audience-panel {
    padding: 0 0 24px;
    border-radius: 24px;
  }

  .audience-panel-hero {
    min-height: 480px;
    padding: 27px 20px;
    background:
      linear-gradient(180deg, var(--plum-900) 0%, rgb(33 16 68 / 98%) 43%, rgb(33 16 68 / 63%) 60%, rgb(33 16 68 / 5%) 84%),
      linear-gradient(0deg, var(--plum-900) 0%, rgb(33 16 68 / 5%) 35%),
      var(--audience-hero) 74% bottom / cover no-repeat;
  }

  .benefit-grid {
    margin-top: 20px;
    padding-inline: 20px;
  }

  .audience-more {
    margin: 24px 20px 0;
  }

  .capability-grid,
  .competition-pillars {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 26px;
  }

  .pressure-grid h2,
  .competition-grid h2 {
    letter-spacing: -2px;
  }

  .highlight-card {
    padding: 29px 24px;
  }

  .audience-journey-list {
    margin-top: 42px;
  }

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

  .flow-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    align-items: start;
    text-align: left;
  }

  .flow-number {
    margin: 0;
  }

  .flow-list p {
    margin: 0;
  }

  .performance-grid {
    gap: 35px;
  }

  .performance-cloud {
    display: flex;
    min-height: 390px;
    padding-top: 282px;
    align-content: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .performance-cloud::before {
    top: 118px;
    width: min(330px, 92%);
    height: auto;
    aspect-ratio: 1;
  }

  .performance-cloud::after {
    top: 118px;
    width: min(240px, 70%);
    height: auto;
    aspect-ratio: 1;
  }

  .performance-pill {
    position: static;
  }

  .mini-iris {
    top: 118px;
    width: min(206px, 62%);
    height: auto;
    aspect-ratio: 1;
  }

  .mini-blade {
    top: 3.4%;
    left: 39.8%;
    width: 20.4%;
    height: 46.6%;
  }

  .closing-section {
    padding: 14px 0;
  }

  .closing-card {
    gap: 30px;
    padding: 38px 26px;
    border-radius: 24px;
  }

  .closing-card .button {
    width: 100%;
    white-space: normal;
  }

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

  .footer-grid nav {
    display: grid;
    justify-content: start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(40px, 12.7vw, 52px);
    letter-spacing: -2.4px;
  }

  .detail-hero h1 {
    font-size: clamp(38px, 11.8vw, 50px);
    letter-spacing: -2.2px;
  }

  .audience-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    overflow: visible;
    border-radius: 20px;
  }

  .audience-tab {
    min-height: 44px;
    text-align: center;
  }

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

  .detail-signals li {
    text-align: center;
  }

  .performance-cloud {
    min-height: 410px;
    padding-top: 268px;
  }

  .performance-cloud::before,
  .performance-cloud::after,
  .mini-iris {
    top: 110px;
  }

  .footer-grid nav a {
    min-height: 36px;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .audience-panel {
    animation: none;
  }
}
