:root {
  --ink: #06060b;
  --ink-soft: #0b0912;
  --panel: rgba(14, 11, 22, 0.78);
  --panel-solid: #100d18;
  --paper: #f1eadf;
  --paper-muted: #b9b0a6;
  --line: rgba(235, 214, 174, 0.17);
  --line-violet: rgba(136, 93, 235, 0.27);
  --gold: #d6ab5d;
  --gold-light: #f0d391;
  --violet: #8759e9;
  --violet-soft: #b995ff;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --radius: 24px;
  --content: min(1280px, calc(100vw - 80px));
  --narrow: min(850px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 10%, rgba(77, 40, 142, 0.15), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: #09070d;
  background: var(--gold-light);
}

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

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

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

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  max-width: 980px;
  margin-bottom: 48px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.25;
}

p {
  color: var(--paper-muted);
}

main {
  overflow: hidden;
}

.scene {
  position: relative;
  padding: 140px 0;
}

.scene:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.012);
}

.scene-inner {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
}

.narrow {
  width: var(--narrow);
}

.section-label,
.eyebrow {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.big-copy {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.18;
}

.gold-line {
  color: var(--gold-light);
  font-size: clamp(20px, 2vw, 28px);
}

.glass {
  border: 1px solid rgba(239, 215, 166, 0.2);
  background:
    linear-gradient(135deg, rgba(20, 15, 28, 0.86), rgba(6, 6, 11, 0.7));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #efcb7a;
  border-radius: 14px;
  color: #0b0810;
  background: linear-gradient(135deg, #f0cf83, #bd8430);
  box-shadow:
    0 16px 45px rgba(186, 125, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button {
  min-height: 58px;
  padding: 0 26px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 22px 60px rgba(186, 125, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button:focus-visible,
.nav-cta:focus-visible,
.topbar a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

/* Navigation */

.topbar {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  width: min(1380px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(235, 214, 174, 0.17);
  border-radius: 20px;
  background: rgba(6, 6, 11, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #89818e;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(232, 194, 113, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
}

.topbar nav {
  display: flex;
  gap: 34px;
}

.topbar nav a {
  color: #c4bdc6;
  font-size: 12px;
  transition: color 160ms ease;
}

.topbar nav a:hover {
  color: var(--paper);
}

.nav-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 21px;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 2, 6, 0.18), rgba(4, 3, 8, 0.08) 32%, rgba(3, 3, 7, 0.2) 68%, rgba(2, 2, 5, 0.35)),
    linear-gradient(180deg, rgba(3, 3, 7, 0.36), transparent 26%, transparent 70%, rgba(3, 3, 7, 0.78));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100vw - 48px));
  margin-top: 40px;
  padding: 46px 52px;
  text-align: center;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(237, 211, 160, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(4, 4, 9, 0.56), rgba(4, 4, 9, 0.28));
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  content: "";
}

.hero-copy h1 {
  margin-bottom: 16px;
  color: #f5ecdc;
  font-size: clamp(56px, 6.6vw, 102px);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-promise {
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: clamp(17px, 1.55vw, 23px);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-lead {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #d0c9c7;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(840px, calc(100vw - 40px));
  padding: 13px 22px;
  border: 1px solid rgba(235, 214, 174, 0.12);
  border-radius: 999px;
  color: #a9a1ab;
  background: rgba(5, 5, 9, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  transform: translateX(-50%);
}

.hero-ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

/* Recognition */

.recognition {
  padding-top: 180px;
  background:
    radial-gradient(circle at 25% 50%, rgba(93, 52, 175, 0.15), transparent 36rem),
    var(--ink);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 76px;
}

.recognition-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(216, 176, 98, 0.2);
  border-radius: 32px 10px 32px 10px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.46);
}

.recognition-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 54%, rgba(5, 5, 10, 0.22)),
    linear-gradient(180deg, transparent 60%, rgba(5, 5, 10, 0.52));
  content: "";
  pointer-events: none;
}

.recognition-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.speech {
  position: absolute;
  z-index: 2;
  top: 78px;
  left: 8%;
  width: 39%;
  padding: 24px 24px 26px;
  border: 1px solid rgba(163, 112, 255, 0.62);
  border-radius: 18px;
  color: #e8ddf5;
  background: rgba(9, 7, 17, 0.72);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.32),
    0 0 35px rgba(101, 55, 199, 0.18);
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.22;
  backdrop-filter: blur(14px);
}

.recognition-copy h2 {
  margin-bottom: 30px;
}

.recognition-copy .big-copy {
  margin-bottom: 28px;
}

/* Club */

.club-scene {
  position: relative;
  display: grid;
  min-height: 86svh;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.club-scene > img,
.club-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.club-scene > img {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.08) hue-rotate(4deg);
}

.club-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at center, transparent 30%, rgba(2, 2, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(2, 2, 5, 0.1), rgba(2, 2, 5, 0.82));
}

.club-copy {
  width: min(780px, calc(100vw - 80px));
  margin: 0 auto 70px;
  padding: 32px 38px;
  border-radius: 24px;
  text-align: center;
}

.club-copy p {
  margin-bottom: 0;
  color: #e5ddd3;
  font-size: clamp(18px, 1.65vw, 24px);
}

.club-copy p + p {
  margin-top: 14px;
  color: var(--gold-light);
}

.door-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--gold), transparent);
}

/* Editorial lists */

.barrier-grid,
.advantage-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 52px;
}

.barrier-grid article,
.advantage-grid article,
.safety-grid article {
  position: relative;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.barrier-grid article > span,
.advantage-grid article > span,
.safety-grid article > span,
.audience-list article > span,
.included-list article > span,
.process-list article > span,
.case-index {
  color: var(--gold);
  font-family: var(--display);
  font-size: 16px;
}

.barrier-grid p,
.advantage-grid p,
.safety-grid p {
  margin-bottom: 0;
}

.invitation {
  width: fit-content;
  margin: 56px auto 0;
  padding: 12px 20px;
  border: 1px solid rgba(214, 171, 93, 0.3);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 24px;
}

/* Difference */

.statement {
  min-height: 740px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 50%, rgba(110, 64, 199, 0.22), transparent 30rem),
    linear-gradient(135deg, #08070e, #100b18);
}

.statement-orbit {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 111, 242, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.statement-orbit::before,
.statement-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(214, 171, 93, 0.11);
  border-radius: 50%;
  content: "";
}

.statement-orbit::after {
  inset: 27%;
}

.statement-copy h2 {
  max-width: 1000px;
}

.statement-copy h2 em {
  display: block;
  margin-top: 10px;
  color: var(--gold-light);
  font-style: normal;
}

.comparison-copy {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 70px;
  align-items: end;
  max-width: 1100px;
}

.comparison-copy p {
  margin-bottom: 0;
  font-size: 19px;
}

.comparison-copy strong {
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
}

/* Capabilities */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  font-size: 18px;
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: var(--content);
  margin: 0 auto;
}

.capability-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(21, 15, 31, 0.92), rgba(8, 7, 12, 0.96));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}

.capability-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.4;
  border-bottom: 1px solid var(--line-violet);
  background: #090711;
}

.capability-image::before {
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(211, 170, 92, 0.22);
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(116, 71, 203, 0.1);
  content: "";
  pointer-events: none;
}

.capability-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(8, 6, 12, 0.7)),
    radial-gradient(circle at 14% 8%, rgba(123, 73, 219, 0.22), transparent 32%);
  content: "";
  pointer-events: none;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.capability-card:hover .capability-image img {
  transform: scale(1.025);
}

.capability-copy {
  padding: 28px 30px 32px;
}

.capability-copy h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.capability-copy p {
  margin-bottom: 22px;
}

.capability-copy strong {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 14px;
}

.extra-possibilities {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-top: 86px;
}

.extra-possibilities > p {
  margin-bottom: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.16;
}

.extra-possibilities > p strong {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.leisure-scene {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(214, 171, 93, 0.26);
  border-radius: 26px;
  background: rgba(14, 10, 23, 0.9);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(1deg);
}

.leisure-scene img {
  width: 100%;
  border-radius: 16px;
}

.leisure-scene span {
  position: absolute;
  right: 30px;
  bottom: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(240, 211, 145, 0.32);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(5, 5, 10, 0.75);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.value-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding: 72px max(40px, calc((100vw - 1280px) / 2));
  border-block: 1px solid rgba(214, 171, 93, 0.2);
  background:
    linear-gradient(90deg, rgba(76, 42, 132, 0.2), rgba(173, 117, 43, 0.13)),
    #09070f;
}

.value-band p,
.value-band strong {
  margin: 0;
}

.value-band strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

.value-band strong span {
  color: var(--gold-light);
}

/* Audience and transition */

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

.audience-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list p {
  max-width: 940px;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
}

.opening-scene,
.finale {
  position: relative;
  display: grid;
  min-height: 86svh;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.opening-image,
.finale-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opening-scene::after,
.finale::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 3, 7, 0.24), transparent 62%, rgba(3, 3, 7, 0.1));
  content: "";
}

.opening-copy {
  width: min(650px, calc(100vw - 80px));
  margin-left: max(40px, calc((100vw - 1280px) / 2));
  padding: 46px 48px;
  border-radius: 28px;
}

.opening-copy h2 {
  margin-bottom: 28px;
}

.opening-copy p {
  color: #d8d0c7;
  font-size: 18px;
}

/* Process */

.process-list {
  max-width: 1040px;
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 400;
}

.process-list p {
  max-width: 840px;
  margin-bottom: 0;
}

.done-card {
  max-width: 1040px;
  margin: 70px 0 0 auto;
  padding: 44px 50px;
  border: 1px solid rgba(139, 87, 229, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(121, 72, 207, 0.18), transparent 24rem),
    rgba(13, 10, 20, 0.9);
}

.done-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.done-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 36px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.done-card li {
  position: relative;
  padding-left: 22px;
  color: #d8d0d5;
}

.done-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(214, 171, 93, 0.6);
  content: "";
}

.done-card > p {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Case */

.case {
  background:
    radial-gradient(circle at 15% 30%, rgba(95, 50, 172, 0.13), transparent 32rem),
    #08070d;
}

.case-heading {
  display: flex;
  justify-content: space-between;
}

.case-timeline {
  max-width: 1050px;
  margin-left: auto;
}

.case-timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.case-timeline h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.case-timeline p {
  margin-bottom: 16px;
}

.case-timeline blockquote {
  margin-bottom: 0;
  padding: 20px 24px;
  border-left: 1px solid var(--gold);
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(214, 171, 93, 0.07), transparent);
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.4;
}

.case-note {
  width: fit-content;
  margin: 40px 0 0 auto;
  padding: 10px 16px;
  border-radius: 9px;
  color: #b5abb5;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

/* Expertise */

.head-start-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.story-card {
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: #d5cdd2;
  background: rgba(14, 10, 20, 0.75);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  font-size: 18px;
}

.story-card strong {
  display: block;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.head-start-result {
  grid-column: 1 / -1;
  max-width: 960px;
  margin: 28px auto 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.2;
  text-align: center;
}

.inside {
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(103, 58, 183, 0.12), transparent 50%),
    #0a0810;
}

.inside-orbit {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--line-violet);
  border-radius: 50%;
  transform: translateY(-50%);
}

.inside-orbit span {
  position: absolute;
  padding: 7px 13px;
  border: 1px solid var(--line-violet);
  border-radius: 999px;
  color: var(--violet-soft);
  background: rgba(8, 6, 13, 0.82);
  font-size: 11px;
}

.inside-orbit span:nth-child(1) { top: 8%; left: 34%; }
.inside-orbit span:nth-child(2) { top: 42%; left: -4%; }
.inside-orbit span:nth-child(3) { top: 66%; left: 62%; }
.inside-orbit span:nth-child(4) { top: 88%; left: 22%; }

.inside p {
  font-size: 18px;
}

.inside-accent {
  display: block;
  margin: 34px 0;
  padding: 28px 32px;
  border: 1px solid rgba(214, 171, 93, 0.22);
  border-radius: 18px;
  color: var(--gold-light);
  background: rgba(214, 171, 93, 0.05);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.underlined {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--paper);
}

/* Comparison table */

.course-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.course-head,
.course-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-head {
  color: var(--gold-light);
  background: rgba(214, 171, 93, 0.06);
  font-family: var(--display);
  font-size: 24px;
}

.course-head span,
.course-row span {
  padding: 24px 30px;
}

.course-head span + span,
.course-row span + span {
  border-left: 1px solid var(--line);
}

.course-row {
  border-top: 1px solid var(--line);
  color: #aca4ac;
}

.course-row span + span {
  color: var(--paper);
  background: rgba(122, 77, 208, 0.05);
}

.course-finale {
  max-width: 850px;
  margin: 52px auto 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.3;
  text-align: center;
}

.safety-lead {
  margin-top: -24px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 32px;
}

.safety-bottom {
  max-width: 950px;
  margin: 44px 0 0 auto;
  padding: 28px 34px;
  border-left: 1px solid var(--gold);
  color: var(--paper);
  background: linear-gradient(90deg, rgba(214, 171, 93, 0.06), transparent);
}

/* About */

.about {
  background:
    radial-gradient(circle at 22% 42%, rgba(102, 57, 187, 0.16), transparent 28rem),
    #08070d;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: center;
}

.portrait {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(214, 171, 93, 0.25);
  border-radius: 120px 24px 24px 24px;
  background: #100d18;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
}

.portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(7, 6, 10, 0.72)),
    linear-gradient(135deg, rgba(84, 40, 161, 0.12), transparent 45%);
  content: "";
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.05);
}

.portrait span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(214, 171, 93, 0.28);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(8, 6, 12, 0.72);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.about-copy h2 {
  margin-bottom: 10px;
}

.about-role {
  margin-bottom: 30px;
  color: var(--gold-light);
  font-size: 19px;
}

.about-copy strong {
  display: block;
  margin-top: 30px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

/* Included */

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

.included-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.included-list p {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 48px;
  margin: 72px 0 42px;
}

.price-copy,
.guarantee {
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(13, 10, 20, 0.72);
}

.price-copy p:last-child {
  margin-bottom: 0;
}

.guarantee {
  background:
    radial-gradient(circle at 90% 10%, rgba(135, 89, 233, 0.2), transparent 14rem),
    rgba(13, 10, 20, 0.82);
}

.guarantee > span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
}

.guarantee h3 {
  margin-top: 15px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

/* No magic */

.no-magic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 76px;
  align-items: center;
}

.control-visual {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0, rgba(126, 78, 217, 0.2), transparent 16rem),
    #0d0a15;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.complex-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  padding: 20px;
  border: 1px solid rgba(139, 91, 227, 0.22);
  border-radius: 16px;
  opacity: 0.62;
}

.complex-panel i {
  aspect-ratio: 1.5;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(131, 82, 222, 0.45), rgba(214, 171, 93, 0.2));
}

.simple-panel {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.simple-panel button {
  flex: 1;
  padding: 12px 8px;
  border: 1px solid rgba(214, 171, 93, 0.22);
  border-radius: 9px;
  color: var(--gold-light);
  background: rgba(214, 171, 93, 0.05);
}

.control-visual p {
  margin: 20px 4px 0;
  font-size: 13px;
}

/* Closing blocks */

.community {
  text-align: center;
}

.community .narrow {
  padding: 70px;
  border: 1px solid var(--line-violet);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(127, 78, 220, 0.17), transparent 26rem),
    rgba(13, 10, 20, 0.72);
}

.community h2 {
  margin-inline: auto;
}

.community p {
  margin-bottom: 0;
  font-size: 18px;
}

.audit {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(111, 63, 196, 0.14), transparent 40%),
    #09070e;
}

.audit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
}

.audit-grid h2 {
  margin-bottom: 0;
}

.audit-grid p {
  font-size: 18px;
}

.audit-grid strong {
  display: block;
  margin: 24px 0 30px;
  color: var(--gold-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.faq-grid h2 {
  position: sticky;
  top: 120px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 52px 27px 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.25;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 40px 28px 0;
}

.finale {
  min-height: 92svh;
}

.finale-copy {
  margin: 0 auto;
  padding-right: 48%;
}

.finale-copy h2 {
  margin-bottom: 28px;
}

.finale-copy > p {
  max-width: 640px;
  color: #d8d0c7;
  font-size: 18px;
}

.channel-link {
  display: block;
  max-width: 590px;
  margin-top: 28px;
  padding-bottom: 4px;
  color: #b8afb8;
  border-bottom: 1px solid rgba(184, 175, 184, 0.3);
  font-size: 14px;
}

.channel-link:hover {
  color: var(--paper);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 60px;
  align-items: start;
  padding: 54px max(40px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  background: #050509;
}

footer > div:first-child {
  display: flex;
  flex-direction: column;
}

footer > div:first-child span,
footer p {
  color: #77717b;
  font-size: 12px;
}

footer > div:nth-child(2) {
  display: flex;
  gap: 24px;
  color: #aaa2aa;
  font-size: 12px;
}

footer p {
  grid-column: 1 / -1;
  margin: 0;
}

/* Responsive */

@media (max-width: 1100px) {
  :root {
    --content: min(100% - 48px, 960px);
    --narrow: min(100% - 48px, 780px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .recognition-grid,
  .about-grid,
  .head-start-grid,
  .no-magic-grid {
    gap: 48px;
  }

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

  .recognition-media {
    min-height: auto;
  }

  .recognition-media img {
    min-height: 0;
  }

  .recognition-copy {
    max-width: 760px;
  }

  .section-heading,
  .extra-possibilities,
  .comparison-copy,
  .audit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-grid h2 {
    position: static;
  }

  .about-grid {
    grid-template-columns: 0.7fr 1fr;
  }

  .finale-copy {
    padding-right: 38%;
  }
}

@media (max-width: 780px) {
  :root {
    --content: calc(100vw - 36px);
    --narrow: calc(100vw - 36px);
  }

  body {
    font-size: 16px;
  }

  .scene {
    padding: 96px 0;
  }

  h2 {
    margin-bottom: 34px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .topbar {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 58px;
    border-radius: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand {
    font-size: 10px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero-image {
    object-position: 44% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 7, 0.14), rgba(3, 3, 7, 0.3) 38%, rgba(3, 3, 7, 0.92) 78%),
      linear-gradient(90deg, transparent, rgba(3, 3, 7, 0.2));
  }

  .hero-copy {
    width: calc(100vw - 28px);
    margin: 0 0 92px;
    padding: 30px 22px;
  }

  .hero-copy::before {
    border-radius: 22px;
    backdrop-filter: blur(16px);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 0.98;
  }

  .hero-promise {
    font-size: 16px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-ticker {
    bottom: 18px;
    gap: 10px;
    padding-inline: 12px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .recognition {
    padding-top: 110px;
  }

  .recognition-media {
    border-radius: 22px 8px 22px 8px;
  }

  .recognition-media img {
    min-height: 420px;
    object-position: 62% center;
  }

  .speech {
    top: 28px;
    left: 22px;
    width: 48%;
    padding: 17px;
    font-size: 18px;
  }

  .club-scene {
    min-height: 700px;
  }

  .club-copy,
  .opening-copy {
    width: calc(100vw - 36px);
  }

  .club-copy {
    margin-bottom: 26px;
    padding: 24px 22px;
  }

  .opening-copy {
    margin: 0 auto;
    padding: 32px 26px;
  }

  .opening-image,
  .finale-image {
    object-position: 65% center;
  }

  .barrier-grid,
  .advantage-grid,
  .safety-grid,
  .capability-rail,
  .done-card ul,
  .course-head,
  .course-row,
  .price-grid,
  .about-grid,
  .head-start-grid,
  .no-magic-grid,
  .value-band {
    grid-template-columns: 1fr;
  }

  .capability-rail {
    width: var(--content);
  }

  .capability-copy {
    padding: 24px;
  }

  .extra-possibilities {
    margin-top: 58px;
  }

  .value-band {
    gap: 24px;
    padding: 58px 18px;
  }

  .audience-list article,
  .process-list article,
  .case-timeline article,
  .included-list article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .audience-list p {
    font-size: 27px;
  }

  .done-card,
  .story-card,
  .price-copy,
  .guarantee {
    padding: 30px 24px;
  }

  .inside-orbit {
    display: none;
  }

  .course-head {
    display: none;
  }

  .course-row {
    display: block;
  }

  .course-row span {
    display: block;
    padding: 20px 22px;
  }

  .course-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .portrait {
    min-height: 520px;
    border-radius: 80px 20px 20px;
  }

  .portrait img {
    min-height: 520px;
  }

  .community .narrow {
    padding: 48px 24px;
  }

  .faq-list summary {
    font-size: 22px;
  }

  .finale {
    min-height: 860px;
    align-items: end;
  }

  .finale::after {
    background: linear-gradient(180deg, transparent 22%, rgba(3, 3, 7, 0.45) 48%, rgba(3, 3, 7, 0.95) 82%);
  }

  .finale-copy {
    margin-bottom: 54px;
    padding-right: 0;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  footer > div:nth-child(2) {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

/* Homepage v1: approved marketing-first hero */

@keyframes home-image-settle {
  from {
    transform: scale(1.018);
  }

  to {
    transform: scale(1);
  }
}

@keyframes home-opacity-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes home-channel-atmosphere {
  from {
    background-position: 84% 18%, 0 0;
  }

  to {
    background-position: 77% 25%, 0 0;
  }
}

.home-motion-ready [data-home-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--home-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.home-motion-ready [data-home-reveal="fade"] {
  transform: none;
}

.home-motion-ready [data-home-reveal="media"] {
  clip-path: inset(0 5% 0 0 round 28px);
  transform: translate3d(-18px, 0, 0);
  transition:
    clip-path 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-motion-ready [data-home-reveal="portrait"] {
  clip-path: inset(4% 0 0 0 round 30px);
  transform: translate3d(0, 18px, 0);
  transition:
    clip-path 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-motion-ready [data-home-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-motion-ready [data-home-reveal="media"].is-visible,
.home-motion-ready [data-home-reveal="portrait"].is-visible {
  clip-path: inset(0 round 28px);
}

.home-motion-ready .home-hero-image {
  animation: home-image-settle 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-motion-ready .home-topbar {
  animation: home-opacity-in 760ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-motion-ready .home-channel {
  background-size: 115% 115%, 100% 100%;
  animation: home-channel-atmosphere 14s ease-in-out infinite alternate;
}

.home-reveal-delay-1 {
  --home-reveal-delay: 90ms;
}

.home-reveal-delay-2 {
  --home-reveal-delay: 180ms;
}

.home-reveal-delay-3 {
  --home-reveal-delay: 270ms;
}

.home-reveal-delay-4 {
  --home-reveal-delay: 360ms;
}

.home-reveal-delay-5 {
  --home-reveal-delay: 450ms;
}

.home-reveal-delay-6 {
  --home-reveal-delay: 540ms;
}

.home-page {
  min-height: 100svh;
  overflow: hidden;
  color: #f5f0e8;
  background: #050509;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

.home-topbar {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(237, 214, 172, 0.17);
  border-radius: 24px;
  background: rgba(5, 5, 10, 0.68);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.home-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  color: #f3eadb;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-brand small {
  display: block;
  margin-top: 4px;
  color: #aaa2aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-monogram {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(225, 176, 91, 0.62);
  border-radius: 50%;
  color: #f0d190;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.home-nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 40px);
  align-items: center;
  justify-content: center;
}

.home-nav a {
  color: #b1a9ad;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.home-nav a:hover {
  color: #f3eadb;
}

.home-nav-cta,
.home-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 181, 93, 0.72);
  color: #171008;
  background: linear-gradient(135deg, #efd08a, #c18d39);
  box-shadow:
    0 16px 44px rgba(190, 127, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-weight: 750;
  line-height: 1;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.home-nav-cta {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: 11px;
}

.home-nav-cta-mobile {
  display: none;
}

.home-nav-cta:hover,
.home-primary-action:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.home-brand:focus-visible,
.home-nav a:focus-visible,
.home-nav-cta:focus-visible,
.home-primary-action:focus-visible {
  outline: 2px solid #f1cf83;
  outline-offset: 5px;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: max(780px, 100svh);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #06060a;
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 54% 22%;
  filter: saturate(0.84) contrast(1.03) brightness(0.72);
}

.home-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 52%, rgba(5, 5, 10, 0.58) 0%, rgba(5, 5, 10, 0.18) 26%, transparent 48%),
    linear-gradient(90deg, rgba(5, 5, 10, 0.97) 0%, rgba(5, 5, 10, 0.87) 26%, rgba(5, 5, 10, 0.46) 52%, rgba(5, 5, 10, 0.12) 82%),
    linear-gradient(180deg, rgba(5, 5, 10, 0.25) 0%, transparent 28%, rgba(5, 5, 10, 0.12) 66%, rgba(5, 5, 10, 0.72) 100%);
}

.home-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: center;
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 168px 0 142px;
}

.home-hero-statement {
  max-width: 730px;
}

.home-hero-support {
  max-width: 410px;
  padding-top: 94px;
}

.home-eyebrow {
  margin: 0 0 30px;
  color: #d9ae60;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 730px;
  margin: 0;
  color: #f5f0e8;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(56px, 4.55vw, 76px);
  font-weight: 440;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero h1 > span {
  display: block;
}

.home-hero h1 > span + span {
  max-width: 720px;
  margin-top: 14px;
}

.home-hero h1 em {
  color: #d9ae60;
  font-style: normal;
}

.home-hero-lead {
  max-width: 410px;
  margin: 0;
  color: rgba(244, 237, 227, 0.8);
  font-size: clamp(17px, 1.1vw, 19px);
  font-weight: 420;
  line-height: 1.68;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.home-primary-action {
  gap: 48px;
  min-height: 60px;
  margin-top: 42px;
  padding: 0 24px 0 28px;
  border-radius: 15px;
  font-size: 13px;
}

.home-primary-action span:last-child {
  font-size: 16px;
}

.home-hero-note {
  position: absolute;
  right: max(40px, calc((100vw - 1280px) / 2));
  bottom: 34px;
  display: flex;
  gap: 13px;
  align-items: center;
  color: rgba(244, 237, 227, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero-note i {
  width: 22px;
  height: 1px;
  background: rgba(217, 174, 96, 0.62);
}

.home-next-anchor {
  height: 1px;
  scroll-margin-top: 96px;
  background: #050509;
}

@media (max-width: 980px) {
  .home-topbar {
    grid-template-columns: auto 1fr auto;
  }

  .home-nav {
    display: none;
  }

  .home-hero-content {
    display: block;
    width: min(100% - 48px, 860px);
    padding: 142px 0 116px;
  }

  .home-hero-statement {
    max-width: 760px;
  }

  .home-hero-support {
    max-width: 680px;
    padding-top: 0;
  }

  .home-hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 8vw, 76px);
  }

  .home-hero-lead {
    max-width: 680px;
    margin-top: 38px;
  }

  .home-hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 10, 0.95) 0%, rgba(5, 5, 10, 0.82) 45%, rgba(5, 5, 10, 0.24) 86%),
      linear-gradient(180deg, rgba(5, 5, 10, 0.2), rgba(5, 5, 10, 0.65));
  }
}

@media (max-width: 680px) {
  .home-topbar {
    top: 8px;
    width: calc(100vw - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 10px;
    border-radius: 20px;
  }

  .home-brand {
    gap: 9px;
    font-size: 10px;
  }

  .home-brand small {
    margin-top: 3px;
    font-size: 8.5px;
  }

  .home-monogram {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .home-nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10.5px;
  }

  .home-hero {
    min-height: 920px;
    align-items: end;
  }

  .home-hero-image {
    object-position: 53% top;
    filter: saturate(0.82) contrast(1.02) brightness(0.68);
  }

  .home-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 10, 0.08) 12%, rgba(5, 5, 10, 0.2) 34%, rgba(5, 5, 10, 0.92) 63%, #050509 100%),
      linear-gradient(90deg, rgba(5, 5, 10, 0.3), transparent 60%);
  }

  .home-hero-content {
    width: calc(100% - 40px);
    padding: 330px 0 72px;
  }

  .home-eyebrow {
    margin-bottom: 18px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
  }

  .home-hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -0.052em;
    line-height: 0.99;
  }

  .home-hero h1 > span + span {
    margin-top: 8px;
  }

  .home-hero-lead {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.58;
  }

  .home-primary-action {
    width: 100%;
    margin-top: 28px;
  }

  .home-hero-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-motion-ready [data-home-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-motion-ready .home-hero-image {
    animation: none;
  }

  .home-motion-ready .home-topbar {
    animation: none;
  }

  .home-motion-ready .home-channel {
    animation: none;
  }

  .home-nav-cta,
  .home-primary-action {
    transition: none;
  }
}

/* Homepage v1: concise ecosystem */

.home-wrap {
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
}

.home-directions,
.home-case,
.home-about,
.home-channel {
  position: relative;
  scroll-margin-top: 92px;
}

.home-section-kicker {
  margin: 0 0 24px;
  color: #d9ae60;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-section-heading h2,
.home-case-copy h2,
.home-about-copy h2,
.home-channel h2 {
  margin: 0;
  color: #f5f0e8;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-weight: 430;
  letter-spacing: -0.052em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-section-heading h2 span,
.home-case-copy h2 span {
  color: #d9ae60;
}

.home-directions {
  padding: 154px 0 160px;
  background:
    radial-gradient(circle at 7% 0%, rgba(91, 45, 156, 0.13), transparent 34rem),
    #08070d;
}

.home-directions-heading {
  display: grid;
  grid-template-columns: 64px minmax(230px, 0.78fr) minmax(320px, 1.22fr) minmax(220px, 0.7fr);
  gap: clamp(24px, 3.5vw, 58px);
  align-items: end;
  margin-bottom: 90px;
}

.home-directions-heading .home-section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.home-directions-heading h2 {
  grid-column: 1 / 4;
  max-width: 850px;
  font-size: clamp(56px, 5.25vw, 82px);
}

.home-directions-heading > p:last-child {
  grid-column: 4;
  max-width: 410px;
  margin: 0 0 7px;
  color: rgba(244, 237, 227, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.home-direction-list {
  border-top: 1px solid rgba(231, 209, 171, 0.2);
}

.home-direction-row {
  display: grid;
  grid-template-columns: 64px minmax(230px, 0.78fr) minmax(320px, 1.22fr) minmax(220px, 0.7fr);
  gap: clamp(24px, 3.5vw, 58px);
  align-items: start;
  min-height: 220px;
  padding: 48px 20px 46px 0;
  border-bottom: 1px solid rgba(231, 209, 171, 0.16);
  transition: background 180ms ease, padding 180ms ease;
}

.home-direction-row:hover {
  padding-right: 28px;
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(217, 174, 96, 0.055), rgba(94, 51, 147, 0.045));
}

.home-direction-number {
  padding-top: 8px;
  color: #d9ae60;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.home-direction-row h3 {
  margin: 0;
  color: #f5f0e8;
  font-size: clamp(28px, 2.25vw, 38px);
  font-weight: 480;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.home-direction-row > p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 237, 227, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.home-direction-row > a,
.home-text-link {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4px 0 15px;
  border-bottom: 1px solid rgba(217, 174, 96, 0.48);
  color: #ead19d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  transition: color 180ms ease, border-color 180ms ease;
}

.home-direction-row > a:hover,
.home-text-link:hover {
  border-color: #efd089;
  color: #f5e2b8;
}

.home-case {
  padding: 148px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 36%, rgba(86, 42, 147, 0.19), transparent 40rem),
    radial-gradient(circle at 83% 55%, rgba(158, 105, 35, 0.1), transparent 32rem),
    #050509;
}

.home-case::before {
  position: absolute;
  inset: 54px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 174, 96, 0.2), transparent);
  content: "";
}

.home-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: clamp(54px, 5vw, 82px);
  align-items: start;
}

.home-case-media {
  overflow: hidden;
  border: 1px solid rgba(231, 209, 171, 0.2);
  border-radius: 28px;
  background: #0b0910;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.home-case-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #09080d;
}

.home-case-caption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px 22px;
  color: rgba(244, 237, 227, 0.56);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-case-caption span:first-child {
  color: #f0e6d8;
}

.home-case-copy h2 {
  max-width: 650px;
  font-size: clamp(48px, 3.75vw, 62px);
}

.home-case-lead {
  max-width: 560px;
  margin: 38px 0 0;
  color: rgba(244, 237, 227, 0.7);
  font-size: 18px;
  line-height: 1.72;
}

.home-case-copy blockquote {
  max-width: 560px;
  margin: 38px 0 42px;
  padding: 2px 0 2px 24px;
  border-left: 1px solid #d9ae60;
  color: #f2dfb5;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 470;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.home-text-link {
  max-width: 350px;
}

.home-about {
  padding: 156px 0 162px;
  background:
    linear-gradient(90deg, rgba(12, 9, 18, 0.98), rgba(7, 7, 12, 0.98)),
    #08070d;
}

.home-about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.home-about-portrait {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(231, 209, 171, 0.2);
  border-radius: 30px;
  background: #0b0a0e;
}

.home-about-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 9, 0.82));
  content: "";
}

.home-about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.86) contrast(1.02);
}

.home-about-portrait > span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: rgba(244, 237, 227, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-about-copy h2 {
  font-size: clamp(58px, 5.2vw, 84px);
}

.home-about-role {
  max-width: 670px;
  margin: 22px 0 0;
  color: #d9ae60;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 520;
  line-height: 1.5;
}

.home-about-text {
  max-width: 720px;
  margin: 42px 0 0;
  color: rgba(244, 237, 227, 0.72);
  font-size: 18px;
  line-height: 1.76;
}

.home-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 52px;
  padding: 32px 0 35px;
  border-top: 1px solid rgba(231, 209, 171, 0.18);
  border-bottom: 1px solid rgba(231, 209, 171, 0.18);
}

.home-about-stats div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-about-stats strong {
  color: #f5f0e8;
  font-size: clamp(30px, 2.8vw, 43px);
  font-weight: 470;
  letter-spacing: -0.045em;
}

.home-about-stats span {
  max-width: 170px;
  color: rgba(244, 237, 227, 0.54);
  font-size: 12px;
  line-height: 1.5;
}

.home-about-manifesto {
  max-width: 720px;
  margin: 42px 0 0;
  padding-left: 28px;
  border-left: 1px solid rgba(217, 174, 96, 0.7);
  color: #f5f0e8;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.34;
}

.home-about-manifesto span {
  color: #d9ae60;
}

.home-channel {
  min-height: 560px;
  padding: 140px 0 132px;
  isolation: isolate;
  overflow: hidden;
  color: #171008;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 246, 221, 0.62), transparent 26rem),
    linear-gradient(135deg, #ebcf93 0%, #d8aa57 48%, #b98031 100%);
}

.home-channel-word {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(33, 19, 7, 0.08);
  font-size: clamp(150px, 18vw, 330px);
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 1;
  user-select: none;
}

.home-channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.68fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
}

.home-channel .home-section-kicker {
  color: rgba(40, 24, 9, 0.62);
}

.home-channel h2 {
  max-width: 760px;
  color: #171008;
  font-size: clamp(58px, 6.2vw, 96px);
}

.home-channel-copy {
  padding-bottom: 8px;
}

.home-channel-copy > p {
  max-width: 470px;
  margin: 0;
  color: rgba(27, 16, 7, 0.75);
  font-size: 18px;
  line-height: 1.72;
}

.home-channel-copy > a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  margin-top: 38px;
  padding: 0 24px 0 13px;
  border: 1px solid rgba(31, 18, 8, 0.5);
  border-radius: 15px;
  color: #171008;
  font-size: 13px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease;
}

.home-channel-copy > a:hover {
  background: rgba(255, 247, 226, 0.2);
  transform: translateY(-2px);
}

.home-telegram-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #f4e6c6;
  background: #171008;
  font-size: 14px;
  transform: rotate(-18deg);
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(440px, 1.2fr) auto;
  gap: 50px;
  align-items: end;
  padding: 54px max(40px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(231, 209, 171, 0.14);
  color: rgba(244, 237, 227, 0.55);
  background: #050509;
  font-size: 11px;
}

.home-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.home-footer-brand strong {
  color: #f2e9dc;
  font-size: 15px;
  font-weight: 620;
}

.home-footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-footer nav a {
  color: rgba(244, 237, 227, 0.62);
  transition: color 180ms ease;
}

.home-footer nav a:hover {
  color: #f5f0e8;
}

.home-footer p {
  margin: 0;
  white-space: nowrap;
}

/* Legal pages */

.legal-page {
  min-height: 100svh;
  color: #f5f0e8;
  background:
    radial-gradient(circle at 88% 8%, rgba(91, 45, 156, 0.13), transparent 34rem),
    #050509;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
}

.legal-topbar {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(231, 209, 171, 0.16);
}

.legal-back {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: #ead19d;
  font-size: 12px;
  font-weight: 650;
}

.legal-content {
  width: min(920px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 118px 0 132px;
}

.legal-content h1 {
  max-width: 900px;
  margin: 0;
  color: #f5f0e8;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-updated {
  margin: 26px 0 0;
  color: rgba(244, 237, 227, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-prose {
  max-width: 760px;
  margin-top: 82px;
  color: rgba(244, 237, 227, 0.76);
  font-size: 17px;
  line-height: 1.76;
}

.legal-prose h2 {
  margin: 64px 0 18px;
  color: #f5f0e8;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 470;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-prose p,
.legal-prose ul {
  margin: 0 0 22px;
}

.legal-prose ul {
  padding-left: 1.3em;
}

.legal-prose li + li {
  margin-top: 8px;
}

.legal-prose a {
  color: #e2bb73;
  text-decoration: underline;
  text-decoration-color: rgba(226, 187, 115, 0.45);
  text-underline-offset: 4px;
}

.legal-back:focus-visible,
.legal-prose a:focus-visible {
  outline: 2px solid #f1cf83;
  outline-offset: 5px;
}

.legal-footer {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px max(40px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(231, 209, 171, 0.14);
  color: rgba(244, 237, 227, 0.52);
  background: #050509;
  font-size: 11px;
}

.home-direction-row > a:focus-visible,
.home-text-link:focus-visible,
.home-channel-copy > a:focus-visible,
.home-footer a:focus-visible {
  outline: 2px solid #f1cf83;
  outline-offset: 5px;
}

@media (max-width: 1100px) {
  .home-directions-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-directions-heading h2,
  .home-directions-heading > p:last-child {
    grid-column: 1;
  }

  .home-directions-heading .home-section-kicker {
    margin-bottom: -8px;
  }

  .home-directions-heading > p:last-child {
    width: min(520px, 58%);
    justify-self: end;
  }

  .home-direction-row {
    grid-template-columns: 54px minmax(210px, 0.7fr) minmax(0, 1.3fr);
  }

  .home-direction-row > a {
    grid-column: 3;
    max-width: 330px;
  }

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

  .home-case-media {
    max-width: 900px;
  }

  .home-case-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 0 64px;
    align-items: start;
  }

  .home-case-copy .home-section-kicker,
  .home-case-copy h2 {
    grid-column: 1;
  }

  .home-case-lead {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 36px;
  }

  .home-case-copy blockquote,
  .home-case-copy .home-text-link {
    grid-column: 1;
  }

  .home-about-layout {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 60px;
  }

  .home-about-portrait {
    min-height: 560px;
  }

  .home-channel-layout {
    grid-template-columns: 1fr 0.72fr;
    gap: 70px;
  }

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

  .home-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .home-wrap {
    width: calc(100vw - 40px);
  }

  .home-directions,
  .home-case,
  .home-about {
    padding: 96px 0 104px;
  }

  .home-directions-heading {
    margin-bottom: 58px;
  }

  .home-directions-heading > p:last-child {
    width: 100%;
    justify-self: start;
  }

  .home-directions-heading h2,
  .home-case-copy h2,
  .home-about-copy h2,
  .home-channel h2 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .home-directions-heading > p:last-child,
  .home-case-lead,
  .home-about-text,
  .home-channel-copy > p {
    font-size: 16px;
  }

  .home-direction-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px 16px;
    min-height: 0;
    padding: 34px 0 38px;
  }

  .home-direction-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .home-direction-number {
    grid-row: 1 / span 3;
  }

  .home-direction-row h3,
  .home-direction-row > p,
  .home-direction-row > a {
    grid-column: 2;
  }

  .home-direction-row > p {
    font-size: 15px;
  }

  .home-direction-row > a {
    max-width: 100%;
    margin-top: 10px;
  }

  .home-case-layout,
  .home-case-copy,
  .home-about-layout,
  .home-channel-layout {
    display: block;
  }

  .home-case-media {
    border-radius: 20px;
  }

  .home-case-caption {
    flex-direction: column;
    gap: 7px;
    padding: 17px 18px 19px;
  }

  .home-case-copy {
    margin-top: 58px;
  }

  .home-case-copy h2 {
    max-width: 620px;
    font-size: clamp(40px, 10.8vw, 46px);
  }

  .home-case-lead {
    margin-top: 30px;
  }

  .home-case-copy blockquote {
    margin: 30px 0 36px;
  }

  .home-about-portrait {
    min-height: min(620px, 128vw);
    border-radius: 22px;
  }

  .home-about-copy {
    margin-top: 58px;
  }

  .home-about-stats {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .home-about-stats div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: baseline;
  }

  .home-about-stats span {
    max-width: 220px;
  }

  .home-channel {
    min-height: 0;
    padding: 98px 0 106px;
  }

  .home-channel-copy {
    margin-top: 40px;
  }

  .home-channel-word {
    right: -0.1em;
    bottom: 0;
    font-size: 34vw;
  }

  .home-channel-copy > a {
    width: 100%;
    justify-content: space-between;
  }

  .home-footer {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    padding: 42px 20px;
  }

  .home-footer nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(231, 209, 171, 0.14);
  }

  .home-footer p {
    white-space: normal;
  }

  .legal-topbar,
  .legal-content {
    width: calc(100vw - 40px);
  }

  .legal-topbar {
    padding: 18px 0;
  }

  .legal-back {
    font-size: 0;
  }

  .legal-back span {
    font-size: 18px;
  }

  .legal-content {
    padding: 88px 0 104px;
  }

  .legal-content h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .legal-prose {
    margin-top: 58px;
    font-size: 16px;
    line-height: 1.68;
  }

  .legal-prose h2 {
    margin-top: 48px;
  }

  .legal-footer {
    flex-direction: column;
    padding: 30px 20px;
  }
}

@media (max-width: 680px) {
  .home-nav-cta-full {
    display: none;
  }

  .home-nav-cta-mobile {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-direction-row,
  .home-direction-row > a,
  .home-text-link,
  .home-channel-copy > a,
  .home-footer nav a {
    transition: none;
  }
}

/* Variant switch */

.version-switch {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 11px 16px 12px;
  border: 1px solid rgba(239, 203, 122, 0.35);
  border-radius: 14px;
  color: var(--paper);
  background: rgba(8, 7, 13, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(16px);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.version-switch small {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.version-switch:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Short variant */

.short-page {
  --short-wrap: min(1320px, calc(100vw - 80px));
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(79, 42, 148, 0.12), transparent 36rem),
    var(--ink);
}

.short-wrap {
  width: var(--short-wrap);
  margin: 0 auto;
}

.short-section-label,
.short-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.short-page h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.98;
}

.short-page h3 {
  font-family: var(--display);
  font-weight: 400;
}

.short-button,
.short-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #efcb7a;
  border-radius: 14px;
  color: #0b0810;
  background: linear-gradient(135deg, #f0cf83, #bd8430);
  box-shadow:
    0 16px 45px rgba(186, 125, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.short-button {
  min-height: 58px;
  padding: 0 26px;
}

.short-button:hover,
.short-nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.short-topbar {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(1420px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(235, 214, 174, 0.17);
  border-radius: 20px;
  background: rgba(6, 6, 11, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

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

.short-brand > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(232, 194, 113, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
}

.short-brand strong {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.short-brand small {
  display: block;
  margin-top: 4px;
  color: #87808b;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.short-topbar nav {
  display: flex;
  gap: 32px;
}

.short-topbar nav a {
  color: #bcb4be;
  font-size: 12px;
}

.short-topbar nav a:hover {
  color: var(--paper);
}

.short-nav-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 21px;
}

.short-hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.short-hero > img,
.short-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.short-hero > img {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.short-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 7, 0.18), rgba(3, 3, 7, 0.52) 33%, rgba(3, 3, 7, 0.1) 74%),
    linear-gradient(180deg, rgba(3, 3, 7, 0.38), transparent 35%, transparent 66%, rgba(3, 3, 7, 0.78));
}

.short-hero-copy {
  width: min(700px, calc(100vw - 48px));
  margin: 76px 0 0 max(40px, calc((100vw - 1320px) / 2 + 300px));
  padding: 40px 44px;
  border: 1px solid rgba(237, 211, 160, 0.14);
  border-radius: 28px;
  background: rgba(4, 4, 9, 0.46);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(12px);
}

.short-hero-copy h1 {
  margin-bottom: 22px;
  color: #f5ecdc;
  font-family: var(--display);
  font-size: clamp(56px, 6.5vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.short-hero-promise {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d3cbc8;
  font-size: clamp(18px, 1.45vw, 22px);
}

.short-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.short-proofline span {
  padding: 8px 12px;
  border: 1px solid rgba(214, 171, 93, 0.18);
  border-radius: 999px;
  color: #b6aeb5;
  background: rgba(8, 7, 13, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.short-intro,
.short-benefits,
.short-gallery,
.short-process,
.short-case,
.short-offer,
.short-about,
.short-faq {
  padding: 130px 0;
}

.short-intro {
  background:
    radial-gradient(circle at 78% 42%, rgba(118, 67, 208, 0.2), transparent 28rem),
    #09070f;
}

.short-intro-grid {
  display: grid;
  grid-template-columns: 0.25fr 1.1fr 0.65fr;
  gap: 54px;
  align-items: end;
}

.short-intro-grid .short-section-label {
  align-self: start;
}

.short-intro-grid h2 span {
  display: block;
  color: var(--gold-light);
}

.short-intro-grid > p:last-child {
  margin-bottom: 0;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  color: var(--paper);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.35;
}

.short-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.short-heading > p {
  margin-bottom: 0;
  font-size: 18px;
}

.short-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.short-benefit-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(19, 14, 28, 0.96), rgba(7, 7, 11, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.short-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line-violet);
}

.short-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(7, 6, 11, 0.58));
  content: "";
}

.short-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.short-benefit-grid article:hover img {
  transform: scale(1.025);
}

.short-card-copy {
  padding: 26px 28px 32px;
}

.short-card-copy > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 15px;
}

.short-card-copy h3 {
  margin: 12px 0;
  font-size: 30px;
}

.short-card-copy p {
  margin-bottom: 0;
}

.short-gallery {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(92, 51, 168, 0.13), transparent 34rem),
    #08070d;
}

.short-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.short-gallery-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #0a0810;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.short-gallery-card-1,
.short-gallery-card-4 {
  grid-column: span 7;
}

.short-gallery-card-2,
.short-gallery-card-3 {
  grid-column: span 5;
}

.short-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.short-gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 9, 0.93) 100%);
  content: "";
}

.short-gallery-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.short-gallery-card h3 {
  margin-bottom: 6px;
  font-size: 30px;
}

.short-gallery-card p {
  max-width: 540px;
  margin-bottom: 0;
  color: #c4bcc3;
}

.short-club {
  position: relative;
  display: grid;
  min-height: 82svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.short-club > img,
.short-club-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.short-club > img {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
}

.short-club-shade {
  z-index: -2;
  background:
    radial-gradient(circle at center, transparent 20%, rgba(3, 3, 7, 0.5)),
    linear-gradient(180deg, rgba(3, 3, 7, 0.18), rgba(3, 3, 7, 0.78));
}

.short-club-copy {
  width: min(760px, calc(100vw - 48px));
  padding: 44px 48px;
  border: 1px solid rgba(239, 214, 164, 0.2);
  border-radius: 28px;
  background: rgba(7, 6, 11, 0.7);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  text-align: center;
  backdrop-filter: blur(18px);
}

.short-club-copy h2 {
  margin-bottom: 25px;
}

.short-club-copy > p:last-child {
  margin-bottom: 0;
  color: #ddd4cd;
  font-size: 18px;
}

.short-process {
  background:
    radial-gradient(circle at 85% 20%, rgba(107, 60, 193, 0.12), transparent 30rem),
    var(--ink);
}

.short-process > .short-wrap > h2 {
  max-width: 920px;
  margin-bottom: 64px;
}

.short-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.short-step-grid article {
  min-height: 320px;
  padding: 34px 34px 40px;
  border-bottom: 1px solid var(--line);
}

.short-step-grid article + article {
  border-left: 1px solid var(--line);
}

.short-step-grid > article > span {
  color: var(--gold);
  font-family: var(--display);
}

.short-step-grid h3 {
  margin: 54px 0 18px;
  font-size: 32px;
}

.short-step-grid p {
  margin-bottom: 0;
}

.short-process-note {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 50px;
  max-width: 980px;
  margin: 60px 0 0 auto;
  padding: 32px 36px;
  border: 1px solid rgba(214, 171, 93, 0.22);
  border-radius: 20px;
  background: rgba(214, 171, 93, 0.04);
}

.short-process-note strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.short-process-note p {
  margin: 0;
}

.short-case {
  border-block: 1px solid var(--line);
  background: #09070f;
}

.short-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.short-case-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(214, 171, 93, 0.22);
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.short-case-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 9, 0.48));
  content: "";
}

.short-case-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.short-case-copy h2 {
  margin-bottom: 28px;
}

.short-case-copy > p {
  font-size: 18px;
}

.short-case-copy blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 1px solid var(--gold);
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(214, 171, 93, 0.07), transparent);
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.35;
}

.short-case-result {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--paper) !important;
}

.short-offer {
  background:
    radial-gradient(circle at 15% 15%, rgba(102, 57, 184, 0.15), transparent 30rem),
    var(--ink);
}

.short-offer-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.short-offer-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.short-offer-grid h2 {
  margin-bottom: 26px;
}

.short-offer-lead {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 18px;
}

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

.short-offer-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.short-offer-list article span {
  color: var(--gold);
  font-family: var(--display);
}

.short-offer-list article p {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
}

.short-price {
  margin-top: 36px;
  padding: 32px 34px;
  border: 1px solid var(--line-violet);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(120, 70, 212, 0.17), transparent 17rem),
    rgba(13, 10, 20, 0.84);
}

.short-price > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.short-price p {
  margin: 16px 0 24px;
}

.short-price strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.short-about {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 42%, rgba(102, 57, 187, 0.14), transparent 28rem),
    #08070d;
}

.short-about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: center;
}

.short-portrait {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(214, 171, 93, 0.25);
  border-radius: 120px 24px 24px 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
}

.short-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 6, 10, 0.68));
  content: "";
}

.short-portrait img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.05);
}

.short-about-grid h2 {
  margin-bottom: 12px;
}

.short-about-role {
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 18px;
}

.short-about-grid > div:last-child > p:not(.short-section-label, .short-about-role) {
  font-size: 18px;
}

.short-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.short-facts span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8c0c7;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
}

.short-faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

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

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

.short-faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.25;
  list-style: none;
}

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

.short-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  transform: translateY(-50%);
}

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

.short-faq-list details p {
  max-width: 700px;
  padding: 0 30px 28px 0;
}

.short-finale {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.short-finale > img,
.short-finale-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.short-finale > img {
  z-index: -3;
  object-fit: cover;
}

.short-finale-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 3, 7, 0.22), transparent 64%);
}

.short-finale-copy {
  padding-right: 48%;
}

.short-finale-copy h2 {
  margin-bottom: 28px;
}

.short-finale-copy > p:not(.short-section-label) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d8d0c7;
  font-size: 18px;
}

.short-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 50px max(40px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  background: #050509;
}

.short-footer > div:first-child {
  display: flex;
  flex-direction: column;
}

.short-footer span {
  color: #77717b;
  font-size: 12px;
}

.short-footer > div:last-child {
  display: flex;
  gap: 26px;
  color: #aaa2aa;
  font-size: 12px;
}

@media (max-width: 1120px) {
  .short-page {
    --short-wrap: min(960px, calc(100vw - 48px));
  }

  .short-topbar {
    grid-template-columns: 1fr auto;
  }

  .short-topbar nav {
    display: none;
  }

  .short-hero-copy {
    margin-left: max(36px, calc((100vw - 960px) / 2 + 150px));
  }

  .short-intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .short-intro-grid .short-section-label {
    grid-column: 1 / -1;
  }

  .short-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .short-case-grid,
  .short-about-grid {
    gap: 48px;
  }
}

@media (max-width: 780px) {
  .short-page {
    --short-wrap: calc(100vw - 36px);
  }

  .version-switch {
    right: 12px;
    bottom: 12px;
    padding: 9px 12px 10px;
    font-size: 11px;
  }

  .short-topbar {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 58px;
    border-radius: 17px;
  }

  .short-brand > span {
    width: 36px;
    height: 36px;
  }

  .short-brand strong {
    font-size: 10px;
  }

  .short-brand small {
    display: none;
  }

  .short-nav-cta {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }

  .short-page h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .short-hero {
    min-height: 860px;
    align-items: end;
  }

  .short-hero > img {
    object-position: 43% center;
  }

  .short-hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 7, 0.14), rgba(3, 3, 7, 0.34) 42%, rgba(3, 3, 7, 0.93) 78%),
      linear-gradient(90deg, transparent, rgba(3, 3, 7, 0.2));
  }

  .short-hero-copy {
    width: calc(100vw - 28px);
    margin: 0 auto 30px;
    padding: 30px 22px;
  }

  .short-hero-copy h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .short-hero-promise {
    font-size: 16px;
  }

  .short-intro,
  .short-benefits,
  .short-gallery,
  .short-process,
  .short-case,
  .short-offer,
  .short-about,
  .short-faq {
    padding: 94px 0;
  }

  .short-intro-grid,
  .short-benefit-grid,
  .short-step-grid,
  .short-process-note,
  .short-case-grid,
  .short-offer-grid,
  .short-about-grid,
  .short-faq-grid {
    grid-template-columns: 1fr;
  }

  .short-intro-grid {
    gap: 28px;
  }

  .short-intro-grid .short-section-label {
    grid-column: auto;
  }

  .short-intro-grid > p:last-child {
    font-size: 21px;
  }

  .short-benefit-grid {
    gap: 18px;
  }

  .short-gallery-grid {
    display: block;
  }

  .short-gallery-card {
    min-height: 430px;
    margin-bottom: 18px;
  }

  .short-gallery-card img {
    min-height: 430px;
  }

  .short-club {
    min-height: 720px;
  }

  .short-club-copy {
    padding: 32px 24px;
  }

  .short-step-grid article {
    min-height: 0;
    padding: 30px 0;
  }

  .short-step-grid article + article {
    border-left: 0;
  }

  .short-step-grid h3 {
    margin-top: 28px;
  }

  .short-process-note {
    gap: 18px;
    padding: 28px 24px;
  }

  .short-case-image,
  .short-case-image img {
    min-height: 440px;
  }

  .short-case-image img {
    object-position: 62% center;
  }

  .short-offer-grid {
    gap: 54px;
  }

  .short-offer-grid > div:first-child {
    position: static;
  }

  .short-portrait,
  .short-portrait img {
    min-height: 520px;
  }

  .short-finale {
    min-height: 860px;
    align-items: end;
  }

  .short-finale > img {
    object-position: 66% center;
  }

  .short-finale-shade {
    background: linear-gradient(180deg, transparent 25%, rgba(3, 3, 7, 0.44) 50%, rgba(3, 3, 7, 0.95) 82%);
  }

  .short-finale-copy {
    margin-bottom: 46px;
    padding-right: 0;
  }

  .short-footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .short-footer > div:last-child {
    flex-direction: column;
    gap: 8px;
  }
}

/* Hybrid version: approved first-screen draft */

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/v9/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/v9/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.hybrid-page {
  min-height: 100svh;
  overflow: hidden;
  scroll-behavior: smooth;
  color: #f5f0e8;
  background: #050509;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

.hybrid-topbar {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100vw - 40px));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(237, 214, 172, 0.16);
  border-radius: 24px;
  background: rgba(6, 6, 11, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hybrid-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #f3eadb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hybrid-brand small {
  display: block;
  margin-top: 4px;
  color: #aaa2aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hybrid-monogram {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(225, 176, 91, 0.58);
  border-radius: 50%;
  color: #f0d190;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hybrid-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hybrid-nav a {
  color: #aaa2aa;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.hybrid-nav a:hover {
  color: #f1e8dc;
}

.hybrid-nav a:focus-visible {
  outline: 2px solid #f3d38c;
  outline-offset: 5px;
}

.hybrid-mobile-nav {
  display: none;
}

.hybrid-nav-cta,
.hybrid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hybrid-button {
  border: 1px solid #edc46f;
  color: #0b0910;
  background: linear-gradient(135deg, #f0cf83, #bd8430);
  box-shadow:
    0 16px 42px rgba(182, 120, 39, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hybrid-button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.hybrid-nav-cta:focus-visible,
.hybrid-button:focus-visible,
.hybrid-brand:focus-visible {
  outline: 2px solid #f3d38c;
  outline-offset: 4px;
}

.hybrid-nav-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(224, 178, 94, 0.5);
  border-radius: 14px;
  color: #e1b762;
  background: rgba(10, 8, 14, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: 13px;
}

.hybrid-nav-cta:hover {
  border-color: rgba(237, 196, 111, 0.82);
  color: #f0cd7f;
  background: rgba(217, 174, 96, 0.09);
  transform: translateY(-1px);
}

.hybrid-hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hybrid-hero > picture {
  display: contents;
}

.hybrid-hero-image,
.hybrid-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hybrid-hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.hybrid-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 25%, rgba(3, 3, 7, 0.18) 58%, rgba(2, 2, 5, 0.5) 100%),
    linear-gradient(90deg, rgba(3, 2, 7, 0.22), transparent 34%, transparent 66%, rgba(3, 2, 6, 0.42)),
    linear-gradient(180deg, rgba(3, 3, 7, 0.35), transparent 25%, transparent 68%, rgba(3, 3, 7, 0.82));
}

.hybrid-hero-copy {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100vw - 48px));
  margin-top: 42px;
  padding: 52px 60px 54px;
  text-align: center;
}

.hybrid-hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(237, 211, 160, 0.09);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.42), rgba(5, 5, 10, 0.16));
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  content: "";
}

.hybrid-eyebrow {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 8px 14px;
  border: 1px solid rgba(237, 211, 160, 0.15);
  border-radius: 999px;
  color: #dfbd79;
  background: rgba(8, 7, 12, 0.42);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.3;
  text-wrap: balance;
  backdrop-filter: blur(10px);
}

.hybrid-eyebrow::before {
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: #e7c77f;
  box-shadow: 0 0 10px rgba(231, 199, 127, 0.55);
  content: "";
  flex: 0 0 auto;
}

.hybrid-hero-copy h1 {
  max-width: none;
  margin: 0 auto 26px;
  color: #f5ecdc;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(64px, 5.9vw, 84px);
  font-weight: 410;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
  white-space: nowrap;
}

.hybrid-promise {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: #c9c2c3;
  font-size: clamp(18px, 1.45vw, 20px);
  font-weight: 420;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-wrap: balance;
}

.hybrid-promise strong {
  color: #f0d391;
  font-weight: 650;
  white-space: nowrap;
}

.hybrid-lead {
  max-width: 54ch;
  margin: 26px auto 0;
  color: #aaa2a8;
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.hybrid-button {
  min-height: 58px;
  gap: 18px;
  padding: 0 27px;
  border-radius: 14px;
  font-size: 14px;
}

.hybrid-ticker {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(235, 214, 174, 0.12);
  border-bottom: 1px solid rgba(235, 214, 174, 0.08);
  color: #aaa3ac;
  background: rgba(5, 5, 9, 0.52);
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.hybrid-ticker-track {
  display: flex;
  width: max-content;
  animation: hybrid-ticker-scroll 46s linear infinite;
  will-change: transform;
}

.hybrid-ticker:hover .hybrid-ticker-track {
  animation-play-state: paused;
}

.hybrid-ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.hybrid-ticker-item {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2vw, 34px);
  margin-right: clamp(22px, 2vw, 34px);
  color: #b8b1b5;
  font-size: 12px;
  font-weight: 520;
  letter-spacing: 0.045em;
  line-height: 1.35;
  white-space: nowrap;
}

.hybrid-ticker-item i {
  color: #d6ab5d;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 14px rgba(214, 171, 93, 0.45);
}

@keyframes hybrid-ticker-scroll {
  from {
    transform: translateX(0);
  }

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

.hybrid-difference {
  position: relative;
  padding: 120px 0 128px;
  border-top: 1px solid rgba(235, 214, 174, 0.08);
  background:
    radial-gradient(circle at 18% 12%, rgba(84, 43, 154, 0.16), transparent 31rem),
    radial-gradient(circle at 84% 76%, rgba(173, 111, 40, 0.08), transparent 28rem),
    #07060b;
}

.hybrid-difference,
.hybrid-capabilities,
.hybrid-process,
.hybrid-about,
.hybrid-offer,
.hybrid-faq {
  scroll-margin-top: 96px;
}

.hybrid-section-wrap {
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
}

.hybrid-difference-heading {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  margin-bottom: 70px;
}

.hybrid-difference-heading h2 {
  grid-column: 1 / 3;
  max-width: 16ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hybrid-difference-heading h2 span {
  color: #d9ae60;
}

.hybrid-difference-heading > p {
  grid-column: 3 / 4;
  max-width: 38ch;
  margin: 0 0 5px;
  color: #aaa3a9;
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.hybrid-difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hybrid-difference-card {
  overflow: hidden;
  border: 1px solid rgba(235, 214, 174, 0.13);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(17, 12, 25, 0.98), rgba(6, 6, 10, 0.99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transition:
    border-color 260ms ease,
    transform 260ms ease;
}

.hybrid-difference-card:hover {
  border-color: rgba(229, 188, 108, 0.28);
  transform: translateY(-4px);
}

.hybrid-difference-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.04;
  border-bottom: 1px solid rgba(132, 78, 214, 0.18);
}

.hybrid-difference-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(6, 5, 10, 0.5));
  content: "";
}

.hybrid-difference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hybrid-difference-card:hover img {
  transform: scale(1.025);
}

.hybrid-difference-copy {
  min-height: 250px;
  padding: 28px 28px 32px;
}

.hybrid-difference-copy > span {
  color: #d9ae60;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.hybrid-difference-copy h3 {
  margin: 16px 0 14px;
  color: #f1e9df;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(25px, 2.1vw, 31px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.hybrid-difference-copy p {
  margin: 0;
  color: #b8b0b5;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

.hybrid-capabilities {
  position: relative;
  padding: 120px 0 130px;
  border-top: 1px solid rgba(235, 214, 174, 0.08);
  background:
    radial-gradient(circle at 16% 8%, rgba(92, 50, 168, 0.15), transparent 32rem),
    radial-gradient(circle at 88% 80%, rgba(174, 112, 40, 0.07), transparent 29rem),
    #08070d;
}

.hybrid-capabilities-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  margin-bottom: 70px;
}

.hybrid-capabilities-heading > div {
  grid-column: span 7;
}

.hybrid-section-kicker {
  margin: 0 0 22px;
  color: #d9ae60;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hybrid-capabilities-heading h2 {
  max-width: 15ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hybrid-capabilities-heading h2 span {
  color: #d9ae60;
}

.hybrid-capabilities-heading > p {
  grid-column: span 5;
  max-width: 38ch;
  margin: 0 0 5px;
  color: #aaa3a9;
  font-size: clamp(17px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.hybrid-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.hybrid-capability-card {
  position: relative;
  grid-column: span 6;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  min-height: 550px;
  border: 1px solid rgba(235, 214, 174, 0.13);
  border-radius: 28px;
  background: #090710;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transition:
    border-color 260ms ease,
    transform 260ms ease;
}

.hybrid-capability-card-1,
.hybrid-capability-card-4 {
  grid-column: span 7;
}

.hybrid-capability-card-2,
.hybrid-capability-card-3 {
  grid-column: span 5;
}

.hybrid-capability-card:hover {
  border-color: rgba(229, 188, 108, 0.28);
  transform: translateY(-4px);
}

.hybrid-capability-card::after {
  display: none;
}

.hybrid-capability-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 560ms ease;
}

.hybrid-capability-card:hover img {
  transform: scale(1.025);
}

.hybrid-capability-card > div {
  position: relative;
  z-index: 2;
  min-height: 210px;
  padding: 34px 34px 36px;
  border-top: 1px solid rgba(132, 78, 214, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(104, 58, 185, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(15, 11, 22, 0.99), rgba(7, 7, 11, 0.995));
}

.hybrid-capability-card h3 {
  margin: 0 0 10px;
  color: #f1e9df;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(27px, 2.25vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hybrid-capability-card p {
  max-width: 560px;
  margin: 0;
  color: #c2bac0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.hybrid-capability-card .hybrid-capability-result {
  max-width: none;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(235, 214, 174, 0.16);
  color: #e4b960;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.hybrid-capabilities-value {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.hybrid-capabilities-value p {
  margin: 0;
  max-width: 900px;
  color: #aaa3a9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.hybrid-capabilities-value strong {
  color: #e4b960;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 520;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hybrid-capabilities-caveat {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  margin-top: 54px;
  padding: 40px 46px;
  border-top: 1px solid rgba(217, 174, 96, 0.34);
  border-bottom: 1px solid rgba(235, 214, 174, 0.14);
  background:
    radial-gradient(circle at 5% 50%, rgba(217, 174, 96, 0.08), transparent 21rem),
    rgba(255, 255, 255, 0.012);
}

.hybrid-capabilities-caveat span,
.hybrid-capabilities-caveat strong {
  display: block;
}

.hybrid-capabilities-caveat span {
  margin-bottom: 10px;
  color: #d9ae60;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hybrid-capabilities-caveat strong {
  color: #f3ece3;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 460;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.hybrid-capabilities-caveat p {
  max-width: 60ch;
  margin: 0;
  color: #b9b1b5;
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hybrid-club {
  position: relative;
  display: grid;
  min-height: clamp(720px, 56vw, 920px);
  place-items: start center;
  isolation: isolate;
  overflow: hidden;
  background: #06060a;
}

.hybrid-club-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
  padding-top: clamp(112px, 8vw, 150px);
  text-align: center;
}

.hybrid-club-copy::before {
  position: absolute;
  z-index: -1;
  inset: 20px -120px -70px;
  background: radial-gradient(ellipse at center, rgba(3, 3, 8, 0.82), rgba(3, 3, 8, 0.5) 45%, transparent 73%);
  content: "";
  pointer-events: none;
}

.hybrid-club-copy h2 {
  max-width: 18ch;
  margin: 0 auto;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 5vw, 74px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hybrid-club-copy h2 span {
  color: #d9ae60;
}

.hybrid-club-invitation {
  margin: clamp(88px, 7vw, 118px) 0 0;
  color: #f0d39b;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hybrid-club-description {
  position: relative;
  isolation: isolate;
  max-width: 730px;
  margin: 72px auto 0;
  color: #ddd5da;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.62;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  text-wrap: pretty;
}

.hybrid-club-description::before {
  position: absolute;
  z-index: -1;
  inset: -34px -100px;
  background: radial-gradient(ellipse at center, rgba(2, 2, 7, 0.76), rgba(2, 2, 7, 0.4) 52%, transparent 76%);
  content: "";
  pointer-events: none;
}

.hybrid-club-scene {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.hybrid-club-scene > picture {
  display: contents;
}

.hybrid-club-scene img,
.hybrid-club-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hybrid-club-scene img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
}

.hybrid-club-vignette {
  background:
    linear-gradient(180deg, rgba(3, 3, 7, 0.38), transparent 56%, rgba(3, 3, 7, 0.38)),
    radial-gradient(ellipse at 50% 24%, rgba(3, 3, 8, 0.4), transparent 54%),
    radial-gradient(circle at center, transparent 48%, rgba(3, 3, 7, 0.3) 100%);
  pointer-events: none;
}

.hybrid-process {
  position: relative;
  overflow: hidden;
  padding: 128px 0 138px;
  border-top: 1px solid rgba(235, 214, 174, 0.09);
  background:
    radial-gradient(circle at 10% 8%, rgba(89, 48, 160, 0.16), transparent 32rem),
    radial-gradient(circle at 92% 88%, rgba(178, 113, 42, 0.07), transparent 28rem),
    #08070d;
}

.hybrid-process-heading {
  margin-bottom: 78px;
}

.hybrid-process-heading h2 {
  max-width: 18ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

.hybrid-process-heading h2 span {
  color: #d9ae60;
}

.hybrid-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(235, 214, 174, 0.22);
  border-bottom: 1px solid rgba(235, 214, 174, 0.1);
}

.hybrid-process-track article {
  position: relative;
  min-height: 330px;
  padding: 38px 25px 34px;
}

.hybrid-process-track article + article {
  border-left: 1px solid rgba(235, 214, 174, 0.1);
}

.hybrid-process-track article::before {
  position: absolute;
  top: -5px;
  left: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dfaF58;
  box-shadow: 0 0 24px rgba(223, 175, 88, 0.64);
  content: "";
}

.hybrid-process-number {
  display: block;
  margin-bottom: 48px;
  color: #d9ae60;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.hybrid-process-track h3 {
  min-height: 3.25em;
  margin: 0 0 20px;
  color: #f1e9df;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(21px, 1.65vw, 26px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.hybrid-process-track p {
  margin: 0;
  color: #aaa3a9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.hybrid-testimonial {
  position: relative;
  overflow: hidden;
  padding: 145px 0 150px;
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background:
    radial-gradient(circle at 82% 38%, rgba(100, 51, 180, 0.2), transparent 34rem),
    #08070d;
}

.hybrid-testimonial-heading {
  margin-bottom: 70px;
}

.hybrid-testimonial-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(56px, 6vw, 82px);
  font-weight: 410;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-wrap: balance;
}

.hybrid-testimonial-heading h2 span {
  color: #d9ae60;
}

.hybrid-testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.hybrid-testimonial-media video {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 5;
  border: 1px solid rgba(235, 214, 174, 0.2);
  border-radius: 30px;
  background: #050509;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.hybrid-testimonial-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 5px 0;
  color: #aaa2a8;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hybrid-testimonial-caption p,
.hybrid-testimonial-caption time {
  margin: 0;
}

.hybrid-testimonial-quotes {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid rgba(217, 174, 96, 0.5);
}

.hybrid-testimonial-quotes blockquote {
  margin: 0;
  color: #f1e9df;
  font-size: clamp(25px, 2.35vw, 36px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
}

.hybrid-testimonial-quotes blockquote + blockquote {
  margin-top: 52px;
  color: #d9ae60;
}

.hybrid-testimonial-quotes p {
  max-width: 35ch;
  margin: 58px 0 0;
  color: #9f989e;
  font-size: 16px;
  line-height: 1.6;
}

.hybrid-library {
  position: relative;
  overflow: hidden;
  padding: 126px 0 136px;
  border-top: 1px solid rgba(235, 214, 174, 0.08);
  background:
    radial-gradient(circle at 92% 22%, rgba(91, 47, 164, 0.2), transparent 32rem),
    radial-gradient(circle at 12% 84%, rgba(179, 112, 42, 0.08), transparent 26rem),
    linear-gradient(180deg, #0a0910 0%, #07060b 100%);
}

.hybrid-library-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(64px, 8vw, 118px);
  align-items: center;
}

.hybrid-library-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 420;
  letter-spacing: -0.05em;
  line-height: 1.01;
  text-wrap: balance;
}

.hybrid-library-copy h2 span {
  color: #d9ae60;
}

.hybrid-library-lead {
  max-width: 41ch;
  margin: 58px 0 0;
  color: #f0e8df;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 470;
  letter-spacing: -0.025em;
  line-height: 1.34;
  text-wrap: pretty;
}

.hybrid-library-text {
  max-width: 55ch;
  margin: 28px 0 0;
  color: #aaa3a9;
  font-size: 18px;
  line-height: 1.67;
  text-wrap: pretty;
}

.hybrid-library-catalog {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  min-height: 520px;
  padding: 46px 0;
  border-top: 1px solid rgba(235, 214, 174, 0.22);
  border-bottom: 1px solid rgba(235, 214, 174, 0.22);
}

.hybrid-library-catalog-label {
  display: flex;
  padding-right: 28px;
  border-right: 1px solid rgba(217, 174, 96, 0.34);
  justify-content: space-between;
  flex-direction: column;
}

.hybrid-library-catalog-label small {
  color: #d9ae60;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hybrid-library-catalog-label strong {
  color: #f0e8df;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hybrid-library-catalog-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.hybrid-library-catalog-list > div {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(235, 214, 174, 0.14);
}

.hybrid-library-catalog-list > div:first-child {
  border-top: 0;
}

.hybrid-library-catalog-list > div::before {
  position: absolute;
  top: 50%;
  left: -35px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d9ae60;
  box-shadow: 0 0 16px rgba(217, 174, 96, 0.75);
  content: "";
  transform: translateY(-50%);
}

.hybrid-library-catalog-list span {
  color: #d9ae60;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hybrid-library-catalog-list p {
  max-width: 25ch;
  margin: 0;
  color: #f0e8df;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 460;
  letter-spacing: -0.035em;
  line-height: 1.22;
  text-wrap: balance;
}

.hybrid-about {
  position: relative;
  overflow: hidden;
  padding: 128px 0 138px;
  border-top: 1px solid rgba(235, 214, 174, 0.09);
  background:
    radial-gradient(circle at 12% 28%, rgba(78, 121, 163, 0.13), transparent 31rem),
    radial-gradient(circle at 90% 82%, rgba(177, 109, 39, 0.08), transparent 27rem),
    #08070d;
}

.hybrid-about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(68px, 8vw, 122px);
  align-items: center;
}

.hybrid-about-portrait {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(235, 214, 174, 0.2);
  border-radius: 250px 250px 30px 30px;
  background: #0b0a11;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

.hybrid-about-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 6, 10, 0.92) 100%);
  content: "";
  pointer-events: none;
}

.hybrid-about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center top;
}

.hybrid-about-portrait > span {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 1;
  color: #d9ae60;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hybrid-about-copy h2 {
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(56px, 5.5vw, 80px);
  font-weight: 410;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hybrid-about-role {
  max-width: 40ch;
  margin: 27px 0 0;
  color: #d9ae60;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.hybrid-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid rgba(235, 214, 174, 0.2);
  border-bottom: 1px solid rgba(235, 214, 174, 0.14);
}

.hybrid-about-stats > div {
  min-height: 155px;
  padding: 26px 22px 24px 0;
}

.hybrid-about-stats > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(235, 214, 174, 0.14);
}

.hybrid-about-stats strong,
.hybrid-about-stats span {
  display: block;
}

.hybrid-about-stats strong {
  color: #f2e9df;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hybrid-about-stats span {
  max-width: 18ch;
  margin-top: 14px;
  color: #999298;
  font-size: 14px;
  line-height: 1.45;
}

.hybrid-about-text {
  max-width: 61ch;
  margin: 44px 0 0;
  color: #b8b0b4;
  font-size: 18px;
  line-height: 1.68;
  text-wrap: pretty;
}

.hybrid-about-manifesto {
  margin: 42px 0 0;
  color: #f2e9df;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 440;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.hybrid-about-manifesto span {
  color: #d9ae60;
}

.hybrid-offer {
  position: relative;
  overflow: hidden;
  padding: 124px 0 136px;
  border-top: 1px solid rgba(235, 214, 174, 0.09);
  background:
    radial-gradient(circle at 50% 4%, rgba(91, 47, 164, 0.17), transparent 34rem),
    #07060b;
}

.hybrid-offer-heading {
  display: flex;
  margin-bottom: 70px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.hybrid-offer-heading .hybrid-section-kicker {
  order: 2;
  margin-bottom: 10px;
}

.hybrid-offer-heading h2 {
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(58px, 6vw, 82px);
  font-weight: 410;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.hybrid-offer-shell {
  overflow: hidden;
  border: 1px solid rgba(235, 214, 174, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(21, 17, 31, 0.96), rgba(9, 8, 13, 0.99));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
}

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

.hybrid-offer-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  min-height: 245px;
  padding: 34px 30px 36px;
  border-top: 1px solid rgba(235, 214, 174, 0.12);
  border-right: 1px solid rgba(235, 214, 174, 0.12);
}

.hybrid-offer-item:nth-child(4),
.hybrid-offer-item:nth-child(7) {
  border-right: 0;
}

.hybrid-offer-marker {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-direction: column;
}

.hybrid-offer-marker i {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 174, 96, 0.34);
  border-radius: 50%;
  color: #d9ae60;
  background: rgba(217, 174, 96, 0.045);
  font-style: normal;
  font-weight: 600;
  place-items: center;
}

.hybrid-offer-marker svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hybrid-offer-marker small {
  color: #d9ae60;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hybrid-offer-item-featured .hybrid-offer-marker i {
  width: 52px;
  height: 52px;
  border-color: rgba(217, 174, 96, 0.52);
  box-shadow: 0 0 34px rgba(108, 57, 192, 0.2);
}

.hybrid-offer-item-featured .hybrid-offer-marker svg {
  width: 23px;
  height: 23px;
}

.hybrid-offer-item h3 {
  margin: 0 0 15px;
  color: #f0e8df;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-wrap: balance;
}

.hybrid-offer-item p {
  margin: 0;
  color: #a9a2a8;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
  text-wrap: pretty;
}

.hybrid-offer-item-featured {
  grid-column: 1 / -1;
  grid-template-columns: 70px minmax(0, 1fr);
  min-height: 280px;
  padding: 52px 54px;
  border-top: 0;
  border-right: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(108, 57, 192, 0.24), transparent 25rem),
    rgba(255, 255, 255, 0.012);
}

.hybrid-offer-item-featured h3 {
  max-width: 26ch;
  margin-bottom: 20px;
  color: #f4ede3;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hybrid-offer-item-featured p {
  max-width: 62ch;
  color: #c1b8bb;
  font-size: clamp(17px, 1.2vw, 19px);
}

.hybrid-offer-item-bonus {
  grid-column: span 2;
  border-right: 0;
  background: rgba(217, 174, 96, 0.035);
}

.hybrid-offer-item-bonus h3 {
  color: #d9ae60;
}

.hybrid-offer-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 40px 52px;
  border-top: 1px solid rgba(217, 174, 96, 0.3);
  background: rgba(5, 5, 9, 0.48);
}

.hybrid-offer-footer > div > span {
  display: block;
  margin-bottom: 9px;
  color: #d9ae60;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hybrid-offer-footer p {
  margin: 0;
  color: #f0e8df;
  font-size: 20px;
  line-height: 1.42;
}

.hybrid-offer-button {
  margin: 0;
  white-space: nowrap;
}

.hybrid-consultation {
  position: relative;
  overflow: hidden;
  padding: 150px 0 165px;
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background:
    radial-gradient(circle at 16% 10%, rgba(94, 48, 164, 0.16), transparent 30rem),
    radial-gradient(circle at 80% 105%, rgba(217, 174, 96, 0.07), transparent 34rem),
    #08070d;
}

.hybrid-consultation::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(217, 174, 96, 0.22) 25%,
    rgba(217, 174, 96, 0.08) 75%,
    transparent
  );
  content: "";
}

.hybrid-consultation::after {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(217, 174, 96, 0.75);
  border-radius: 50%;
  background: #08070d;
  content: "";
  transform: translate(-50%, -50%);
}

.hybrid-consultation-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.74fr);
  gap: clamp(90px, 12vw, 190px);
  align-items: center;
}

.hybrid-consultation-heading .hybrid-section-kicker {
  margin-bottom: 28px;
}

.hybrid-consultation-heading h2 {
  max-width: 10ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(60px, 5.8vw, 90px);
  font-weight: 410;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hybrid-consultation-heading h2 span {
  color: #d9ae60;
}

.hybrid-consultation-copy {
  position: relative;
  padding: 12px 0 8px;
}

.hybrid-consultation-copy::before {
  display: none;
}

.hybrid-consultation-copy p {
  max-width: 56ch;
  margin: 0;
  color: #c1b9bd;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
  text-wrap: pretty;
}

.hybrid-consultation-copy strong {
  display: block;
  margin-top: 30px;
  color: #e1b762;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.hybrid-consultation-button {
  min-width: 245px;
  margin-top: 38px;
}

.hybrid-faq {
  position: relative;
  padding: 112px 0 128px;
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 47, 164, 0.15), transparent 32rem),
    #07060b;
}

.hybrid-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(72px, 10vw, 160px);
  align-items: start;
}

.hybrid-faq-heading {
  position: sticky;
  top: 120px;
}

.hybrid-faq-heading .hybrid-section-kicker {
  margin-bottom: 28px;
}

.hybrid-faq-heading h2 {
  max-width: 9.5ch;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 410;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.hybrid-faq-heading h2 span {
  color: #d9ae60;
}

.hybrid-faq-list {
  border-top: 1px solid rgba(217, 174, 96, 0.34);
}

.hybrid-faq-list details {
  border-bottom: 1px solid rgba(235, 214, 174, 0.14);
}

.hybrid-faq-list summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: center;
  padding: 31px 0;
  cursor: pointer;
  list-style: none;
}

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

.hybrid-faq-list summary > span {
  color: #d9ae60;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hybrid-faq-list summary strong {
  color: #eee6de;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 470;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.hybrid-faq-list summary i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(217, 174, 96, 0.34);
  border-radius: 50%;
}

.hybrid-faq-list summary i::before,
.hybrid-faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #d9ae60;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.hybrid-faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hybrid-faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.hybrid-faq-list details[open] summary strong {
  color: #d9ae60;
}

.hybrid-faq-list details > p {
  max-width: 65ch;
  margin: -5px 56px 0;
  padding: 0 34px 34px 0;
  color: #aaa3a9;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hybrid-finale {
  position: relative;
  display: flex;
  min-height: 850px;
  overflow: hidden;
  align-items: center;
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background: #06060a;
}

.hybrid-finale-image,
.hybrid-finale-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hybrid-finale-image {
  object-fit: cover;
  object-position: center;
}

.hybrid-finale-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.2) 0%, rgba(5, 5, 10, 0.02) 50%, rgba(5, 5, 10, 0.15) 100%),
    linear-gradient(180deg, rgba(5, 5, 10, 0.08), rgba(5, 5, 10, 0.3));
}

.hybrid-finale-copy {
  position: relative;
  z-index: 1;
  padding-right: 0;
}

.hybrid-finale-copy .hybrid-section-kicker {
  margin-bottom: 28px;
}

.hybrid-finale-copy h2 {
  width: min(48%, 680px);
  max-width: none;
  margin: 0;
  color: #f4ede3;
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: clamp(54px, 4vw, 64px);
  font-weight: 410;
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.hybrid-finale-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hybrid-finale-copy h2 .hybrid-finale-title-accent {
  color: #d9ae60;
}

.hybrid-finale-copy > p:not(.hybrid-section-kicker) {
  max-width: min(48%, 55ch);
  margin: 32px 0 0;
  color: #c4bcc0;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.62;
  text-wrap: pretty;
}

.hybrid-finale-button {
  min-width: 225px;
  margin-top: 38px;
}

.hybrid-channel {
  padding: 82px 0;
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background:
    radial-gradient(circle at 85% 50%, rgba(91, 47, 164, 0.17), transparent 26rem),
    #0b0911;
}

.hybrid-channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.hybrid-channel-layout > p {
  max-width: 920px;
  margin: 0;
  color: #eee7df;
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 1.24;
  text-wrap: balance;
}

.hybrid-channel-layout > a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(217, 174, 96, 0.48);
  color: #d9ae60;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.hybrid-telegram-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(217, 174, 96, 0.45);
  border-radius: 50%;
  background: rgba(217, 174, 96, 0.055);
  color: #e5ba67;
  font-size: 15px;
  line-height: 1;
  place-items: center;
  transform: rotate(-16deg);
}

.hybrid-channel-layout > a:hover {
  border-color: #f0cd7f;
  color: #f0cd7f;
}

.hybrid-channel-layout > a:focus-visible,
.hybrid-footer a:focus-visible {
  outline: 2px solid #f3d38c;
  outline-offset: 5px;
}

.hybrid-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  align-items: start;
  padding: 54px max(40px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(235, 214, 174, 0.1);
  background: #050509;
}

.hybrid-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hybrid-footer-brand strong {
  color: #eee7df;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hybrid-footer-brand span,
.hybrid-footer > p {
  color: #77717b;
  font-size: 12px;
}

.hybrid-footer nav {
  display: flex;
  gap: 28px;
  color: #aaa2aa;
  font-size: 12px;
}

.hybrid-footer nav a:hover {
  color: #eee7df;
}

.hybrid-footer > p {
  grid-column: 1 / -1;
  margin: 0;
}

/* Calm editorial motion for the hybrid page. */
@keyframes hybrid-topbar-arrive {
  from {
    opacity: 0;
    transform: translate3d(-50%, -12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hybrid-hero-settle {
  from {
    opacity: 0.72;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hybrid-scene-settle {
  from { transform: scale(1.025); }
  to { transform: scale(1); }
}

.hybrid-motion-ready .hybrid-topbar {
  animation: hybrid-topbar-arrive 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hybrid-motion-ready .hybrid-hero-image {
  animation: hybrid-hero-settle 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: 58% 42%;
}

.hybrid-motion-ready [data-hybrid-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hybrid-motion-ready [data-hybrid-reveal="fade"] {
  transform: none;
}

.hybrid-motion-ready [data-hybrid-reveal="media"],
.hybrid-motion-ready [data-hybrid-reveal="portrait"] {
  clip-path: inset(0 0 12% 0 round 24px);
  transform: translate3d(0, 30px, 0) scale(0.992);
}

.hybrid-motion-ready [data-hybrid-reveal="scene"] {
  clip-path: inset(7% 0 0 0);
  transform: translate3d(0, 18px, 0) scale(1.006);
}

.hybrid-motion-ready [data-hybrid-reveal="finale"] {
  transform: none;
}

.hybrid-motion-ready [data-hybrid-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  transform: none;
  will-change: auto;
}

.hybrid-motion-ready [data-hybrid-delay="1"] { transition-delay: 90ms; }
.hybrid-motion-ready [data-hybrid-delay="2"] { transition-delay: 180ms; }
.hybrid-motion-ready [data-hybrid-delay="3"] { transition-delay: 270ms; }
.hybrid-motion-ready [data-hybrid-delay="4"] { transition-delay: 360ms; }

.hybrid-motion-ready .hybrid-club-scene.is-visible img,
.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-image {
  animation: hybrid-scene-settle 1900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hybrid-motion-ready .hybrid-finale-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal {
  opacity: 1;
  transform: none;
}

.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal-1 { transition-delay: 120ms; }
.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal-2 { transition-delay: 230ms; }
.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal-3 { transition-delay: 330ms; }
.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal-4 { transition-delay: 430ms; }
.hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal-5 { transition-delay: 540ms; }

@media (max-width: 1050px) {
  .hybrid-topbar {
    gap: 20px;
  }

  .hybrid-nav {
    gap: 16px;
  }

  .hybrid-nav a {
    font-size: 12px;
  }

  .hybrid-capabilities-heading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .hybrid-capabilities-heading > div,
  .hybrid-capabilities-heading > p {
    grid-column: 1 / -1;
  }

  .hybrid-capabilities-heading > p {
    max-width: 52ch;
  }

  .hybrid-capabilities-value p {
    max-width: 900px;
  }

  .hybrid-capability-card,
  .hybrid-capability-card-1,
  .hybrid-capability-card-2,
  .hybrid-capability-card-3,
  .hybrid-capability-card-4 {
    grid-column: span 6;
    min-height: 520px;
  }

  .hybrid-capability-card img {
    min-height: 300px;
  }

  .hybrid-process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .hybrid-process-track article {
    min-height: 300px;
    border-bottom: 1px solid rgba(235, 214, 174, 0.1);
  }

  .hybrid-process-track article:nth-child(odd) {
    border-left: 0;
  }

  .hybrid-process-track article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .hybrid-process-track h3 {
    min-height: 0;
  }

  .hybrid-testimonial-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 44px;
  }

  .hybrid-library-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 54px;
  }

  .hybrid-library-catalog {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 28px;
    min-height: 500px;
  }

  .hybrid-about-layout {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    gap: 54px;
  }

  .hybrid-about-portrait,
  .hybrid-about-portrait img {
    min-height: 610px;
  }

  .hybrid-about-stats > div {
    min-height: 145px;
    padding-right: 14px;
  }

  .hybrid-about-stats > div + div {
    padding-left: 16px;
  }

  .hybrid-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hybrid-offer-item {
    border-right: 0;
  }

  .hybrid-offer-item:nth-child(even) {
    border-right: 1px solid rgba(235, 214, 174, 0.12);
  }

  .hybrid-offer-item-featured {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .hybrid-offer-item-bonus {
    grid-column: span 1;
  }

  .hybrid-offer-footer {
    padding: 36px 40px;
  }
}

@media (max-width: 940px) {
  .hybrid-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .hybrid-nav {
    display: none;
  }

  .hybrid-mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }

  .hybrid-mobile-nav > button {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(235, 214, 174, 0.16);
    border-radius: 12px;
    color: #c7bec3;
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    font-weight: 550;
    cursor: pointer;
  }

  .hybrid-mobile-nav > button::after {
    width: 6px;
    height: 6px;
    border-right: 1px solid #d9ae60;
    border-bottom: 1px solid #d9ae60;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .hybrid-mobile-nav[data-open="true"] > button::after {
    transform: translateY(2px) rotate(225deg);
  }

  .hybrid-mobile-nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(260px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid rgba(235, 214, 174, 0.18);
    border-radius: 18px;
    background: rgba(7, 6, 12, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(22px);
  }

  .hybrid-mobile-nav nav[hidden] {
    display: none;
  }

  .hybrid-mobile-nav nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: #d5ccd1;
    font-size: 14px;
    line-height: 1.2;
  }

  .hybrid-mobile-nav nav a:hover {
    color: #f0cd7f;
    background: rgba(217, 174, 96, 0.08);
  }
}

@media (max-width: 760px) {
  .hybrid-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: calc(100vw - 24px);
  }

  .hybrid-nav {
    display: none;
  }

  .hybrid-hero {
    min-height: 900px;
    place-items: start center;
  }

  .hybrid-hero-image {
    object-position: center bottom;
  }

  .hybrid-hero-copy {
    width: calc(100vw - 24px);
    margin-top: 108px;
    padding: 38px 22px 40px;
  }

  .hybrid-hero-copy h1 {
    max-width: none;
    font-size: clamp(38px, 8vw, 54px);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .hybrid-lead {
    max-width: 36ch;
  }

  .hybrid-difference {
    padding: 100px 0 110px;
  }

  .hybrid-section-wrap {
    width: calc(100vw - 28px);
  }

  .hybrid-difference-heading,
  .hybrid-difference-grid {
    grid-template-columns: 1fr;
  }

  .hybrid-difference-heading {
    gap: 30px;
    margin-bottom: 48px;
  }

  .hybrid-difference-heading h2 {
    grid-column: auto;
    max-width: 17ch;
    font-size: clamp(40px, 10vw, 58px);
  }

  .hybrid-difference-heading > p {
    grid-column: auto;
    max-width: 44ch;
  }

  .hybrid-difference-grid {
    gap: 18px;
  }

  .hybrid-difference-copy {
    min-height: 0;
  }

  .hybrid-capabilities {
    padding: 100px 0 110px;
  }

  .hybrid-capabilities-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .hybrid-capabilities-heading > div,
  .hybrid-capabilities-heading > p {
    grid-column: auto;
  }

  .hybrid-capabilities-heading h2 {
    max-width: 17ch;
    font-size: clamp(40px, 10vw, 58px);
  }

  .hybrid-capabilities-grid {
    display: block;
  }

  .hybrid-capability-card,
  .hybrid-capability-card-1,
  .hybrid-capability-card-2,
  .hybrid-capability-card-3,
  .hybrid-capability-card-4 {
    grid-template-rows: 300px auto;
    min-height: 0;
    margin-bottom: 18px;
  }

  .hybrid-capability-card:last-child {
    margin-bottom: 0;
  }

  .hybrid-capability-card img {
    min-height: 0;
  }

  .hybrid-capability-card > div {
    min-height: 0;
  }

  .hybrid-capabilities-value {
    display: block;
    margin-top: 38px;
  }

  .hybrid-capabilities-value p {
    max-width: none;
  }

  .hybrid-capabilities-caveat {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 44px;
    padding: 34px 30px;
  }

  .hybrid-capabilities-caveat p {
    max-width: 56ch;
  }

  .hybrid-club {
    min-height: 720px;
  }

  .hybrid-club-copy {
    width: calc(100vw - 28px);
    padding-top: 88px;
  }

  .hybrid-club-copy h2 {
    font-size: clamp(40px, 10vw, 58px);
  }

  .hybrid-club-invitation {
    margin-top: 72px;
  }

  .hybrid-club-copy::before {
    inset: 30px -40px -60px;
  }

  .hybrid-process {
    padding: 100px 0 110px;
  }

  .hybrid-process-heading {
    margin-bottom: 52px;
  }

  .hybrid-process-heading h2 {
    max-width: 17ch;
    font-size: clamp(40px, 10vw, 58px);
  }

  .hybrid-process-track {
    display: block;
  }

  .hybrid-process-track article,
  .hybrid-process-track article:last-child {
    min-height: 0;
    padding: 34px 10px 38px;
    border-left: 0;
    border-bottom: 1px solid rgba(235, 214, 174, 0.1);
  }

  .hybrid-process-track article::before {
    left: 10px;
  }

  .hybrid-process-number {
    margin-bottom: 28px;
  }

  .hybrid-process-track h3 {
    max-width: 20ch;
    font-size: 27px;
  }

  .hybrid-process-track p {
    max-width: 48ch;
    font-size: 16px;
  }

  .hybrid-testimonial,
  .hybrid-library,
  .hybrid-about,
  .hybrid-offer,
  .hybrid-consultation {
    padding: 100px 0 110px;
  }

  .hybrid-testimonial-heading {
    margin-bottom: 52px;
  }

  .hybrid-testimonial-heading h2 {
    font-size: clamp(48px, 12vw, 76px);
  }

  .hybrid-testimonial-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hybrid-testimonial-quotes {
    padding: 34px 0 0;
    border-top: 1px solid rgba(217, 174, 96, 0.5);
    border-left: 0;
  }

  .hybrid-testimonial-quotes p {
    margin-top: 42px;
  }

  .hybrid-library-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hybrid-library-copy h2 {
    max-width: 14ch;
    font-size: clamp(40px, 10vw, 58px);
  }

  .hybrid-library-lead,
  .hybrid-library-text {
    max-width: 52ch;
  }

  .hybrid-library-catalog {
    width: min(580px, 100%);
    justify-self: center;
  }

  .hybrid-about-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hybrid-about-portrait {
    width: min(520px, 100%);
    justify-self: center;
  }

  .hybrid-about-copy h2 {
    font-size: clamp(50px, 12vw, 76px);
  }

  .hybrid-about-text {
    max-width: 58ch;
  }

  .hybrid-offer-heading {
    display: block;
    margin-bottom: 52px;
  }

  .hybrid-offer-heading .hybrid-section-kicker {
    margin-bottom: 18px;
  }

  .hybrid-offer-heading h2 {
    font-size: clamp(52px, 13vw, 78px);
  }

  .hybrid-offer-grid {
    grid-template-columns: 1fr;
  }

  .hybrid-offer-item,
  .hybrid-offer-item:nth-child(even),
  .hybrid-offer-item-featured,
  .hybrid-offer-item-bonus {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .hybrid-offer-item {
    min-height: 0;
  }

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

  .hybrid-offer-button {
    width: fit-content;
  }

  .hybrid-consultation::before,
  .hybrid-consultation::after {
    display: none;
  }

  .hybrid-consultation-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hybrid-consultation-heading h2 {
    max-width: 12ch;
    font-size: clamp(52px, 13vw, 78px);
  }

  .hybrid-consultation-copy {
    max-width: 620px;
    padding-top: 30px;
    border-top: 1px solid rgba(217, 174, 96, 0.24);
  }

  .hybrid-consultation-copy::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(217, 174, 96, 0.7);
    border-radius: 50%;
    background: #08070d;
    content: "";
    transform: translate(-50%, -50%);
  }

  .hybrid-faq {
    padding: 100px 0 110px;
  }

  .hybrid-faq-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hybrid-faq-heading {
    position: static;
  }

  .hybrid-faq-heading h2 {
    max-width: 12ch;
    font-size: clamp(48px, 12vw, 72px);
  }

  .hybrid-finale {
    min-height: 760px;
  }

  .hybrid-finale-image {
    object-position: 58% center;
  }

  .hybrid-finale-copy {
    padding-right: 0;
  }

  .hybrid-finale-copy h2 {
    width: 58%;
    font-size: clamp(44px, 6.5vw, 50px);
  }

  .hybrid-finale-copy > p:not(.hybrid-section-kicker) {
    max-width: 58%;
  }

  .hybrid-channel-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hybrid-channel-layout > a {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .hybrid-topbar {
    top: 8px;
    min-height: 58px;
    padding: 6px 7px 6px 10px;
    border-radius: 20px;
  }

  .hybrid-brand {
    gap: 9px;
    font-size: 10px;
  }

  .hybrid-brand > span:last-child {
    display: none;
  }

  .hybrid-brand small {
    font-size: 8px;
  }

  .hybrid-monogram {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .hybrid-nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hybrid-hero {
    min-height: 920px;
  }

  .hybrid-hero-copy {
    margin-top: 82px;
    padding: 34px 18px 36px;
  }

  .hybrid-eyebrow {
    margin-bottom: 22px;
    padding: 7px 11px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .hybrid-hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .hybrid-promise {
    max-width: 34ch;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hybrid-lead {
    margin: 22px auto 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .hybrid-button {
    min-height: 54px;
    padding: 0 18px;
    font-size: 14px;
  }

  .hybrid-ticker {
    bottom: 0;
    width: 100%;
    padding: 12px 0;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .hybrid-ticker-item {
    gap: 18px;
    margin-right: 18px;
    font-size: 10px;
    letter-spacing: 0.035em;
  }

  .hybrid-ticker-item i {
    font-size: 13px;
  }

  .hybrid-difference {
    padding: 82px 0 88px;
  }

  .hybrid-difference-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .hybrid-difference-heading h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .hybrid-difference-heading > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hybrid-difference-copy {
    padding: 24px 24px 28px;
  }

  .hybrid-difference-copy h3 {
    font-size: 26px;
  }

  .hybrid-capabilities {
    padding: 82px 0 88px;
  }

  .hybrid-section-kicker {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .hybrid-capabilities-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .hybrid-capabilities-heading h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .hybrid-capabilities-heading > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hybrid-capability-card,
  .hybrid-capability-card-1,
  .hybrid-capability-card-2,
  .hybrid-capability-card-3,
  .hybrid-capability-card-4 {
    grid-template-rows: 220px auto;
    min-height: 0;
    border-radius: 22px;
  }

  .hybrid-capability-card img {
    min-height: 0;
  }

  .hybrid-capability-card > div {
    padding: 26px 24px 28px;
  }

  .hybrid-capability-card h3 {
    font-size: 27px;
  }

  .hybrid-capability-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hybrid-capability-card .hybrid-capability-result {
    margin-top: 17px;
    padding-top: 14px;
    font-size: 14px;
  }

  .hybrid-club {
    min-height: 780px;
  }

  .hybrid-club-copy {
    padding-top: 72px;
  }

  .hybrid-club-copy h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .hybrid-club-invitation {
    margin-top: 54px;
    font-size: 24px;
  }

  .hybrid-club-description {
    margin-top: 44px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hybrid-process {
    padding: 82px 0 88px;
  }

  .hybrid-process-heading {
    margin-bottom: 40px;
  }

  .hybrid-process-heading h2 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  .hybrid-testimonial,
  .hybrid-library,
  .hybrid-about,
  .hybrid-offer,
  .hybrid-consultation {
    padding: 82px 0 88px;
  }

  .hybrid-testimonial-heading {
    margin-bottom: 40px;
  }

  .hybrid-testimonial-heading h2 {
    max-width: 10ch;
    font-size: clamp(42px, 14vw, 60px);
  }

  .hybrid-testimonial-layout {
    gap: 46px;
  }

  .hybrid-testimonial-media video {
    border-radius: 20px;
  }

  .hybrid-testimonial-caption {
    gap: 12px;
    padding-top: 14px;
  }

  .hybrid-testimonial-caption p {
    max-width: 25ch;
  }

  .hybrid-testimonial-quotes {
    padding-top: 28px;
  }

  .hybrid-testimonial-quotes blockquote {
    max-width: 18ch;
    font-size: 27px;
  }

  .hybrid-testimonial-quotes blockquote + blockquote {
    margin-top: 36px;
  }

  .hybrid-testimonial-quotes p {
    margin-top: 38px;
  }

  .hybrid-library-layout {
    gap: 54px;
  }

  .hybrid-library-copy h2 {
    max-width: 14ch;
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .hybrid-library-lead {
    margin-top: 38px;
    font-size: 21px;
  }

  .hybrid-library-text {
    margin-top: 22px;
    font-size: 16px;
  }

  .hybrid-library-catalog {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  .hybrid-library-catalog-label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: baseline;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 174, 96, 0.34);
  }

  .hybrid-library-catalog-label small,
  .hybrid-library-catalog-label strong {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hybrid-library-catalog-label strong {
    font-size: 15px;
  }

  .hybrid-library-catalog-list > div {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 126px;
  }

  .hybrid-library-catalog-list > div::before {
    display: none;
  }

  .hybrid-library-catalog-list p {
    max-width: 25ch;
    font-size: 20px;
  }

  .hybrid-about-layout {
    gap: 50px;
  }

  .hybrid-about-portrait,
  .hybrid-about-portrait img {
    min-height: 520px;
  }

  .hybrid-about-portrait {
    border-radius: 170px 170px 24px 24px;
  }

  .hybrid-about-portrait > span {
    right: 24px;
    bottom: 24px;
    left: 24px;
    font-size: 9px;
  }

  .hybrid-about-copy h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .hybrid-about-role {
    margin-top: 20px;
    font-size: 16px;
  }

  .hybrid-about-stats {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hybrid-about-stats > div,
  .hybrid-about-stats > div + div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(235, 214, 174, 0.12);
  }

  .hybrid-about-stats > div:first-child {
    border-top: 0;
  }

  .hybrid-about-stats span {
    margin-top: 0;
  }

  .hybrid-about-text {
    margin-top: 36px;
    font-size: 16px;
  }

  .hybrid-about-manifesto {
    margin-top: 34px;
    font-size: 29px;
  }

  .hybrid-offer-heading {
    margin-bottom: 40px;
  }

  .hybrid-offer-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .hybrid-offer-shell {
    border-radius: 22px;
  }

  .hybrid-offer-item,
  .hybrid-offer-item-featured {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 28px 22px 30px;
  }

  .hybrid-offer-marker i,
  .hybrid-offer-item-featured .hybrid-offer-marker i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .hybrid-offer-item-featured {
    min-height: 0;
  }

  .hybrid-offer-item-featured h3 {
    font-size: 29px;
  }

  .hybrid-offer-item-featured p {
    font-size: 16px;
  }

  .hybrid-offer-item p {
    font-size: 16px;
  }

  .hybrid-offer-item h3 {
    font-size: 23px;
  }

  .hybrid-offer-footer {
    gap: 28px;
    padding: 30px 22px;
  }

  .hybrid-offer-footer p {
    font-size: 17px;
  }

  .hybrid-offer-button {
    width: 100%;
    white-space: normal;
  }

  .hybrid-consultation-layout {
    gap: 44px;
  }

  .hybrid-consultation-heading .hybrid-section-kicker {
    margin-bottom: 22px;
  }

  .hybrid-consultation-heading h2 {
    font-size: clamp(46px, 13.5vw, 62px);
  }

  .hybrid-consultation-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hybrid-consultation-copy strong {
    margin-top: 26px;
    font-size: 15px;
  }

  .hybrid-consultation-button {
    width: 100%;
    margin-top: 32px;
  }

  .hybrid-faq {
    padding: 82px 0 90px;
  }

  .hybrid-faq-layout {
    gap: 48px;
  }

  .hybrid-faq-heading .hybrid-section-kicker {
    margin-bottom: 22px;
  }

  .hybrid-faq-heading h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .hybrid-faq-list summary {
    grid-template-columns: 27px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 25px 0;
  }

  .hybrid-faq-list summary strong {
    font-size: 20px;
  }

  .hybrid-faq-list summary i {
    width: 28px;
    height: 28px;
  }

  .hybrid-faq-list details > p {
    margin: -2px 0 0 39px;
    padding: 0 6px 28px 0;
    font-size: 16px;
    line-height: 1.62;
  }

  .hybrid-finale {
    min-height: 720px;
    align-items: end;
  }

  .hybrid-finale-image {
    object-position: 68% center;
  }

  .hybrid-finale-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 10, 0.03) 18%, rgba(5, 5, 10, 0.92) 76%),
      linear-gradient(90deg, rgba(5, 5, 10, 0.16), transparent);
  }

  .hybrid-finale-copy {
    padding: 80px 0 58px;
  }

  .hybrid-finale-copy .hybrid-section-kicker {
    margin-bottom: 20px;
  }

  .hybrid-finale-copy h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .hybrid-finale-copy > p:not(.hybrid-section-kicker) {
    max-width: none;
    margin-top: 26px;
    font-size: 16px;
  }

  .hybrid-finale-button {
    width: 100%;
    margin-top: 30px;
  }

  .hybrid-channel {
    padding: 64px 0 70px;
  }

  .hybrid-channel-layout {
    gap: 28px;
  }

  .hybrid-channel-layout > p {
    font-size: 28px;
  }

  .hybrid-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px;
  }

  .hybrid-footer nav {
    flex-direction: column;
    gap: 14px;
  }

  .hybrid-footer > p {
    grid-column: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hybrid-motion-ready .hybrid-topbar,
  .hybrid-motion-ready .hybrid-hero-image,
  .hybrid-motion-ready .hybrid-club-scene.is-visible img,
  .hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-image {
    animation: none;
  }

  .hybrid-motion-ready [data-hybrid-reveal],
  .hybrid-motion-ready [data-hybrid-reveal].is-visible,
  .hybrid-motion-ready .hybrid-finale-reveal,
  .hybrid-motion-ready .hybrid-finale.is-visible .hybrid-finale-reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }

  .hybrid-nav-cta,
  .hybrid-button {
    transition: none;
  }

  .hybrid-ticker {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
    -webkit-mask-image: none;
  }

  .hybrid-ticker::-webkit-scrollbar {
    display: none;
  }

  .hybrid-ticker-track {
    animation: none;
    will-change: auto;
  }

  .hybrid-ticker-group-copy {
    display: none;
  }

  .hybrid-difference-card,
  .hybrid-difference-card:hover,
  .hybrid-difference-image img,
  .hybrid-difference-card:hover img {
    transition: none;
    transform: none;
  }
}
