:root {
  color-scheme: dark;
  --canvas: #07111b;
  --canvas-deep: #030a11;
  --navy: #0b1e2d;
  --surface: #101923;
  --surface-raised: #16212c;
  --border: #26323d;
  --border-soft: rgb(255 255 255 / 10%);
  --text: #f6f7f8;
  --muted: #a4acb5;
  --muted-dark: #737e89;
  --coral: #ff514a;
  --coral-pressed: #e9443e;
  --teal: #31c6c8;
  --sky: #2f9ed8;
  --purple: #7653cf;
  --magenta: #b44cc7;
  --orange: #ff8a45;
  --yellow: #f5c552;

  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-editorial: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.02rem + 0.45vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2.35rem, 1.7rem + 2.6vw, 4.4rem);
  --text-display: clamp(3.5rem, 2.3rem + 5.7vw, 8rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: clamp(5rem, 9vw, 9rem);
  --space-10: clamp(6.5rem, 10vw, 10rem);

  --container-copy: 46rem;
  --container: 82rem;
  --container-wide: 96rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-photo: clamp(1rem, 2vw, 1.5rem);
  --shadow-phone: 0 2rem 5rem rgb(0 0 0 / 48%);
  --shadow-photo: 0 1rem 3rem rgb(0 0 0 / 28%);
  --focus: 0 0 0 3px var(--canvas), 0 0 0 6px var(--text);

  --motion-fast: 160ms;
  --motion-standard: 260ms;
  --motion-slow: 600ms;
  --ease-purposeful: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  border-radius: 0.25rem;
  outline: 0;
  box-shadow: var(--focus);
}

::selection {
  background: var(--coral);
  color: #fff;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--canvas);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform var(--motion-fast) ease;
}

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

.container,
.container-wide {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.container-wide {
  max-width: var(--container-wide);
}

.section {
  position: relative;
  padding-block: var(--space-10);
  border-top: 1px solid var(--border-soft);
}

.section-heading {
  max-width: var(--container-copy);
}

.section-heading--wide {
  max-width: 64rem;
}

.section-heading h2,
.download h2 {
  max-width: 16ch;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading--wide h2 {
  max-width: 20ch;
}

.section-heading p,
.download__copy > p {
  max-width: 43rem;
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity var(--motion-slow) var(--ease-purposeful),
    transform var(--motion-slow) var(--ease-purposeful);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: rgb(3 10 17 / 78%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-5);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
}

.brand__name {
  font-size: 1.25rem;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
}

.primary-navigation a,
.footer-group a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 650;
  text-decoration: none;
  transition: color var(--motion-fast) ease;
}

.primary-navigation a:hover,
.footer-group a:hover {
  color: var(--text);
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding-inline: 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--coral);
  color: var(--canvas-deep);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-purposeful);
}

.button:hover {
  background: var(--coral-pressed);
  transform: translateY(-2px);
}

.button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 2.8rem;
  font-size: var(--text-sm);
}

.menu-button {
  width: 3rem;
  height: 3rem;
  display: none;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  transition: transform var(--motion-standard) var(--ease-purposeful);
}

.menu-button span:nth-of-type(2) {
  transform: translateY(-0.3rem);
}

.menu-button span:nth-of-type(3) {
  transform: translateY(0.3rem);
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  transform: rotate(-45deg);
}

/* Store actions */

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-button {
  min-width: 10.6rem;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 0.55rem;
  background: #030609;
  color: #fff;
  font-family: var(--font-sans);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--ease-purposeful);
}

.store-button:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.store-button__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button__icon--play path:first-child {
  fill: #31c6c8;
}

.store-button__icon--play path:nth-child(2) {
  fill: #f5c552;
}

.store-button__icon--play path:last-child {
  fill: #ff514a;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: 1.05rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.store-button small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0;
}

.store-button[data-placeholder="true"] {
  border-color: rgb(255 255 255 / 18%);
  background: rgb(3 6 9 / 64%);
  color: rgb(255 255 255 / 78%);
}

.store-button[data-placeholder="true"]:hover {
  border-color: rgb(255 255 255 / 30%);
  transform: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, rgb(49 198 200 / 6%), transparent 34rem),
    var(--canvas-deep);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(36rem, 1.17fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 6rem);
}

.hero__copy {
  position: relative;
  z-index: 5;
}

.hero h1 {
  max-width: none;
  font-size: clamp(3.5rem, 5.8vw, 5.8rem);
  font-weight: 770;
  letter-spacing: -0.072em;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero__brand-line {
  color: var(--text);
  font-size: 0.86em;
}

.hero__lede {
  max-width: 35rem;
  margin: var(--space-6) 0 var(--space-6);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.availability-note {
  margin-top: 0.8rem;
  color: var(--muted-dark);
  font-size: var(--text-xs);
}

.hero-composition {
  position: relative;
  min-height: clamp(35rem, 61vw, 48rem);
  isolation: isolate;
}

.perspective-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.perspective-frame img,
.feature-story__media > img,
.event-tile img,
.role img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perspective-frame--one img {
  object-position: center 42%;
}

.perspective-frame--two img,
.perspective-frame--three img {
  object-position: center 46%;
}

.perspective-frame--one {
  inset: 6% 0 auto 15%;
  width: 50%;
  aspect-ratio: 1.45;
  transform: rotate(1.8deg);
}

.perspective-frame--two {
  inset: 52% auto auto 4%;
  width: 27%;
  aspect-ratio: 0.8;
  transform: rotate(-4deg);
}

.perspective-frame--three {
  inset: auto 3% 5% auto;
  width: 31%;
  aspect-ratio: 0.87;
  transform: rotate(3deg);
}

.device-frame {
  position: relative;
  overflow: hidden;
  border: clamp(0.35rem, 0.7vw, 0.6rem) solid #111820;
  border-radius: clamp(1.8rem, 4vw, 3rem);
  background: #02070c;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 18%),
    var(--shadow-phone);
}

.device-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0.1rem 0.35rem rgb(255 255 255 / 10%);
  pointer-events: none;
}

.device-frame__hardware {
  position: absolute;
  z-index: 4;
  top: 0.65rem;
  left: 50%;
  width: 31%;
  height: 1.15rem;
  border-radius: 2rem;
  background: #000;
  transform: translateX(-50%);
}

.device-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.device-frame--hero-front,
.device-frame--hero-back {
  position: absolute;
  z-index: 2;
  width: clamp(14rem, 20vw, 19rem);
  aspect-ratio: 0.46;
}

.device-frame--hero-front {
  top: 22%;
  left: 46%;
  transform: rotate(2.5deg);
}

.device-frame--hero-back {
  z-index: 1;
  top: 29%;
  left: 24%;
  transform: rotate(-4deg);
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-dark);
  font-size: var(--text-xs);
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

/* Convergence */

.convergence {
  overflow: hidden;
  background: var(--navy);
}

.convergence-map {
  min-height: 33rem;
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(10rem, 0.45fr) 7rem minmax(22rem, 1.35fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: var(--space-8);
}

.scattered-media {
  position: relative;
  height: 25rem;
}

.scattered-media img {
  position: absolute;
  width: 56%;
  aspect-ratio: 1.1;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-photo);
}

.scattered-media img:first-child {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
}

.scattered-media img:nth-child(2) {
  top: 28%;
  right: 0;
  transform: rotate(5deg);
}

.scattered-media img:last-child {
  bottom: 0;
  left: 8%;
  transform: rotate(-2deg);
}

.source-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  position: relative;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: var(--text-sm);
}

.source-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5rem);
  width: clamp(1rem, 4vw, 4rem);
  border-top: 1px dashed var(--muted-dark);
}

.convergence-mark {
  position: relative;
  display: grid;
  place-items: center;
}

.convergence-mark span {
  position: absolute;
  left: -45%;
  width: 80%;
  border-top: 1px solid var(--border);
  transform-origin: right;
}

.convergence-mark span:first-child {
  transform: rotate(-18deg);
}

.convergence-mark span:last-of-type {
  transform: rotate(18deg);
}

.convergence-mark::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 2rem;
  border-top: 2px solid var(--coral);
}

.convergence-mark img {
  position: relative;
  z-index: 2;
  width: 5.5rem;
}

.event-library {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgb(3 10 17 / 50%);
}

.event-library figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
}

.event-library figcaption span {
  color: var(--muted-dark);
  font-size: var(--text-xs);
}

.event-library__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.event-library__grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: 0.4rem;
}

/* How it works */

.how {
  background: var(--canvas-deep);
}

.how__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.how__phone-column {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.device-frame--sticky {
  position: sticky;
  top: 8rem;
  width: min(100%, 22rem);
  aspect-ratio: 0.46;
}

.media-placeholder-note {
  position: sticky;
  top: calc(8rem + min(47rem, 172vw));
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: var(--text-xs);
  text-align: center;
}

.steps {
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}

.step {
  border-top: 1px solid var(--border);
  transition: border-color var(--motion-standard) ease;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step button {
  width: 100%;
  min-height: 9rem;
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 2rem 0;
  border: 0;
  background: transparent;
  color: var(--muted-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--motion-standard) ease;
}

.step button:hover,
.step.is-active button {
  color: var(--text);
}

.step.is-active {
  border-top-color: var(--coral);
}

.step__number {
  color: var(--muted-dark);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.step.is-active .step__number {
  color: var(--coral);
}

.step__copy {
  display: grid;
  gap: 0.6rem;
}

.step__copy strong {
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.step__copy > span {
  max-width: 34rem;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.55;
}

/* Feature stories */

.features {
  padding-bottom: 0;
}

.feature-story {
  padding-block: var(--space-9);
  border-top: 1px solid var(--border-soft);
}

.features > .container + .feature-story {
  margin-top: var(--space-7);
}

.feature-story--audience,
.feature-story--themes {
  background: var(--navy);
}

.feature-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.feature-story__grid--reverse {
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
}

.feature-story__media {
  position: relative;
  min-height: 34rem;
}

.feature-story__media > img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-photo);
}

.feature-story--themes .feature-story__media > img {
  object-position: center 50%;
}

.qr-card {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7.8rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--canvas-deep);
  box-shadow: var(--shadow-photo);
}

.qr-card svg {
  fill: var(--text);
}

.feature-story__copy {
  display: grid;
}

.feature-point {
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
}

.feature-point:last-child {
  border-bottom: 1px solid var(--border);
}

.feature-point__index {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.16em;
}

.feature-point h3 {
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.feature-point p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-point--large h3 {
  font-size: var(--text-2xl);
}

.feature-point--large p {
  max-width: 34rem;
  font-size: var(--text-lg);
}

.feature-story__media--phone {
  display: grid;
  place-items: center;
}

.device-frame--landscape-detail {
  width: min(100%, 24rem);
  aspect-ratio: 0.46;
}

.feature-story__media--gallery {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  transform: translateX(1rem);
}

.mini-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-photo);
}

.mini-gallery img:nth-child(2),
.mini-gallery img:nth-child(3) {
  transform: translateX(1rem);
}

.device-frame--gallery {
  z-index: 2;
  width: 15rem;
  aspect-ratio: 0.46;
}

/* Event categories */

.events {
  background: var(--canvas-deep);
}

.event-rail {
  width: min(calc(100% - var(--gutter)), var(--container-wide));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  margin: var(--space-8) auto 0;
}

.event-tile {
  grid-column: span 3;
  min-height: 24rem;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  color: var(--text);
  font-weight: 680;
  text-decoration: none;
}

.event-tile--wide {
  grid-column: span 5;
  min-height: 21rem;
}

.event-tile--tall {
  grid-column: span 4;
  min-height: 29rem;
}

.event-tile img {
  min-height: 0;
  border-radius: var(--radius-photo);
  filter: saturate(0.86);
  transition:
    filter var(--motion-standard) ease,
    transform var(--motion-slow) var(--ease-purposeful);
}

.event-tile:hover img {
  filter: saturate(1);
  transform: scale(1.012);
}

.event-tile span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.event-tile b {
  color: var(--coral);
  font-size: 1.2rem;
  font-weight: 500;
}

.planned-note {
  margin-top: var(--space-7);
  color: var(--muted-dark);
  font-size: var(--text-sm);
}

/* Roles */

.role-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(30rem, 1.3fr);
  gap: 1px;
  margin-top: var(--space-8);
  background: var(--border);
}

.role {
  position: relative;
  min-height: 47rem;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  background: var(--canvas);
}

.role--organiser {
  background: var(--navy);
}

.role__number {
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.role h3 {
  max-width: 16ch;
  margin-top: 1.25rem;
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.role--organiser h3 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.role > p {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--muted);
}

.device-frame--role {
  position: absolute;
  bottom: -10rem;
  left: 50%;
  width: min(65%, 16rem);
  aspect-ratio: 0.46;
  transform: translateX(-50%);
}

.organiser-composition {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  height: 24rem;
}

.organiser-composition > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-photo);
}

.organiser-composition__rail {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-sm);
  background: rgb(3 10 17 / 82%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: var(--text-sm);
}

.organiser-composition__rail span + span::before {
  content: "·";
  margin-right: 0.75rem;
  color: var(--coral);
}

/* Pricing */

.pricing {
  background: var(--canvas-deep);
}

.pricing__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(32rem, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.pricing-structure {
  padding-top: 0.5rem;
}

.pricing-structure__label {
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-structure dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}

.pricing-structure dl div {
  min-height: 6rem;
  padding: 1.4rem 1rem 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-structure dt {
  font-size: var(--text-lg);
  font-weight: 680;
}

.pricing-structure dd {
  color: var(--muted-dark);
  font-size: var(--text-sm);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--text);
  font-weight: 720;
  text-decoration: none;
}

.text-link svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform var(--motion-fast) ease;
}

.text-link:hover svg {
  transform: translateX(0.2rem);
}

/* Trust */

.trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(25rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.trust__story > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  max-height: 34rem;
  margin-top: var(--space-7);
  object-fit: cover;
  object-position: center 44%;
  border-radius: var(--radius-photo);
}

.trust__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}

.device-frame--trust {
  width: min(15rem, 35vw);
  aspect-ratio: 0.46;
}

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

.trust__controls li {
  position: relative;
  padding: 1rem 0 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}

.trust__controls li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid var(--coral);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Download */

.download {
  min-height: 50rem;
  display: grid;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.download__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.72fr) minmax(35rem, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.download h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.download .store-actions {
  margin-top: var(--space-6);
}

.store-status {
  min-height: 1.5rem;
  margin-top: 0.7rem;
  color: var(--muted-dark);
  font-size: var(--text-xs);
}

.qr-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: var(--space-6);
}

.qr-download__placeholder {
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  border: 1px dashed var(--muted-dark);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, transparent 44%, rgb(255 255 255 / 8%) 44% 56%, transparent 56%),
    linear-gradient(transparent 44%, rgb(255 255 255 / 8%) 44% 56%, transparent 56%),
    var(--canvas-deep);
  background-size: 1rem 1rem;
}

.qr-download__placeholder img {
  width: 3.2rem;
  background: var(--canvas-deep);
}

.qr-download p {
  display: grid;
  font-size: var(--text-sm);
}

.qr-download p span {
  color: var(--muted-dark);
  font-size: var(--text-xs);
}

.download-perspectives {
  position: relative;
  min-height: 39rem;
}

.download-perspectives > img {
  position: absolute;
  width: 34%;
  height: auto;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.download-perspectives__one {
  top: 4%;
  left: 1%;
  transform: rotate(-3deg);
}

.download-perspectives__two {
  top: 37%;
  left: -4%;
  transform: rotate(2deg);
}

.download-perspectives__three {
  right: 0;
  bottom: 4%;
  transform: rotate(3deg);
}

.device-frame--download {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 42%;
  width: 17.5rem;
  aspect-ratio: 0.46;
  transform: rotate(1.5deg);
}

/* Footer */

.site-footer {
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--canvas-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.brand--footer {
  align-self: start;
}

.brand--footer .brand__mark {
  width: 3.5rem;
  height: 3.5rem;
}

.brand--footer .brand__name {
  font-size: 1.6rem;
}

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

.footer-group h2 {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group a {
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.footer-group a[data-placeholder="true"]::after,
.store-button[data-placeholder="true"]::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  color: var(--muted-dark);
  font-size: var(--text-xs);
}

/* Error page */

.error-page__main {
  min-height: calc(100svh - 5rem);
}

.error-page__hero {
  min-height: calc(100svh - 5rem);
  display: grid;
  align-items: center;
  padding: clamp(8rem, 13vw, 11rem) 0 var(--space-9);
  overflow: hidden;
}

.error-page__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.75fr) minmax(32rem, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.error-page__code {
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-page__copy h1 {
  max-width: 10ch;
  margin-top: var(--space-4);
  font-family: var(--font-editorial);
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.error-page__copy > p:not(.error-page__code) {
  max-width: 35rem;
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.error-page__actions .text-link {
  margin-top: 0;
}

.error-page__media {
  position: relative;
  min-height: clamp(31rem, 52vw, 48rem);
}

.error-page__photo,
.error-page__device {
  position: absolute;
  box-shadow: var(--shadow-photo);
}

.error-page__photo {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-photo);
}

.error-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-page__photo--main {
  top: 5%;
  right: 0;
  width: 76%;
  aspect-ratio: 1.38;
  transform: rotate(1.5deg);
}

.error-page__photo--main img {
  object-position: center 45%;
}

.error-page__photo--detail {
  right: 1%;
  bottom: 2%;
  width: 33%;
  aspect-ratio: 0.82;
  transform: rotate(3deg);
}

.error-page__photo--detail img {
  object-position: center 40%;
}

.error-page__device {
  z-index: 2;
  bottom: 0;
  left: 7%;
  width: clamp(11rem, 19vw, 17rem);
  aspect-ratio: 0.46;
  transform: rotate(-2deg);
}

@media (max-width: 60rem) {
  .error-page__grid {
    grid-template-columns: 1fr;
  }

  .error-page__copy {
    max-width: 48rem;
  }

  .error-page__media {
    min-height: 39rem;
  }
}

@media (max-width: 43rem) {
  .error-page__hero {
    padding-top: 7rem;
  }

  .error-page__copy h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .error-page__media {
    min-height: 29rem;
  }

  .error-page__photo--main {
    width: 84%;
  }

  .error-page__photo--detail {
    width: 38%;
  }

  .error-page__device {
    left: 3%;
    width: 11.5rem;
  }
}

/* Responsive */

@media (max-width: 75rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  }

  .convergence-map {
    grid-template-columns: minmax(12rem, 0.7fr) minmax(9rem, 0.4fr) 5rem minmax(20rem, 1.3fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }

  .brand--footer {
    grid-row: span 2;
  }
}

@media (max-width: 60rem) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    z-index: 2;
    grid-column: 3;
    display: grid;
  }

  .header-action {
    display: none;
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 6rem var(--gutter) 3rem;
    overflow-y: auto;
    background: var(--canvas-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition:
      opacity var(--motion-standard) ease,
      transform var(--motion-standard) var(--ease-purposeful),
      visibility var(--motion-standard);
  }

  .menu-open .primary-navigation {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-navigation a {
    width: 100%;
    min-height: 4.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-editorial);
    font-size: var(--text-xl);
    font-weight: 500;
  }

  .no-js .primary-navigation {
    position: static;
    grid-column: 1 / -1;
    display: flex;
    flex-flow: row wrap;
    padding: 0 0 1rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .no-js .primary-navigation a {
    width: auto;
    min-height: 44px;
    border: 0;
    font-family: var(--font-sans);
    font-size: var(--text-sm);
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

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

  .hero__copy {
    max-width: 47rem;
  }

  .hero-composition {
    min-height: 43rem;
  }

  .convergence-map {
    grid-template-columns: 1fr 1fr;
  }

  .convergence-mark {
    grid-column: 1 / -1;
    margin-block: 1.5rem;
  }

  .convergence-mark span,
  .convergence-mark::after,
  .source-list li::after {
    display: none;
  }

  .event-library {
    grid-column: 1 / -1;
  }

  .how__grid,
  .pricing__grid,
  .trust__grid,
  .download__grid {
    grid-template-columns: 1fr;
  }

  .how__phone-column {
    display: none;
  }

  .feature-story__grid,
  .feature-story__grid--reverse {
    grid-template-columns: 1fr;
  }

  .feature-story__grid--reverse .feature-story__copy {
    order: 2;
  }

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

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

  .trust__controls {
    justify-content: center;
  }

  .download-perspectives {
    min-height: 42rem;
  }
}

@media (max-width: 43rem) {
  :root {
    --gutter: 1.25rem;
    --space-10: 5.75rem;
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .brand__mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 14vw, 3.9rem);
    letter-spacing: -0.064em;
    line-height: 0.9;
  }

  .hero__brand-line {
    color: var(--text);
    font-size: 0.72em;
  }

  .hero__lede {
    font-size: 1.1rem;
  }

  .hero .store-actions,
  .download .store-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-button {
    min-width: 0;
    width: 100%;
    min-height: 3.4rem;
    gap: 0.5rem;
    padding-inline: 0.65rem;
  }

  .store-button__icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .store-button span {
    font-size: 0.9rem;
  }

  .store-button small {
    font-size: 0.55rem;
  }

  .hero-composition {
    min-height: 31rem;
    margin-top: 0.5rem;
  }

  .perspective-frame--one {
    top: 2%;
    left: 36%;
    width: 62%;
  }

  .perspective-frame--two {
    top: 58%;
    left: 0;
    width: 34%;
  }

  .perspective-frame--three {
    right: 0;
    bottom: 0;
    width: 36%;
  }

  .device-frame--hero-front,
  .device-frame--hero-back {
    width: 11.5rem;
  }

  .device-frame--hero-front {
    top: 15%;
    left: 42%;
  }

  .device-frame--hero-back {
    top: 25%;
    left: 13%;
  }

  .scroll-cue {
    display: none;
  }

  .convergence-map {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scattered-media {
    height: 20rem;
  }

  .source-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }

  .convergence-mark,
  .event-library {
    grid-column: 1;
  }

  .convergence-mark::before {
    content: "↓";
    position: absolute;
    top: calc(100% + 0.75rem);
    color: var(--coral);
  }

  .event-library figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }

  .step button {
    grid-template-columns: 2.5rem 1fr;
    min-height: 8rem;
  }

  .feature-story__media {
    min-height: 25rem;
  }

  .feature-story--themes .feature-story__media {
    min-height: 32rem;
  }

  .qr-card {
    right: 1rem;
    bottom: -1rem;
    width: 6rem;
  }

  .feature-story__media--gallery {
    grid-template-columns: 1fr;
  }

  .mini-gallery {
    padding-right: 4rem;
    transform: none;
  }

  .device-frame--gallery {
    position: absolute;
    right: 0;
    width: 10rem;
  }

  .event-rail {
    width: 100%;
    display: flex;
    gap: 0.75rem;
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .event-tile,
  .event-tile--wide,
  .event-tile--tall {
    width: min(76vw, 19rem);
    min-height: 27rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .role {
    min-height: 42rem;
    padding: 2rem 1.25rem;
  }

  .role--organiser {
    min-height: 45rem;
  }

  .organiser-composition {
    right: 1.25rem;
    left: 1.25rem;
  }

  .organiser-composition__rail {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .organiser-composition__rail span + span::before {
    margin-right: 0.35rem;
  }

  .pricing-structure dl {
    grid-template-columns: 1fr;
  }

  .pricing-structure dl div {
    min-height: auto;
  }

  .trust__controls {
    grid-template-columns: minmax(8rem, 10rem) 1fr;
    gap: 1rem;
  }

  .device-frame--trust {
    width: 100%;
  }

  .trust__controls li {
    padding-block: 0.75rem;
    font-size: var(--text-xs);
  }

  .qr-download {
    display: none;
  }

  .download {
    min-height: auto;
  }

  .download-perspectives {
    min-height: 31rem;
  }

  .download-perspectives > img {
    width: 45%;
  }

  .device-frame--download {
    left: 36%;
    width: 12.5rem;
  }

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

  .brand--footer {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-group--social {
    grid-column: auto;
  }

  .site-footer__base {
    flex-direction: column;
  }
}

/* Secondary marketing pages */

.primary-navigation a[aria-current="page"] {
  color: var(--text);
}

.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  min-height: min(54rem, 92svh);
  display: grid;
  align-items: center;
  padding-block: clamp(8rem, 13vw, 12rem) var(--space-9);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 34%, rgb(255 81 74 / 8%), transparent 30rem),
    var(--canvas-deep);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(30rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.page-hero__eyebrow,
.story-index,
.event-story__label,
.comparison-label {
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 11ch;
  margin-top: 1.25rem;
  font-family: var(--font-editorial);
  font-size: clamp(3.3rem, 2.3rem + 4.7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.page-hero__lede {
  max-width: 35rem;
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: var(--space-6);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration-color: var(--coral);
  text-underline-offset: 0.4rem;
}

.text-link::after {
  content: "↓";
  color: var(--coral);
}

.page-hero__media {
  position: relative;
  min-height: clamp(31rem, 46vw, 44rem);
}

.page-hero__photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.page-hero__photo img,
.story-media__photo img,
.event-story__image img,
.photo-quilt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__photo--wide {
  inset: 4% 9% 25% 3%;
  aspect-ratio: 16 / 10;
}

.page-hero__photo--portrait {
  right: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
}

.page-hero__photo--small {
  bottom: 2%;
  left: 0;
  width: 34%;
  aspect-ratio: 4 / 5;
  transform: rotate(-3deg);
}

.page-hero__device {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 2%;
  width: clamp(13rem, 18vw, 18rem);
  aspect-ratio: 0.46;
}

.page-hero__device--left {
  right: auto;
  bottom: 0;
  left: 9%;
}

.page-hero__device--back {
  z-index: 2;
  right: 0;
  bottom: 8%;
  width: clamp(11rem, 15vw, 15rem);
  opacity: 0.86;
  transform: rotate(4deg);
}

.page-hero--features .page-hero__photo--wide img {
  object-position: center 65%;
}

.page-hero--events .page-hero__photo--wide {
  inset: 0 0 18% 6%;
}

.page-hero--events .page-hero__photo--wide img {
  object-position: center 46%;
}

.page-hero--events .page-hero__photo--portrait img {
  object-position: center 40%;
}

.secondary-intro {
  background: var(--canvas);
}

.secondary-intro__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(20rem, 1.45fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.secondary-intro__aside {
  max-width: 15rem;
  color: var(--muted-dark);
  font-size: var(--text-sm);
}

.secondary-intro__copy {
  max-width: 54rem;
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.story-list {
  border-top: 1px solid var(--border-soft);
}

.story {
  position: relative;
  padding-block: var(--space-9);
  border-bottom: 1px solid var(--border-soft);
}

.story:nth-child(even),
.story--navy {
  background: var(--navy);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.88fr) minmax(26rem, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.story__grid--reverse .story__copy {
  order: 2;
}

.story__copy {
  max-width: 38rem;
}

.story__copy h2 {
  max-width: 14ch;
  margin-top: 1.2rem;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.story__copy > p {
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.story__points {
  display: grid;
  gap: 0;
  margin: var(--space-6) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.story__points li {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.story__points li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.story-media {
  position: relative;
  min-height: clamp(28rem, 43vw, 41rem);
}

.story-media__photo {
  position: absolute;
  inset: 5% 7% 8% 0;
  overflow: hidden;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.story-media__photo img {
  object-position: center 46%;
}

.story-media__device {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: clamp(12rem, 18vw, 17rem);
  aspect-ratio: 0.46;
}

.story-media__device--left {
  right: auto;
  left: 0;
}

.story-media__photo--right {
  inset: 5% 0 8% 7%;
}

.story-media--device-only {
  display: grid;
  place-items: center;
}

.story-media--device-only .story-media__device {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(100%, 19rem);
}

.story-media--convergence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-content: center;
}

.story-media--convergence img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story-media--convergence img:nth-child(2),
.story-media--convergence img:nth-child(4) {
  transform: translateY(1.6rem);
}

.story-media--convergence .device-frame {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 0;
  width: clamp(11rem, 15vw, 14rem);
  aspect-ratio: 0.46;
  transform: translateX(50%);
}

.journey-comparison {
  background: var(--canvas-deep);
}

.journey-comparison__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(22rem, 1.2fr);
  gap: 1px;
  margin-top: var(--space-8);
  background: var(--border);
}

.journey-track {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--canvas);
}

.journey-track--organiser {
  background: var(--navy);
}

.journey-track h3 {
  margin-top: 1rem;
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 500;
}

.journey-track ol {
  display: grid;
  gap: 0;
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: journey;
}

.journey-track li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  counter-increment: journey;
}

.journey-track li:last-child {
  border-bottom: 1px solid var(--border);
}

.journey-track li::before {
  content: counter(journey, decimal-leading-zero);
  color: var(--coral);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
}

.faq-list {
  max-width: 58rem;
  margin-top: var(--space-8);
  border-bottom: 1px solid var(--border);
}

.faq-list details {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 48rem;
  padding: 0 0 1.5rem;
  color: var(--muted);
}

.photo-quilt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-content: center;
}

.photo-quilt figure {
  overflow: hidden;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.photo-quilt figure:nth-child(1),
.photo-quilt figure:nth-child(4) {
  aspect-ratio: 16 / 10;
}

.photo-quilt figure:nth-child(2),
.photo-quilt figure:nth-child(3) {
  aspect-ratio: 4 / 5;
}

.photo-quilt figure:nth-child(2) {
  transform: translateY(1.5rem);
}

.feature-philosophy {
  overflow: hidden;
  background: var(--coral);
  color: #fff;
}

.feature-philosophy__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(22rem, 1.2fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.feature-philosophy h2 {
  max-width: 12ch;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.feature-philosophy blockquote {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.feature-philosophy p {
  max-width: 38rem;
  margin-top: var(--space-5);
  color: rgb(255 255 255 / 82%);
}

.event-stories {
  background: var(--canvas-deep);
}

.event-story {
  display: grid;
  grid-template-columns: minmax(22rem, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding-block: var(--space-9);
  border-top: 1px solid var(--border-soft);
}

.event-story:first-child {
  padding-top: 0;
  border-top: 0;
}

.event-story:nth-child(even) .event-story__image {
  order: 2;
}

.event-story__image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-photo);
}

.event-story__image--portrait {
  aspect-ratio: 4 / 5;
  width: min(100%, 32rem);
  justify-self: center;
}

.event-story__image img {
  object-position: center 48%;
  filter: saturate(0.9);
}

.event-story__copy {
  max-width: 38rem;
}

.event-story__copy h2 {
  margin-top: 1rem;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.event-story__copy > p {
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.event-priorities {
  overflow-x: auto;
  margin-top: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.event-priorities table {
  width: 100%;
  min-width: 50rem;
  border-collapse: collapse;
  background: var(--canvas-deep);
  text-align: left;
}

.event-priorities th,
.event-priorities td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.event-priorities th {
  color: var(--text);
  font-size: var(--text-sm);
}

.event-priorities td {
  color: var(--muted);
  font-size: var(--text-sm);
}

.event-priorities tbody tr:last-child th,
.event-priorities tbody tr:last-child td {
  border-bottom: 0;
}

.future-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: var(--space-7) 0 0;
  padding: 0;
  list-style: none;
}

.future-event-list li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--text-sm);
}

.page-download {
  background: var(--canvas-deep);
}

.page-download__grid {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(25rem, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.page-download h2 {
  max-width: 13ch;
  font-family: var(--font-editorial);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.page-download__copy > p {
  max-width: 35rem;
  margin-top: var(--space-5);
  color: var(--muted);
  font-size: var(--text-lg);
}

.page-download__media {
  position: relative;
  min-height: 32rem;
}

.page-download__media > img {
  position: absolute;
  inset: 4% 10% 10% 0;
  width: 90%;
  height: 86%;
  object-fit: cover;
  border-radius: var(--radius-photo);
}

.page-download__media .device-frame {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 14rem;
  aspect-ratio: 0.46;
}

/* Pricing */

.page-hero--pricing .page-hero__photo--wide img {
  object-position: center 42%;
}

.page-hero--pricing .page-hero__photo--small {
  left: 2%;
  bottom: 0;
}

.pricing-model {
  background: var(--canvas-deep);
}

.pricing-model__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1px;
  margin-top: var(--space-8);
  background: var(--border);
}

.pricing-model__side {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--canvas);
}

.pricing-model__side--organiser {
  background: var(--navy);
}

.pricing-model__side h3,
.pricing-tier h3,
.support-topic h2,
.support-contact h2 {
  margin-top: 1rem;
  font-family: var(--font-editorial);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.pricing-model__side ul,
.support-topic ul {
  margin: var(--space-6) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.pricing-model__side li,
.support-topic li {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.pricing-model__side li::before,
.support-topic li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
}

.pricing-packages {
  background: var(--canvas);
}

.pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-8);
  background: var(--border);
}

.pricing-tier {
  min-width: 0;
  padding: clamp(1.75rem, 3vw, 3rem);
  background: var(--canvas-deep);
}

.pricing-tier--focus {
  background: var(--navy);
}

.pricing-tier__number {
  color: var(--coral);
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.16em;
}

.pricing-tier__fit {
  min-height: 5rem;
  margin-top: 1rem;
  color: var(--muted);
}

.pricing-tier__status {
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-top: var(--space-6);
  padding-block: 0.75rem;
  border-block: 1px solid var(--border);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 700;
}

.pricing-tier dl {
  margin-top: var(--space-5);
}

.pricing-tier dl div {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.pricing-tier dt {
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 650;
}

.pricing-tier dd {
  color: var(--muted-dark);
  font-size: var(--text-sm);
}

.pricing-caveat {
  max-width: 52rem;
  margin-top: var(--space-6);
  color: var(--muted-dark);
  font-size: var(--text-sm);
}

.pricing-guidance {
  background: var(--navy);
}

.pricing-factors {
  margin-top: var(--space-8);
  border-bottom: 1px solid var(--border);
}

.pricing-factors div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.42fr) minmax(20rem, 1.58fr);
  gap: clamp(2rem, 8vw, 8rem);
  padding-block: 1.35rem;
  border-top: 1px solid var(--border);
}

.pricing-factors dt {
  color: var(--text);
  font-weight: 700;
}

.pricing-factors dd {
  max-width: 44rem;
  color: var(--muted);
}

.comparison-section {
  background: var(--canvas-deep);
}

.comparison-matrix {
  margin-top: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-matrix table {
  width: 100%;
  border-collapse: collapse;
  background: var(--canvas);
  text-align: left;
}

.comparison-matrix th,
.comparison-matrix td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.comparison-matrix thead th {
  background: var(--navy);
  color: var(--text);
  font-size: var(--text-sm);
}

.comparison-matrix tbody th {
  width: 28%;
  color: var(--text);
  font-size: var(--text-sm);
}

.comparison-matrix td {
  color: var(--muted);
  font-size: var(--text-sm);
}

.comparison-matrix tbody tr:last-child th,
.comparison-matrix tbody tr:last-child td {
  border-bottom: 0;
}

/* Support */

.page-hero--support .page-hero__photo--wide img {
  object-position: center 52%;
}

.support-start {
  background: var(--canvas);
}

.support-directory {
  background: var(--canvas-deep);
}

.support-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--space-8);
  background: transparent;
}

.support-directory__grid a {
  min-height: 9rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.35rem 1rem;
  padding: 1.5rem;
  background: var(--canvas);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  text-decoration: none;
  transition: background-color var(--motion-standard) ease;
}

.support-directory__grid a:hover {
  background: var(--navy);
}

.support-directory__grid a > span {
  grid-row: 1 / 3;
  color: var(--coral);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
}

.support-directory__grid strong {
  align-self: end;
  font-family: var(--font-editorial);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.support-directory__grid small {
  color: var(--muted);
  font-size: var(--text-sm);
}

.support-topic-section {
  background: var(--canvas);
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(3rem, 8vw, 8rem);
}

.support-topic {
  padding-block: var(--space-8);
  border-top: 1px solid var(--border);
}

.support-topic:nth-child(1),
.support-topic:nth-child(2) {
  padding-top: 0;
  border-top: 0;
}

.support-topic > p:not(.story-index) {
  margin-top: var(--space-5);
  color: var(--muted);
}

.support-topic li {
  min-height: 48px;
  font-size: var(--text-sm);
}

.support-questions {
  background: var(--navy);
}

.support-contact {
  background: var(--coral);
  color: #fff;
}

.support-contact__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(23rem, 1.15fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 10rem);
}

.support-contact .comparison-label {
  color: #fff;
}

.support-contact h2 {
  font-size: var(--text-2xl);
}

.support-contact__copy > p:not(.comparison-label) {
  max-width: 38rem;
  margin-top: var(--space-5);
  color: rgb(255 255 255 / 84%);
}

.support-contact__note {
  font-size: var(--text-sm);
}

.support-contact__options {
  border-bottom: 1px solid rgb(255 255 255 / 36%);
}

.support-contact__options a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgb(255 255 255 / 36%);
  text-decoration: none;
}

.support-contact__options a[data-placeholder="true"]::after {
  content: "Soon";
  font-size: var(--text-xs);
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-contact__options svg {
  width: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.support-contact__options a[data-placeholder="true"] svg {
  display: none;
}

.support-contact__options span,
.support-contact__options small {
  display: block;
}

.support-contact__options span {
  font-weight: 750;
}

.support-contact__options small {
  color: rgb(255 255 255 / 78%);
  font-size: var(--text-xs);
}

.legal-placeholder {
  background: var(--canvas-deep);
}

.legal-placeholder .secondary-intro__copy + p {
  max-width: 46rem;
  margin-top: var(--space-5);
  color: var(--muted);
}

@media (max-width: 75rem) {
  .page-hero__grid,
  .story__grid,
  .page-download__grid {
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .page-hero__device {
    right: 2%;
  }
}

@media (max-width: 60rem) {
  .page-hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .page-hero__grid,
  .story__grid,
  .secondary-intro__grid,
  .feature-philosophy__grid,
  .page-download__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__copy {
    max-width: 48rem;
  }

  .page-hero h1 {
    max-width: 12ch;
  }

  .page-hero__media {
    width: min(100%, 46rem);
    min-height: 37rem;
    margin-inline: auto;
  }

  .secondary-intro__aside {
    max-width: 30rem;
  }

  .story__grid--reverse .story__copy {
    order: 0;
  }

  .story__copy {
    max-width: 46rem;
  }

  .story-media {
    width: min(100%, 45rem);
    min-height: 36rem;
    margin-inline: auto;
  }

  .journey-comparison__grid {
    grid-template-columns: 1fr 1.25fr;
  }

  .event-story {
    grid-template-columns: 1fr;
  }

  .event-story:nth-child(even) .event-story__image {
    order: 0;
  }

  .event-story__image {
    width: 100%;
  }

  .event-story__image--portrait {
    width: min(75%, 32rem);
    justify-self: start;
  }

  .page-download__media {
    width: min(100%, 42rem);
  }
}

@media (max-width: 43rem) {
  .page-hero {
    padding-top: 7.5rem;
    padding-bottom: var(--space-8);
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
    line-height: 0.95;
  }

  .page-hero__lede {
    font-size: var(--text-base);
  }

  .page-hero__media {
    min-height: 28rem;
  }

  .page-hero__photo--wide {
    inset: 4% 5% 25% 0;
  }

  .page-hero__photo--portrait,
  .page-hero__photo--small {
    width: 39%;
  }

  .page-hero__device {
    right: 0;
    width: 11.5rem;
  }

  .page-hero__device--back {
    width: 9.5rem;
  }

  .page-hero--features .page-hero__photo--wide {
    right: 14%;
  }

  .secondary-intro__copy {
    font-size: var(--text-lg);
  }

  .story,
  .event-story {
    padding-block: var(--space-8);
  }

  .story-media {
    min-height: 27rem;
  }

  .story-media__photo,
  .story-media__photo--right {
    inset: 3% 7% 10% 0;
  }

  .story-media__device {
    width: 11.5rem;
  }

  .story-media--convergence {
    min-height: 31rem;
  }

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

  .journey-track {
    padding: 2rem 1.25rem;
  }

  .photo-quilt {
    gap: 0.5rem;
  }

  .feature-philosophy blockquote {
    font-size: var(--text-lg);
  }

  .event-story__image,
  .event-story__image--portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .event-story__image img {
    object-position: center 45%;
  }

  .page-download__media {
    min-height: 27rem;
  }

  .page-download__media > img {
    inset: 3% 8% 12% 0;
  }

  .page-download__media .device-frame {
    width: 11.5rem;
  }
}

@media (max-width: 60rem) {
  .pricing-model__grid,
  .support-contact__grid {
    grid-template-columns: 1fr;
  }

  .pricing-tier-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tier__fit {
    min-height: auto;
  }

  .support-topic-grid {
    gap: 0 3rem;
  }
}

@media (max-width: 43rem) {
  .page-hero--pricing .page-hero__photo--wide,
  .page-hero--support .page-hero__photo--wide {
    right: 8%;
  }

  .pricing-model__side,
  .pricing-tier {
    padding: 2rem 1.25rem;
  }

  .pricing-factors div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-block: 1rem;
  }

  .comparison-matrix {
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .comparison-matrix table,
  .comparison-matrix tbody,
  .comparison-matrix tr,
  .comparison-matrix th,
  .comparison-matrix td {
    display: block;
    width: 100%;
  }

  .comparison-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison-matrix tbody tr {
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--canvas);
  }

  .comparison-matrix tbody th {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--navy);
  }

  .comparison-matrix td {
    display: grid;
    grid-template-columns: minmax(6.5rem, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .comparison-matrix td::before {
    content: attr(data-label);
    color: var(--text);
    font-weight: 650;
  }

  .comparison-matrix tbody tr:last-child th,
  .comparison-matrix tbody tr:last-child td {
    border-bottom: 1px solid var(--border);
  }

  .comparison-matrix tbody tr:last-child td:last-child {
    border-bottom: 0;
  }

  .support-directory__grid,
  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-directory__grid a {
    min-height: 7.5rem;
    padding: 1.25rem;
  }

  .support-topic,
  .support-topic:nth-child(2) {
    padding-block: var(--space-7);
    border-top: 1px solid var(--border);
  }

  .support-topic:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .support-contact__options a {
    align-items: flex-start;
  }
}

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

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

@media (forced-colors: active) {
  .device-frame,
  .event-library,
  .store-button,
  .button,
  .qr-card {
    border: 2px solid CanvasText;
  }
}
