:root {
  color-scheme: dark;
  --ub-ink: #080808;
  --ub-charcoal: #111111;
  --ub-panel: #171717;
  --ub-paper: #f1eee7;
  --ub-silver: #aaa7a1;
  --ub-dim: #77746f;
  --ub-line: rgba(241, 238, 231, 0.17);
  --ub-maroon: #7d1821;
  --ub-maroon-bright: #a82631;
  --ub-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --ub-body: "Inter", Arial, sans-serif;
  --ub-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ub-gutter: clamp(20px, 5vw, 80px);
}

html {
  background: var(--ub-ink);
  scroll-behavior: smooth;
}

body.ub-page {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ub-ink);
  color: var(--ub-paper);
  font-family: var(--ub-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.ub-page h1,
.ub-page h2,
.ub-page h3,
.ub-page p,
.ub-page figure,
.ub-page ol {
  margin: 0;
}

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

.ub-page a {
  color: inherit;
}

.ub-page ::selection {
  background: var(--ub-maroon-bright);
  color: var(--ub-paper);
}

.ub-skip-link {
  position: fixed;
  z-index: 1002;
  top: 12px;
  left: 50%;
  padding: 11px 16px;
  transform: translate(-50%, -160%);
  background: var(--ub-paper);
  color: var(--ub-ink) !important;
  font: 700 12px/1 var(--ub-body);
  text-decoration: none;
  transition: transform 180ms ease;
}

.ub-skip-link:focus {
  transform: translate(-50%, 0);
}

.ub-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
  animation: ub-loader-failsafe 620ms 1.75s forwards;
}

.ub-loader::before,
.ub-loader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(241, 238, 231, 0.2);
  box-shadow: 0 0 16px rgba(241, 238, 231, 0.2);
}

.ub-loader::before {
  top: 32%;
  animation: ub-scan 1s steps(4, end) both;
}

.ub-loader::after {
  top: 67%;
  animation: ub-scan 850ms 150ms steps(3, end) reverse both;
}

.ub-loader-lockup {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: min(88vw, 780px);
}

.ub-loader-small {
  margin-bottom: 3px;
  color: var(--ub-silver);
  font: 600 clamp(11px, 1.1vw, 15px)/1 var(--ub-mono);
  letter-spacing: 0.62em;
}

.ub-loader-large {
  position: relative;
  font: 400 clamp(58px, 10vw, 150px)/0.92 var(--ub-display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.ub-loader-large::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--ub-paper);
  clip-path: inset(45% 0 42% 0);
  transform: translateX(5px);
  text-shadow: -4px 0 var(--ub-maroon-bright);
  animation: ub-loader-glitch 420ms 320ms steps(2, end) 2;
}

.ub-loader-signal {
  width: min(65vw, 460px);
  height: 2px;
  margin-top: 25px;
  overflow: hidden;
  background: rgba(241, 238, 231, 0.12);
}

.ub-loader-signal i {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-101%);
  background: var(--ub-maroon-bright);
  animation: ub-lock-signal 920ms 180ms cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.ub-is-loaded .ub-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 440ms ease, visibility 0s 440ms;
}

.ub-texture {
  position: fixed;
  z-index: 900;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.055) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 65%, rgba(255,255,255,0.045) 0 0.6px, transparent 0.7px);
  background-size: 100% 4px, 7px 7px, 9px 9px;
  mix-blend-mode: soft-light;
}

.ub-back,
.ub-partner-fixed {
  position: fixed;
  z-index: 950;
  top: 24px;
}

.ub-back {
  left: var(--ub-gutter);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(241, 238, 231, 0.24);
  background: rgba(8, 8, 8, 0.64);
  color: var(--ub-paper);
  font: 650 10px/1 var(--ub-mono);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ub-back > span:first-child {
  color: var(--ub-maroon-bright);
  font-size: 16px;
  line-height: 0;
}

.ub-back:hover {
  border-color: rgba(241, 238, 231, 0.65);
  background: rgba(8, 8, 8, 0.86);
}

.ub-partner-fixed {
  right: var(--ub-gutter);
  min-height: 38px;
  display: flex;
  align-items: center;
  color: rgba(241, 238, 231, 0.58);
}

.ub-partner {
  font: 650 10px/1 var(--ub-mono);
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.ub-partner span {
  margin: 0 6px;
  color: var(--ub-maroon-bright);
}

.ub-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.ub-hero-photos,
.ub-hero-photo,
.ub-hero-photo img,
.ub-hero-wash {
  position: absolute;
  inset: 0;
}

.ub-hero-photos {
  overflow: hidden;
}

.ub-hero-photo {
  overflow: hidden;
  margin: 0;
  background: #111;
  will-change: clip-path;
}

.ub-hero-photo img {
  width: 100%;
  height: 111%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(1) contrast(1.19) brightness(0.69);
}

.ub-hero-photo-left {
  right: auto;
  width: 62%;
  clip-path: polygon(0 0, 93% 0, 78% 100%, 0 100%);
}

.ub-hero-photo-left img {
  object-position: 52% 42%;
}

.ub-hero-photo-right {
  left: 43%;
  width: 57%;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 2% 100%);
}

.ub-hero-photo-right img {
  height: 118%;
  object-position: 54% top;
  filter: grayscale(1) contrast(1.28) brightness(0.57);
}

.ub-hero-seam {
  position: absolute;
  z-index: 2;
  top: -10%;
  bottom: -10%;
  left: 49%;
  width: 11%;
  transform: rotate(3deg);
  background: linear-gradient(90deg, transparent, rgba(8,8,8,0.86) 48%, rgba(125,24,33,0.14) 50%, transparent 80%);
  filter: blur(7px);
}

.ub-hero-wash {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.79) 0%, rgba(5,5,5,0.31) 41%, rgba(5,5,5,0.15) 70%, rgba(5,5,5,0.5) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5,5,5,0.7) 14%, transparent 50%, rgba(5,5,5,0.36) 100%);
}

.ub-hero-index {
  position: absolute;
  z-index: 4;
  top: 49%;
  right: var(--ub-gutter);
  color: rgba(241,238,231,0.38);
  font: 500 9px/1 var(--ub-mono);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.ub-hero-copy {
  position: absolute;
  z-index: 5;
  left: var(--ub-gutter);
  bottom: clamp(120px, 17vh, 190px);
  width: min(92vw, 1200px);
}

.ub-eyebrow,
.ub-kicker,
.ub-mono {
  color: var(--ub-silver);
  font: 650 10px/1.25 var(--ub-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ub-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 3vh, 34px) !important;
}

.ub-eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--ub-maroon-bright);
}

.ub-hero h1 {
  width: min-content;
  font-family: var(--ub-display);
  font-weight: 400;
  text-transform: uppercase;
}

.ub-title-small,
.ub-title-main {
  display: block;
}

.ub-title-small {
  margin: 0 0 clamp(12px, 1.15vw, 18px) 0.08em;
  color: var(--ub-silver);
  font-size: clamp(31px, 4.2vw, 67px);
  line-height: 0.9;
  letter-spacing: 0.25em;
}

.ub-title-main {
  position: relative;
  font-size: clamp(76px, 13.3vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.ub-glitch::before,
.ub-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.ub-glitch::before {
  color: var(--ub-paper);
  text-shadow: -4px 0 var(--ub-maroon-bright);
}

.ub-glitch::after {
  color: var(--ub-silver);
  text-shadow: 4px 0 #4f5962;
}

.ub-glitch.is-glitching::before {
  opacity: 0.85;
  animation: ub-glitch-before 420ms steps(2, end) both;
}

.ub-glitch.is-glitching::after {
  opacity: 0.65;
  animation: ub-glitch-after 420ms steps(2, end) both;
}

.ub-hero-line {
  margin-top: clamp(20px, 1.7vw, 28px) !important;
  color: rgba(241,238,231,0.78);
  font: 600 clamp(12px, 1.25vw, 18px)/1 var(--ub-mono);
  letter-spacing: 0.38em;
}

.ub-scroll-cue {
  position: absolute;
  z-index: 6;
  right: var(--ub-gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(241,238,231,0.52);
  font: 600 9px/1 var(--ub-mono);
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.ub-scroll-cue i {
  position: relative;
  display: block;
  width: 74px;
  height: 1px;
  overflow: hidden;
  background: rgba(241,238,231,0.19);
}

.ub-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--ub-paper);
  animation: ub-scroll-line 2.6s ease-in-out infinite;
}

.ub-section {
  position: relative;
  padding: clamp(100px, 13vw, 210px) var(--ub-gutter);
}

.ub-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 34px !important;
}

.ub-kicker span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(241,238,231,0.24);
  color: var(--ub-paper);
  letter-spacing: 0;
}

.ub-section h2,
.ub-coaching h2,
.ub-group h2,
.ub-closing h2 {
  font: 400 clamp(64px, 9.5vw, 150px)/0.91 var(--ub-display);
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.ub-page h2 em {
  color: var(--ub-maroon-bright);
  font-style: normal;
}

.ub-manifesto {
  background: var(--ub-paper);
  color: var(--ub-ink);
}

.ub-manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--ub-gutter);
  right: var(--ub-gutter);
  height: 1px;
  background: rgba(8,8,8,0.2);
}

.ub-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(55px, 9vw, 150px);
  max-width: 1560px;
  margin: 0 auto;
}

.ub-manifesto .ub-kicker,
.ub-manifesto .ub-lede {
  color: #514f4b;
}

.ub-manifesto .ub-kicker span {
  border-color: rgba(8,8,8,0.3);
  color: var(--ub-ink);
}

.ub-manifesto h2 {
  font-size: clamp(70px, 9.2vw, 145px);
}

.ub-lede {
  max-width: 690px;
  margin-top: 42px !important;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.75;
}

.ub-programme {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 175px) var(--ub-gutter);
  background: #050505;
  color: var(--ub-paper);
  isolation: isolate;
}

.ub-programme::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.19;
  background:
    linear-gradient(115deg, transparent 0 67%, rgba(255,255,255,0.045) 67% 67.1%, transparent 67.1%),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255,255,255,0.018) 8px 9px);
}

.ub-programme-inner {
  position: relative;
  z-index: 1;
  max-width: 1560px;
  margin: 0 auto;
}

.ub-programme-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 105px);
  padding-top: 22px;
  border-top: 1px solid rgba(241,238,231,0.3);
}

.ub-programme-status {
  position: relative;
  padding-left: 50px;
  color: var(--ub-paper);
  font: 800 10px/1.45 var(--ub-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ub-programme-status::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 31px;
  height: 2px;
  background: var(--ub-maroon-bright);
}

.ub-programme-status span {
  display: block;
  margin-top: 9px;
  color: rgba(241,238,231,0.47);
  font-size: 8px;
  line-height: 1.65;
}

.ub-programme h2 {
  font: 400 clamp(70px, 8.8vw, 140px)/0.88 var(--ub-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ub-programme h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(241,238,231,0.76);
}

.ub-programme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(241,238,231,0.3);
  background: rgba(241,238,231,0.3);
}

.ub-programme-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: clamp(300px, 24vw, 390px);
  overflow: hidden;
  padding: clamp(27px, 3.4vw, 54px);
  text-transform: uppercase;
}

.ub-programme-cell::after {
  content: attr(data-index);
  position: absolute;
  right: -0.015em;
  bottom: -0.2em;
  font: 400 clamp(150px, 18vw, 290px)/1 var(--ub-display);
  opacity: 0.055;
  pointer-events: none;
}

.ub-programme-cell > * {
  position: relative;
  z-index: 1;
}

.ub-programme-cell-light {
  background: var(--ub-paper);
  color: var(--ub-ink);
}

.ub-programme-cell-dark {
  background: #0d0d0d;
  color: var(--ub-paper);
}

.ub-programme-label {
  font: 800 9px/1.4 var(--ub-mono);
  letter-spacing: 0.19em;
}

.ub-programme-cell-light .ub-programme-label,
.ub-programme-cell-light .ub-programme-saving span {
  color: #5c5954;
}

.ub-programme-cell-dark .ub-programme-label,
.ub-programme-cell-dark .ub-programme-saving span {
  color: rgba(241,238,231,0.5);
}

.ub-programme-cell h3 {
  font: 400 clamp(60px, 7vw, 112px)/0.88 var(--ub-display);
  letter-spacing: -0.01em;
}

.ub-programme-time {
  margin-top: 18px !important;
  font: 750 clamp(11px, 1vw, 15px)/1 var(--ub-mono);
  letter-spacing: 0.2em;
}

.ub-programme-rate {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.ub-programme-rate strong {
  font: 400 clamp(54px, 6vw, 94px)/0.9 var(--ub-display);
  letter-spacing: -0.015em;
}

.ub-programme-rate span {
  font: 800 9px/1 var(--ub-mono);
  letter-spacing: 0.15em;
}

.ub-programme-saving {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  align-items: baseline;
  margin-top: clamp(28px, 4vw, 58px) !important;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  font: 700 8px/1.45 var(--ub-mono);
  letter-spacing: 0.12em;
}

.ub-programme-saving strong {
  justify-self: end;
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.04em;
}

.ub-programme-saving span {
  grid-column: 1 / -1;
  font-size: 8px;
}

.ub-photo {
  position: relative;
  overflow: hidden;
  background: #151515;
}

.ub-photo img {
  width: 100%;
  height: 111%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.ub-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(241,238,231,0.14);
  background: linear-gradient(180deg, transparent 65%, rgba(8,8,8,0.35));
}

.ub-photo figcaption,
.ub-film-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 16px;
  color: rgba(241,238,231,0.72);
  font: 600 8px/1 var(--ub-mono);
  letter-spacing: 0.18em;
}

.ub-manifesto-photo {
  aspect-ratio: 0.78;
  transform: rotate(1.3deg);
  box-shadow: 22px 24px 0 rgba(8,8,8,0.08);
}

.ub-manifesto-photo img {
  object-position: 62% center;
}

.ub-pillars {
  padding-bottom: clamp(120px, 15vw, 240px);
  background: var(--ub-ink);
}

.ub-section-head {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 40px;
  align-items: end;
  max-width: 1560px;
  margin: 0 auto clamp(100px, 12vw, 190px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ub-line);
}

.ub-section-head .ub-kicker {
  margin-bottom: 5px !important;
}

.ub-section-head h2 {
  font-size: clamp(64px, 8vw, 128px);
}

.ub-standard-head {
  position: relative;
  display: block;
  min-height: clamp(680px, 66vw, 960px);
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 48px;
}

.ub-standard-media {
  position: absolute;
  z-index: 0;
  inset: 0 0 48px;
  pointer-events: none;
}

.ub-standard-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #101010;
}

.ub-standard-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ub-standard-photo img {
  width: 100%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.76);
  will-change: transform;
}

.ub-standard-photo-left {
  z-index: 1;
  top: 0;
  bottom: 10%;
  left: 0;
  width: 58%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgba(0,0,0,0.9) 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 74%, rgba(0,0,0,0.9) 82%, transparent 100%);
}

.ub-standard-photo-left::after {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.06) 0%, transparent 57%, rgba(8,8,8,0.7) 100%),
    linear-gradient(0deg, rgba(8,8,8,0.5) 0%, transparent 24%, transparent 79%, rgba(8,8,8,0.16) 100%);
}

.ub-standard-photo-left img {
  object-position: 49% 44%;
}

.ub-standard-photo-right {
  z-index: 2;
  top: 18%;
  right: 0;
  bottom: 0;
  width: 51%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.9) 18%, #000 29%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.9) 18%, #000 29%, #000 100%);
}

.ub-standard-photo-right::after {
  background:
    linear-gradient(90deg, rgba(8,8,8,0.78) 0%, transparent 41%),
    linear-gradient(0deg, rgba(8,8,8,0.38) 0%, transparent 25%, transparent 80%, rgba(8,8,8,0.1) 100%);
}

.ub-standard-photo-right img {
  object-position: 52% 48%;
}

.ub-standard-head::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 34%;
  right: 5%;
  left: 5%;
  height: 36%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(8,8,8,0.78) 13%, rgba(8,8,8,0.92) 40%, rgba(8,8,8,0.9) 63%, rgba(8,8,8,0.74) 87%, transparent 100%);
  filter: blur(18px);
}

.ub-standard-head .ub-kicker,
.ub-standard-head h2 {
  position: absolute;
  z-index: 4;
}

.ub-standard-head .ub-kicker {
  top: 7%;
  left: 4%;
}

.ub-standard-head h2 {
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 3px 28px rgba(0,0,0,0.95);
}

.ub-pillar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(45px, 8vw, 130px);
  max-width: 1560px;
  margin: 0 auto;
}

.ub-pillar + .ub-pillar {
  margin-top: clamp(130px, 18vw, 300px);
}

.ub-pillar-label {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: -18px;
  padding: 10px 13px;
  border: 1px solid var(--ub-line);
  background: var(--ub-ink);
  color: var(--ub-silver);
  font: 600 9px/1 var(--ub-mono);
  letter-spacing: 0.19em;
}

.ub-pillar-photo {
  aspect-ratio: 0.82;
  max-height: 920px;
}

.ub-photo-crop-wordmark img {
  height: 119%;
  object-position: center top;
}

.ub-pillar-copy {
  position: relative;
  z-index: 3;
}

.ub-pillar-copy::before {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-bottom: 34px;
  background: var(--ub-maroon);
}

.ub-pillar-copy h3 {
  margin: 15px 0 28px;
  font: 400 clamp(76px, 9vw, 150px)/0.88 var(--ub-display);
  letter-spacing: -0.02em;
}

.ub-pillar-copy > p:last-child {
  max-width: 540px;
  color: var(--ub-silver);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
}

.ub-pillar-strength {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
}

.ub-pillar-strength .ub-strength-photos {
  grid-column: 2;
  grid-row: 1;
}

.ub-pillar-strength .ub-pillar-copy {
  grid-column: 1;
  grid-row: 1;
}

.ub-pillar-strength .ub-pillar-label {
  right: -18px;
  left: auto;
}

.ub-strength-photos {
  position: relative;
  min-height: clamp(600px, 66vw, 940px);
}

.ub-strength-photo-main {
  position: absolute;
  inset: 0 14% 9% 0;
}

.ub-strength-photo-main img {
  object-position: 49% 44%;
  filter: none;
}

.ub-strength-photo-detail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 0.77;
  box-shadow: -22px -20px 0 var(--ub-ink);
}

.ub-strength-photo-detail img {
  object-position: 48% center;
}

.ub-coaching {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(55px, 9vw, 150px);
  padding: clamp(110px, 14vw, 220px) var(--ub-gutter);
  background: var(--ub-panel);
}

.ub-coaching-copy {
  padding-left: max(0px, calc((100vw - 1560px) / 2));
}

.ub-coaching h2 {
  font-size: clamp(66px, 8vw, 124px);
}

.ub-coaching-copy > p:last-child {
  max-width: 620px;
  margin-top: 42px;
  color: var(--ub-silver);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.75;
}

.ub-coaching-photo {
  aspect-ratio: 1.08;
  max-height: 880px;
}

.ub-coaching-photo img {
  object-position: center 50%;
}

.ub-group {
  position: relative;
  min-height: max(720px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #090909;
}

.ub-group-photo,
.ub-group-photo img,
.ub-group-shade {
  position: absolute;
  inset: 0;
}

.ub-group-photo {
  overflow: hidden;
}

.ub-group-photo img {
  width: 100%;
  height: 118%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(1) contrast(1.2) brightness(0.64);
}

.ub-group-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.55) 38%, rgba(8,8,8,0.05) 76%),
    linear-gradient(0deg, rgba(8,8,8,0.9) 0%, transparent 35%, rgba(8,8,8,0.2) 100%);
}

.ub-group-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0 var(--ub-gutter) 80px;
}

.ub-group h2 {
  max-width: 900px;
}

.ub-group-copy > p:last-child {
  margin-top: 28px;
  color: rgba(241,238,231,0.7);
  font-size: 18px;
}

.ub-group-ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: 64px;
  border-top: 1px solid rgba(241,238,231,0.19);
  background: rgba(8,8,8,0.72);
  color: rgba(241,238,231,0.56);
  font: 600 9px/1 var(--ub-mono);
  letter-spacing: 0.2em;
  backdrop-filter: blur(8px);
}

.ub-group-ticker i {
  width: 4px;
  height: 4px;
  background: var(--ub-maroon-bright);
}

.ub-outcomes {
  background: var(--ub-paper);
  color: var(--ub-ink);
}

.ub-outcomes-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 45px;
  align-items: end;
  max-width: 1560px;
  margin: 0 auto clamp(80px, 10vw, 150px);
}

.ub-outcomes-intro .ub-kicker {
  margin-bottom: 6px !important;
  color: #56534f;
}

.ub-outcomes-intro .ub-kicker span {
  border-color: rgba(8,8,8,0.3);
  color: var(--ub-ink);
}

.ub-outcomes-intro h2 {
  font-size: clamp(62px, 7.6vw, 118px);
}

.ub-outcomes-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 9vw, 150px);
  max-width: 1560px;
  margin: 0 auto;
}

.ub-outcomes-photo {
  min-height: 680px;
  max-height: 990px;
}

.ub-outcomes-photo img {
  object-position: center top;
}

.ub-outcome-list {
  padding: 0;
  list-style: none;
  counter-reset: outcomes;
}

.ub-outcome-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 25px;
  align-items: start;
  padding: clamp(27px, 3.1vw, 48px) 0;
  border-top: 1px solid rgba(8,8,8,0.25);
}

.ub-outcome-list li:last-child {
  border-bottom: 1px solid rgba(8,8,8,0.25);
}

.ub-outcome-list li > span {
  padding-top: 9px;
  color: var(--ub-maroon);
  font: 700 10px/1 var(--ub-mono);
}

.ub-outcome-list h3 {
  font: 400 clamp(54px, 6vw, 96px)/0.9 var(--ub-display);
  letter-spacing: -0.015em;
}

.ub-outcome-list p {
  max-width: 550px;
  margin-top: 12px;
  color: #5a5752;
  font-size: 15px;
  line-height: 1.6;
}

.ub-sequence {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
  background: #0c0c0c;
}

.ub-sequence-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 45px;
  align-items: end;
  max-width: calc(1560px + (2 * var(--ub-gutter)));
  margin: 0 auto clamp(70px, 9vw, 130px);
  padding: 0 var(--ub-gutter);
}

.ub-sequence-head .ub-kicker {
  margin-bottom: 4px !important;
}

.ub-sequence-head h2 {
  font-size: clamp(62px, 8vw, 125px);
}

.ub-film-window {
  overflow: hidden;
}

.ub-film-track {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 1.5vw, 24px);
  width: max-content;
  padding: 0 var(--ub-gutter);
  will-change: transform;
}

.ub-film-frame {
  position: relative;
  flex: 0 0 clamp(310px, 39vw, 700px);
  height: clamp(430px, 54vw, 850px);
  overflow: hidden;
  background: #171717;
}

.ub-film-frame:nth-child(2) {
  flex-basis: clamp(360px, 48vw, 820px);
  margin-top: clamp(40px, 7vw, 110px);
}

.ub-film-frame:nth-child(3) {
  flex-basis: clamp(310px, 34vw, 610px);
  height: clamp(390px, 47vw, 760px);
  align-self: center;
}

.ub-film-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: grayscale(1) contrast(1.14) brightness(0.86);
}

.ub-film-frame.ub-photo-crop-wordmark img {
  height: 119%;
  object-position: center top;
}

.ub-film-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241,238,231,0.12);
  background: linear-gradient(180deg, transparent 70%, rgba(8,8,8,0.75));
}

.ub-closing {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070707;
}

.ub-closing-photo,
.ub-closing-photo img,
.ub-closing-shade {
  position: absolute;
  inset: 0;
}

.ub-closing-photo {
  overflow: hidden;
}

.ub-closing-photo img {
  width: 100%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center 50%;
  filter: grayscale(1) contrast(1.08) brightness(0.62);
}

.ub-closing-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.91) 0%, rgba(8,8,8,0.68) 47%, rgba(8,8,8,0.13) 85%),
    linear-gradient(0deg, rgba(8,8,8,0.93) 0%, transparent 48%, rgba(8,8,8,0.5) 100%);
}

.ub-closing-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 175px) var(--ub-gutter) 70px;
}

.ub-closing h2 {
  max-width: 980px;
}

.ub-next {
  display: inline-block;
  margin-top: clamp(42px, 5vw, 72px) !important;
  padding: 17px 20px;
  border-left: 3px solid var(--ub-maroon-bright);
  background: rgba(8,8,8,0.65);
  color: var(--ub-paper);
  font: 700 clamp(12px, 1.2vw, 16px)/1.4 var(--ub-mono);
  letter-spacing: 0.17em;
  backdrop-filter: blur(10px);
}

.ub-closing .ub-partner {
  margin-top: 42px;
  color: rgba(241,238,231,0.55);
}

.ub-closing-back {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(241,238,231,0.35);
  font: 650 10px/1 var(--ub-mono);
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.ub-closing-back span {
  color: var(--ub-maroon-bright);
  font-size: 16px;
}

.ub-closing-back:hover {
  border-color: var(--ub-paper);
}

.ub-back:focus-visible,
.ub-scroll-cue:focus-visible,
.ub-closing-back:focus-visible {
  outline: 2px solid var(--ub-paper);
  outline-offset: 5px;
}

@keyframes ub-loader-failsafe {
  to { opacity: 0; visibility: hidden; }
}

@keyframes ub-lock-signal {
  0% { transform: translateX(-101%); }
  78% { transform: translateX(0); }
  86% { transform: translateX(8%); }
  100% { transform: translateX(0); }
}

@keyframes ub-loader-glitch {
  0% { clip-path: inset(4% 0 78% 0); transform: translateX(-5px); }
  33% { clip-path: inset(55% 0 25% 0); transform: translateX(6px); }
  66% { clip-path: inset(28% 0 48% 0); transform: translateX(-2px); }
  100% { clip-path: inset(80% 0 4% 0); transform: translateX(0); }
}

@keyframes ub-scan {
  from { transform: translateY(-20vh); opacity: 0; }
  20% { opacity: 1; }
  to { transform: translateY(42vh); opacity: 0; }
}

@keyframes ub-glitch-before {
  0% { clip-path: inset(7% 0 72% 0); transform: translate(-5px, -2px); }
  30% { clip-path: inset(66% 0 8% 0); transform: translate(6px, 1px); }
  60% { clip-path: inset(40% 0 42% 0); transform: translate(-3px, 0); }
  100% { clip-path: inset(88% 0 3% 0); transform: translate(0); }
}

@keyframes ub-glitch-after {
  0% { clip-path: inset(76% 0 7% 0); transform: translate(5px, 1px); }
  35% { clip-path: inset(18% 0 66% 0); transform: translate(-4px, -1px); }
  70% { clip-path: inset(51% 0 31% 0); transform: translate(3px, 0); }
  100% { clip-path: inset(2% 0 91% 0); transform: translate(0); }
}

@keyframes ub-scroll-line {
  0%, 12% { transform: translateX(-100%); }
  54% { transform: translateX(0); }
  88%, 100% { transform: translateX(100%); }
}

@media (max-width: 1180px) {
  .ub-title-main {
    font-size: clamp(76px, 13.7vw, 162px);
  }

  .ub-pillar,
  .ub-pillar-strength {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .ub-strength-photos {
    min-height: 680px;
  }

  .ub-coaching {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 900px) {
  .ub-partner-fixed {
    top: 27px;
  }

  .ub-hero-photo-left {
    width: 68%;
  }

  .ub-hero-photo-right {
    left: 42%;
    width: 58%;
  }

  .ub-title-main {
    font-size: clamp(72px, 15vw, 132px);
  }

  .ub-programme-head {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .ub-programme h2 {
    font-size: clamp(70px, 13vw, 112px);
  }

  .ub-programme-cell {
    min-height: clamp(285px, 40vw, 350px);
  }

  .ub-manifesto-grid,
  .ub-pillar,
  .ub-pillar-strength,
  .ub-coaching,
  .ub-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .ub-manifesto-copy,
  .ub-coaching-copy {
    padding-left: 0;
  }

  .ub-manifesto-photo {
    width: min(82vw, 620px);
    margin-left: auto;
  }

  .ub-section-head,
  .ub-outcomes-intro,
  .ub-sequence-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ub-section-head .ub-kicker,
  .ub-outcomes-intro .ub-kicker,
  .ub-sequence-head .ub-kicker {
    margin-bottom: 0 !important;
  }

  .ub-standard-head {
    min-height: clamp(760px, 122vw, 980px);
  }

  .ub-standard-photo-left {
    top: 0;
    bottom: auto;
    width: 76%;
    height: 64%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 73%, rgba(0,0,0,0.86) 84%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 73%, rgba(0,0,0,0.86) 84%, transparent 100%);
  }

  .ub-standard-photo-right {
    top: 36%;
    right: 0;
    bottom: 0;
    width: 72%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.88) 14%, #000 26%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.88) 14%, #000 26%, #000 100%);
  }

  .ub-standard-photo-left::after {
    background: linear-gradient(0deg, rgba(8,8,8,0.78) 0%, transparent 36%);
  }

  .ub-standard-photo-right::after {
    background: linear-gradient(180deg, rgba(8,8,8,0.72) 0%, transparent 34%, rgba(8,8,8,0.22) 100%);
  }

  .ub-standard-head::after {
    top: 35%;
    right: 2%;
    left: 2%;
    height: 29%;
    background: linear-gradient(180deg, transparent 0%, rgba(8,8,8,0.92) 25%, rgba(8,8,8,0.94) 72%, transparent 100%);
    filter: blur(12px);
  }

  .ub-standard-head .ub-kicker {
    top: 4%;
    left: 4%;
  }

  .ub-standard-head h2 {
    top: 49%;
    width: 94%;
  }

  .ub-pillar-copy {
    max-width: 650px;
  }

  .ub-pillar-strength .ub-strength-photos,
  .ub-pillar-strength .ub-pillar-copy {
    grid-column: 1;
  }

  .ub-pillar-strength .ub-strength-photos {
    grid-row: 1;
  }

  .ub-pillar-strength .ub-pillar-copy {
    grid-row: 2;
  }

  .ub-pillar-strength .ub-pillar-label {
    right: auto;
    left: -10px;
  }

  .ub-pillar-photo {
    max-height: none;
  }

  .ub-strength-photos {
    min-height: min(105vw, 850px);
  }

  .ub-coaching-photo {
    grid-row: 1;
  }

  .ub-outcomes-photo {
    width: min(83vw, 690px);
    min-height: min(105vw, 850px);
  }
}

@media (max-width: 640px) {
  :root {
    --ub-gutter: 20px;
  }

  .ub-partner-fixed {
    display: none;
  }

  .ub-back {
    top: 16px;
    left: 16px;
  }

  .ub-hero {
    min-height: 760px;
    height: 100svh;
  }

  .ub-hero-photos {
    bottom: 23%;
  }

  .ub-hero-photo-left {
    right: 20%;
    bottom: 25%;
    width: 80%;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
  }

  .ub-hero-photo-left img {
    height: 108%;
    object-position: 53% 42%;
  }

  .ub-hero-photo-right {
    top: 24%;
    left: 34%;
    width: 66%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 89%);
  }

  .ub-hero-photo-right img {
    height: 120%;
    object-position: 55% top;
  }

  .ub-hero-seam {
    top: 10%;
    bottom: 22%;
    left: 48%;
    width: 22%;
    transform: rotate(7deg);
  }

  .ub-hero-wash {
    background:
      linear-gradient(90deg, rgba(5,5,5,0.55), transparent 70%),
      linear-gradient(0deg, #050505 0%, #050505 22%, rgba(5,5,5,0.78) 33%, transparent 59%, rgba(5,5,5,0.52) 100%);
  }

  .ub-hero-index {
    display: none;
  }

  .ub-hero-copy {
    right: 20px;
    bottom: 100px;
    width: auto;
  }

  .ub-eyebrow {
    margin-bottom: 16px !important;
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .ub-eyebrow::before {
    width: 26px;
  }

  .ub-title-small {
    font-size: clamp(25px, 8vw, 41px);
    margin-bottom: 10px;
  }

  .ub-title-main {
    font-size: clamp(60px, 18vw, 104px);
    white-space: normal;
  }

  .ub-hero-line {
    margin-top: 14px !important;
    font-size: 10px;
    letter-spacing: 0.25em;
  }

  .ub-scroll-cue {
    right: auto;
    bottom: 24px;
    left: 20px;
  }

  .ub-scroll-cue i {
    width: 45px;
  }

  .ub-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .ub-section h2,
  .ub-coaching h2,
  .ub-group h2,
  .ub-closing h2 {
    font-size: clamp(54px, 16.5vw, 90px);
  }

  .ub-kicker {
    margin-bottom: 25px !important;
    font-size: 8px;
    line-height: 1.5;
  }

  .ub-kicker span {
    width: 26px;
    height: 26px;
  }

  .ub-manifesto-grid {
    gap: 58px;
  }

  .ub-lede {
    margin-top: 28px !important;
    font-size: 16px;
    line-height: 1.67;
  }

  .ub-manifesto-photo {
    width: calc(100% - 16px);
    transform: rotate(0.6deg);
    box-shadow: 12px 13px 0 rgba(8,8,8,0.08);
  }

  .ub-programme {
    padding: 88px 20px;
  }

  .ub-programme-head {
    gap: 28px;
    margin-bottom: 42px;
  }

  .ub-programme-status {
    padding-left: 42px;
    font-size: 8px;
  }

  .ub-programme-status::before {
    width: 25px;
  }

  .ub-programme h2 {
    font-size: clamp(58px, 17.5vw, 84px);
  }

  .ub-programme-cell {
    min-height: 264px;
    padding: 19px;
  }

  .ub-programme-cell::after {
    font-size: 132px;
  }

  .ub-programme-label {
    font-size: 7px;
    letter-spacing: 0.13em;
  }

  .ub-programme-cell h3 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .ub-programme-time {
    margin-top: 12px !important;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .ub-programme-rate {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .ub-programme-rate strong {
    font-size: clamp(30px, 9.2vw, 42px);
  }

  .ub-programme-rate span {
    font-size: 7px;
  }

  .ub-programme-saving {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 24px !important;
    padding-top: 13px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .ub-programme-saving strong {
    justify-self: start;
    font-size: 11px;
  }

  .ub-programme-saving span {
    grid-column: auto;
    font-size: 7px;
  }

  .ub-section-head {
    gap: 24px;
    margin-bottom: 78px;
    padding-bottom: 31px;
  }

  .ub-standard-head {
    min-height: clamp(690px, 203vw, 780px);
    margin-bottom: 78px;
    padding-bottom: 31px;
  }

  .ub-standard-media {
    inset: 0 0 31px;
  }

  .ub-standard-photo-left {
    width: 100%;
    height: 60%;
  }

  .ub-standard-photo-right {
    top: 39%;
    width: 92%;
  }

  .ub-standard-head .ub-kicker {
    top: 3%;
    left: 5%;
  }

  .ub-standard-head h2 {
    top: 49%;
    width: 96%;
    font-size: clamp(48px, 15.2vw, 72px);
  }

  .ub-pillar {
    gap: 39px;
  }

  .ub-pillar + .ub-pillar {
    margin-top: 125px;
  }

  .ub-pillar-label {
    top: 12px;
    left: -6px;
  }

  .ub-pillar-photo {
    aspect-ratio: 0.78;
  }

  .ub-pillar-copy::before {
    width: 56px;
    margin-bottom: 25px;
  }

  .ub-pillar-copy h3 {
    margin: 12px 0 20px;
    font-size: clamp(68px, 20vw, 100px);
  }

  .ub-pillar-copy > p:last-child,
  .ub-coaching-copy > p:last-child {
    font-size: 15px;
  }

  .ub-strength-photos {
    min-height: 116vw;
  }

  .ub-strength-photo-main {
    right: 10%;
  }

  .ub-strength-photo-detail {
    width: 46%;
    box-shadow: -12px -12px 0 var(--ub-ink);
  }

  .ub-coaching {
    gap: 55px;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .ub-coaching-copy > p:last-child {
    margin-top: 29px;
  }

  .ub-coaching-photo {
    aspect-ratio: 0.78;
  }

  .ub-coaching-photo img {
    object-position: 60% center;
  }

  .ub-group {
    min-height: 790px;
  }

  .ub-group-photo img {
    height: 119%;
    object-position: 60% top;
  }

  .ub-group-shade {
    background:
      linear-gradient(0deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.79) 37%, rgba(8,8,8,0.08) 72%, rgba(8,8,8,0.35) 100%);
  }

  .ub-group-copy {
    align-self: flex-end;
    padding-bottom: 112px;
  }

  .ub-group-copy > p:last-child {
    font-size: 15px;
  }

  .ub-group-ticker {
    justify-content: flex-start;
    gap: 12px;
    min-height: 58px;
    padding: 0 20px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 7px;
  }

  .ub-outcomes-intro,
  .ub-sequence-head {
    gap: 23px;
    margin-bottom: 66px;
  }

  .ub-outcomes-grid {
    gap: 62px;
  }

  .ub-outcomes-photo {
    width: 100%;
    min-height: 122vw;
  }

  .ub-outcome-list li {
    grid-template-columns: 37px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .ub-outcome-list h3 {
    font-size: clamp(50px, 15vw, 78px);
  }

  .ub-film-track {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    width: auto;
    padding: 0 20px;
  }

  .ub-film-frame,
  .ub-film-frame:nth-child(2),
  .ub-film-frame:nth-child(3) {
    width: auto;
    height: auto;
    min-height: 58vw;
    margin-top: 0;
  }

  .ub-film-frame:first-child {
    grid-column: 1 / -1;
    min-height: 118vw;
  }

  .ub-film-frame:nth-child(2),
  .ub-film-frame:nth-child(3) {
    aspect-ratio: 0.78;
  }

  .ub-film-frame figcaption {
    right: 10px;
    bottom: 11px;
    font-size: 6px;
  }

  .ub-closing {
    min-height: 860px;
  }

  .ub-closing-photo img {
    height: 100%;
    object-position: center center;
  }

  .ub-closing-shade {
    background:
      linear-gradient(0deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.78) 28%, rgba(8,8,8,0.1) 57%, rgba(8,8,8,0.82) 100%);
  }

  .ub-closing-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 45px;
  }

  .ub-next {
    align-self: flex-start;
    margin-top: auto !important;
    font-size: 10px;
    line-height: 1.6;
  }

  .ub-closing .ub-partner {
    margin-top: 28px;
    font-size: 8px;
  }
}

@media (max-width: 380px) {
  .ub-back {
    font-size: 9px;
  }

  .ub-programme-cell {
    min-height: 252px;
    padding: 14px;
  }

  .ub-programme-cell h3 {
    font-size: 27px;
  }

  .ub-programme-rate strong {
    font-size: 28px;
  }

  .ub-programme-saving strong {
    font-size: 10px;
  }

  .ub-outcome-list li {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
  }

  .ub-outcome-list h3 {
    font-size: clamp(46px, 15vw, 50px);
  }

  .ub-hero {
    min-height: 690px;
  }

  .ub-title-main {
    font-size: clamp(57px, 17.8vw, 70px);
  }

  .ub-hero-line {
    letter-spacing: 0.19em;
  }

  .ub-group,
  .ub-closing {
    min-height: 760px;
  }
}

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

  .ub-loader {
    display: none;
  }

  .ub-page *,
  .ub-page *::before,
  .ub-page *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .ub-page [data-ub-reveal],
  .ub-page [data-ub-mask],
  .ub-page [data-ub-parallax],
  .ub-page .ub-film-track,
  .ub-page .ub-hero-photo {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .ub-glitch::before,
  .ub-glitch::after {
    display: none;
  }
}
