@font-face {
  font-family: "Neosande";
  src: url("../fonts/Neosande-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neosande";
  src: url("../fonts/Neosande-SemiBold.otf") format("opentype");
  font-weight: 700 800;
  font-display: swap;
}

:root {
  --bg: #061312;
  --bg-2: #0b1d1a;
  --paper: #f5f1e6;
  --ink: #071312;
  --muted: rgba(245, 241, 230, 0.68);
  --line: rgba(245, 241, 230, 0.16);
  --line-strong: rgba(245, 241, 230, 0.3);
  --green: #78bfa3;
  --blue: #5d95a6;
  --sand: #d8b978;
  --coral: #d88762;
  --max: 1240px;
  --radius: 8px;
  --scene-a: 120, 191, 163;
  --scene-b: 93, 149, 166;
  --scene-c: 216, 185, 120;
  --scroll: 0;
  --footer-reveal-height: 100svh;
}

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

html {
  min-width: 320px;
  scroll-padding-top: 118px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at calc(18% + var(--scroll) * 46%) 12%, rgba(var(--scene-a), 0.28), transparent 34rem),
    radial-gradient(circle at calc(86% - var(--scroll) * 42%) 40%, rgba(var(--scene-b), 0.22), transparent 38rem),
    linear-gradient(180deg, #061312 0%, #0a1e1b 46%, #07110f 100%);
  font-family: "Neosande", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--ink);
  background: var(--sand);
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-shell {
  position: relative;
  z-index: 2;
  margin-bottom: var(--footer-reveal-height);
  background:
    radial-gradient(circle at calc(18% + var(--scroll) * 46%) 12%, rgba(var(--scene-a), 0.2), transparent 34rem),
    radial-gradient(circle at calc(86% - var(--scroll) * 42%) 40%, rgba(var(--scene-b), 0.16), transparent 38rem),
    linear-gradient(180deg, #061312 0%, #0a1e1b 46%, #07110f 100%);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.34);
}

.ambient-canvas,
.scenery {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-canvas {
  z-index: -2;
  opacity: 0.5;
}

.scenery {
  z-index: -3;
  overflow: hidden;
  background: #061312;
}

.scenery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 18, 0.72), rgba(6, 19, 18, 0.92)),
    radial-gradient(circle at 50% 30%, rgba(6, 19, 18, 0.16), rgba(6, 19, 18, 0.86) 58%);
}

.scenery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.08) contrast(1.05);
  opacity: 0.3;
  transform: scale(1.12);
  transition: opacity 520ms ease, transform 900ms ease;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(calc(100% - 32px), 1360px);
  min-height: 64px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 19, 18, 0.58);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(245, 241, 230, 0.28);
  background: rgba(6, 19, 18, 0.92);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.38);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding-left: 4px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 241, 230, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(120, 191, 163, 0.24), rgba(216, 185, 120, 0.14));
  font-weight: 800;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  white-space: nowrap;
}

.brand-copy strong {
  overflow: hidden;
  max-width: 260px;
  font-size: 0.98rem;
  text-overflow: ellipsis;
}

.brand-copy small {
  color: rgba(245, 241, 230, 0.56);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
  background: rgba(245, 241, 230, 0.1);
}

.header-credit {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 132px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(245, 241, 230, 0.055);
  text-align: center;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.header-credit span {
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.header-credit img {
  width: 104px;
  height: auto;
  margin: 0 auto;
  opacity: 0.86;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.header-credit:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 185, 120, 0.38);
  background: linear-gradient(145deg, rgba(216, 185, 120, 0.12), rgba(120, 191, 163, 0.07)), rgba(245, 241, 230, 0.06);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.header-credit:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(216, 185, 120, 0.24));
  transform: translateY(-1px) scale(1.035);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(245, 241, 230, 0.16);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(245, 241, 230, 0.06);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--paper);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle:hover {
  border-color: rgba(216, 185, 120, 0.36);
  background: rgba(245, 241, 230, 0.1);
}

.header-action {
  color: var(--ink);
  background: var(--paper);
}

.header-action:hover {
  transform: translateY(-1px);
}

.scene {
  position: relative;
  z-index: 1;
  scroll-margin-top: 118px;
}

.hero-section {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 30px;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
  transform: translate3d(0, calc(var(--scroll) * 90px), 0) scale(1.06);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 19, 18, 0.2), rgba(6, 19, 18, 0.12) 38%, rgba(6, 19, 18, 0.9)),
    linear-gradient(90deg, rgba(6, 19, 18, 0.92), rgba(6, 19, 18, 0.34) 56%, rgba(6, 19, 18, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
  padding: clamp(150px, 18svh, 220px) 0 clamp(34px, 5svh, 58px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.metric strong,
.stat strong,
.phase-card h3,
.area-card h3,
.price-card h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
  text-wrap: wrap;
}

h1 {
  max-width: min(1320px, 82vw);
  margin-bottom: 24px;
  font-size: clamp(3rem, 8.6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(245, 241, 230, 0.8);
  font-size: clamp(1.02rem, 1.55vw, 1.3rem);
}

.hero-actions,
.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.button-primary {
  border-color: transparent;
  color: var(--ink);
  background: var(--paper);
}

.button-secondary {
  background: rgba(245, 241, 230, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.hero-stats article,
.principle-grid article,
.finance-lead,
.investment-card,
.finance-metrics article,
.revenue-notes article,
.court-rate-panel,
.membership-table-wrap,
.corporate-rate-panel,
.price-card,
.stay-card,
.rv-card,
.partner-grid article,
.operator-roles article,
.operator-proof span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.03)), rgba(7, 20, 18, 0.68);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  min-width: 0;
  padding: 18px;
  background: rgba(6, 19, 18, 0.66);
}

.hero-stats span,
.hero-stats small,
.finance-metrics span,
.finance-metrics small {
  display: block;
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.76rem;
}

.hero-stats strong,
.finance-metrics strong {
  display: block;
  margin: 5px 0 3px;
  font-size: clamp(1.34rem, 2.3vw, 2.3rem);
  line-height: 1;
}

.section {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: clamp(84px, 11vw, 156px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 5.6vw, 74px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.phase-header h2,
.site-copy h2,
.operator-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.headline-line {
  display: block;
}

.headline-desktop-copy {
  display: none;
}

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

.principle-grid article {
  min-height: 270px;
  padding: 24px;
}

.principle-grid span,
.phase-copy small,
.phase-text small,
.finance-lead span,
.investment-card small,
.price-card small,
.stay-card span,
.rv-card span,
.partner-grid span,
.story-steps span {
  color: var(--sand);
  font-weight: 800;
  text-transform: uppercase;
}

.principle-grid h3,
.phase-copy h3,
.phase-text h3,
.revenue-notes h3,
.price-card h3,
.stay-card h3,
.rv-card h3,
.operator-copy h2,
.contact-card h2,
.story-steps h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.28rem, 2vw, 2rem);
  line-height: 1.08;
}

.revenue-notes h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.principle-grid p,
.phase-copy p,
.phase-text p,
.site-copy p,
.finance-lead p,
.revenue-notes p,
.price-card p,
.stay-card p,
.rv-card p,
.partner-grid p,
.operator-copy p,
.contact-card p,
.story-steps p {
  color: rgba(245, 241, 230, 0.72);
}

.phase-scroll {
  height: 240svh;
  min-height: 1500px;
}

.phase-sticky {
  position: sticky;
  top: 0;
  display: flex;
  height: 100svh;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 62px 0 24px;
}

.phase-header {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto 16px;
}

.phase-header h2 {
  max-width: 1040px;
  font-size: clamp(1.9rem, 3.65vw, 3.8rem);
  line-height: 0.98;
}

.phase-track {
  display: flex;
  flex: 1 1 auto;
  gap: 22px;
  align-items: stretch;
  width: max-content;
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-right: max(32px, calc((100vw - var(--max)) / 2));
  will-change: transform;
  transform: translate3d(var(--phase-x, 0px), 0, 0);
  backface-visibility: hidden;
  contain: layout paint style;
}

.phase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  width: min(calc(100vw - 64px), var(--max));
  height: clamp(460px, calc(100svh - 320px), 620px);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.78);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
}

.phase-card-alt {
  background: rgba(10, 28, 25, 0.82);
}

.phase-image {
  position: relative;
  min-height: 0;
}

.phase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 18, 0) 45%, rgba(7, 20, 18, 0.82));
}

.phase-image img,
.story-visual img,
.image-card img,
.atlas-grid img,
.operator-media img,
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 3.2vw, 42px);
}

.phase-text {
  display: grid;
  gap: 0;
}

.phase-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 2px solid rgba(216, 185, 120, 0.7);
  background: rgba(216, 185, 120, 0.08);
  color: rgba(245, 241, 230, 0.82) !important;
  font-size: 0.88rem;
  line-height: 1.42;
}

.module-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.module-cloud span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(245, 241, 230, 0.18);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
  color: rgba(245, 241, 230, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.phase-section {
  overflow: visible;
}

.phase-section .phase-header {
  width: 100%;
  margin-bottom: 30px;
}

.phase-lanes {
  display: grid;
  gap: 28px;
}

.phase-lane {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
  gap: 16px;
  align-items: stretch;
}

.phase-lane-main,
.phase-side-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.03)), rgba(7, 20, 18, 0.72);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.phase-lane-main {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
}

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

.phase-gallery figure {
  position: relative;
  min-width: 0;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
}

.phase-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.phase-gallery figure:hover img {
  transform: scale(1.04);
}

.phase-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(245, 241, 230, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 19, 18, 0.72);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.phase-side-card {
  display: flex;
  flex-direction: column;
}

.phase-side-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.phase-side-card > div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.phase-side-card span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phase-side-card h4 {
  margin: 0;
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.05;
}

.phase-side-card p {
  color: rgba(245, 241, 230, 0.72);
}

.phase-journeys {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.phase-journey {
  height: 440svh;
  min-height: 3200px;
}

.phase-journey-sticky {
  position: sticky;
  top: 0;
  display: flex;
  width: 100vw;
  height: 100svh;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 104px 0 42px;
}

.phase-journey .phase-track {
  height: 100%;
  align-items: stretch;
}

.phase-panel {
  display: grid;
  width: min(calc(100vw - 64px), var(--max));
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.03)), rgba(7, 20, 18, 0.78);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.phase-journey .phase-panel {
  background: linear-gradient(145deg, rgba(245, 241, 230, 0.09), rgba(245, 241, 230, 0.035)), rgba(7, 20, 18, 0.88);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  backface-visibility: hidden;
  contain: paint;
}

.phase-overview-panel {
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.32fr);
}

.phase-overview-media,
.phase-detail-cards article {
  position: relative;
  overflow: hidden;
}

.phase-overview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 18, 0), rgba(7, 20, 18, 0.62));
  pointer-events: none;
}

.phase-overview-media img,
.phase-detail-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.phase-panel-copy,
.phase-detail-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.4vw, 34px);
}

.phase-panel-copy small,
.phase-detail-intro small {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phase-panel-copy h3,
.phase-detail-intro h3 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 2.55vw, 3.05rem);
  line-height: 0.98;
}

.phase-panel-copy p,
.phase-detail-intro p {
  color: rgba(245, 241, 230, 0.72);
}

.phase-panel-copy .module-cloud {
  margin-top: 22px;
}

.phase-detail-panel {
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
}

.phase-detail-cards {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 10px;
}

.phase-detail-cards article {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.055);
}

.phase-detail-cards article > div {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  gap: 6px;
  padding: clamp(10px, 1.15vw, 15px);
}

.phase-detail-cards h4 {
  margin: 0;
  font-size: clamp(0.96rem, 1.04vw, 1.14rem);
  line-height: 1.08;
}

.phase-detail-cards p {
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: clamp(0.76rem, 0.82vw, 0.86rem);
  line-height: 1.22;
}

.site-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.48fr) minmax(360px, 0.52fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.site-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  overflow-wrap: normal;
  hyphens: none;
}

.site-facts,
.finance-metrics,
.partner-grid,
.operator-proof {
  display: grid;
  gap: 10px;
}

.site-facts {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0;
  padding: 0 18px 18px;
}

.site-facts span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
  color: rgba(245, 241, 230, 0.68);
  font-size: 0.84rem;
  line-height: 1.24;
}

.site-facts b {
  display: block;
  color: var(--paper);
  font-size: clamp(0.96rem, 1.22vw, 1.08rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.operator-proof b {
  display: block;
  color: var(--paper);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
}

.plan-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.72);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.24);
}

.plan-tabs {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.plan-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
  font-weight: 800;
}

.plan-tabs button.is-active {
  color: var(--ink);
  background: var(--paper);
}

.plan-card figure {
  margin: 0;
  padding: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(var(--scene-b), 0.18), transparent 22rem), rgba(245, 241, 230, 0.04);
  transition: opacity 180ms ease, transform 180ms ease;
}

.plan-card figure.is-switching {
  opacity: 0;
  transform: translateY(10px);
}

.plan-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: 14px;
  margin-bottom: 14px;
}

.finance-lead,
.investment-card {
  padding: clamp(24px, 4vw, 42px);
}

.finance-lead h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1;
}

.finance-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.finance-terms span {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.32;
}

.finance-terms b {
  display: block;
  margin-bottom: 3px;
  color: var(--sand);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.capex-explainer {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.045);
}

.capex-explainer h4 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.12;
}

.capex-explainer dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.capex-explainer div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.capex-explainer dt {
  flex: 0 0 118px;
  margin: 0;
  color: var(--sand);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.capex-explainer dd {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.capex-bars {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.capex-bars div,
.chart-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.36fr) minmax(160px, 1fr) minmax(170px, auto);
  gap: 14px;
  align-items: center;
}

.capex-bars span,
.chart-row span {
  min-width: 0;
  color: rgba(245, 241, 230, 0.78);
  font-weight: 800;
  line-height: 1.18;
}

.capex-bars i,
.chart-row i {
  display: block;
  width: var(--w);
  min-width: 40px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(var(--scene-a), 0.95), rgba(var(--scene-c), 0.92));
  transform: scaleX(var(--bar, 0));
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible .capex-bars i,
.is-visible .chart-row i {
  --bar: 1;
}

.capex-bars b {
  white-space: nowrap;
}

.chart-row b {
  display: grid;
  gap: 2px;
  text-align: right;
  white-space: nowrap;
}

.chart-row b small {
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
}

.chart-row-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 241, 230, 0.22);
}

.chart-row-total span,
.chart-row-total b {
  color: var(--paper);
}

.chart-row-total i {
  background: linear-gradient(90deg, rgba(216, 185, 120, 0.98), rgba(120, 191, 163, 0.98));
  box-shadow: 0 0 0 1px rgba(245, 241, 230, 0.1) inset;
}

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

.finance-metrics article {
  padding: 24px;
}

.revenue-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.revenue-chart {
  display: grid;
  gap: 13px;
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(var(--scene-a), 0.13), rgba(var(--scene-c), 0.07)), rgba(7, 20, 18, 0.78);
}

.revenue-breakdown-intro {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.055);
}

.revenue-breakdown-intro span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.revenue-breakdown-intro h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.revenue-breakdown-intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.revenue-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.revenue-breakdown article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(var(--scene-b), 0.12), rgba(var(--scene-a), 0.06)), rgba(7, 20, 18, 0.76);
}

.breakdown-head {
  display: grid;
  gap: 8px;
}

.breakdown-head span {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(245, 241, 230, 0.18);
  border-radius: calc(var(--radius) - 2px);
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.breakdown-head h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.08;
}

.breakdown-head strong,
.revenue-breakdown article > b {
  color: var(--paper);
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  line-height: 1.05;
}

.revenue-breakdown p {
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.36;
}

.revenue-breakdown dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.revenue-breakdown dl div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 241, 230, 0.12);
}

.revenue-breakdown dt,
.revenue-breakdown dd {
  min-width: 0;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.28;
}

.revenue-breakdown dt {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
}

.revenue-breakdown dd {
  color: rgba(245, 241, 230, 0.75);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.revenue-breakdown article > b {
  align-self: end;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 241, 230, 0.16);
}

.revenue-calculator-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(216, 185, 120, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(216, 185, 120, 0.13), rgba(120, 191, 163, 0.06)), rgba(7, 20, 18, 0.76);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22);
}

.revenue-calculator-cta div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.revenue-calculator-cta span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.revenue-calculator-cta h3 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.04;
}

.revenue-calculator-cta p {
  max-width: 740px;
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

.revenue-calculator-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 68px;
  min-width: 304px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 64px 0 30px;
  border: 1px solid rgba(216, 185, 120, 0.5);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(245, 241, 230, 0.98), rgba(216, 185, 120, 0.92)),
    var(--paper);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(245, 241, 230, 0.16) inset;
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, border-color 220ms ease;
}

.revenue-calculator-button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg);
  transition: left 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.revenue-calculator-button::after {
  content: "›";
  position: absolute;
  right: 26px;
  color: rgba(7, 19, 18, 0.72);
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms ease;
}

.revenue-calculator-button span {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.revenue-calculator-button:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 241, 230, 0.78);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(245, 241, 230, 0.24) inset;
}

.revenue-calculator-button:hover::before {
  left: 112%;
}

.revenue-calculator-button:hover::after {
  color: var(--ink);
  transform: translateX(4px);
}

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

.revenue-notes article {
  overflow: hidden;
  padding: 0;
}

.revenue-notes img {
  width: 100%;
  height: clamp(170px, 16vw, 230px);
  object-fit: cover;
  transform: scale(1.02);
}

.revenue-note-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.calculator-page {
  --footer-reveal-height: 76svh;
}

.calculator-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: end;
  min-height: 88svh;
  padding-top: clamp(72px, 9vw, 124px);
}

.calculator-hero-copy {
  display: grid;
  gap: 20px;
}

.calculator-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.95;
}

.calculator-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(245, 241, 230, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 700;
}

.calculator-summary,
.calculator-panel,
.calculator-output {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.035)), rgba(7, 20, 18, 0.74);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.calculator-summary {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.calculator-summary span,
.calculator-panel > span,
.calculator-output > span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculator-summary strong {
  display: block;
  color: var(--paper);
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  line-height: 0.95;
}

.calculator-summary small {
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.calculator-tool-section {
  padding-top: clamp(72px, 8vw, 118px);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.42fr);
  gap: 20px;
  align-items: start;
}

.calculator-inputs {
  display: grid;
  gap: 14px;
}

.calculator-panel {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 34px);
}

.calculator-panel h2,
.calculator-output h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.02;
  overflow-wrap: normal;
  hyphens: none;
  word-break: normal;
}

.calculator-panel p,
.calculator-output p {
  max-width: 760px;
  margin: 0;
  color: rgba(245, 241, 230, 0.7);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.42;
}

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

.calculator-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.calculator-field span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245, 241, 230, 0.86);
  font-size: 0.88rem;
  font-weight: 900;
}

.calculator-field small {
  color: rgba(245, 241, 230, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.calculator-field input {
  width: 100%;
  min-height: 46px;
  min-width: 0;
  padding: 0 13px;
  border: 1px solid rgba(245, 241, 230, 0.18);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(6, 19, 18, 0.58);
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  outline: none;
}

.calculator-field input:focus {
  border-color: rgba(216, 185, 120, 0.72);
  box-shadow: 0 0 0 3px rgba(216, 185, 120, 0.14);
}

.calculator-court-groups {
  display: grid;
  gap: 12px;
}

.calculator-court-group {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.045);
}

.calculator-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.calculator-group-head h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.05rem, 1.75vw, 1.32rem);
  line-height: 1.1;
}

.calculator-group-head strong {
  color: var(--sand);
  font-size: 0.96rem;
  white-space: nowrap;
}

.calculator-panel-total {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 241, 230, 0.14);
}

.calculator-panel-total > span {
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-panel-total strong {
  color: var(--paper);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1;
  text-align: right;
}

.calculator-panel-total strong span {
  display: block;
  color: var(--paper);
}

.calculator-panel-total small {
  display: block;
  margin-top: 4px;
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.78rem;
}

.calculator-output {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 20px;
  min-width: 0;
  max-height: calc(100svh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 3vw, 34px);
  scrollbar-color: rgba(245, 241, 230, 0.24) transparent;
}

.calculator-output-main {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 241, 230, 0.14);
}

.calculator-output-main strong {
  color: var(--paper);
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 0.95;
}

.calculator-output-main small {
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

.calculator-result-list {
  display: grid;
  gap: 12px;
}

.calculator-result-list article {
  display: grid;
  gap: 8px;
}

.calculator-result-list header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.calculator-result-list h3 {
  margin: 0;
  color: rgba(245, 241, 230, 0.8);
  font-size: 0.9rem;
}

.calculator-result-list strong {
  color: var(--paper);
  font-size: 0.96rem;
  white-space: nowrap;
}

.calculator-result-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 241, 230, 0.1);
}

.calculator-result-bar i {
  display: block;
  width: var(--w, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(120, 191, 163, 0.95), rgba(216, 185, 120, 0.95));
  transition: width 180ms ease;
}

.calculator-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.calculator-detail-list div {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: baseline;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 241, 230, 0.1);
}

.calculator-detail-list dt,
.calculator-detail-list dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

.calculator-detail-list dt {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-detail-list dd {
  color: rgba(245, 241, 230, 0.76);
  font-weight: 800;
  text-align: right;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: 18px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  height: min(680px, calc(100svh - 138px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.7);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 28% 20%, rgba(120, 191, 163, 0.2), transparent 28rem),
    linear-gradient(180deg, rgba(4, 13, 13, 0), rgba(4, 13, 13, 0.32));
  pointer-events: none;
}

.story-visual img {
  object-position: center;
  transition: opacity 260ms ease, transform 600ms ease;
}

.story-visual.is-switching img {
  opacity: 0;
  transform: scale(1.02);
}

.story-steps {
  display: grid;
  gap: 14px;
}

.story-steps article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.07);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.story-steps article.is-active {
  border-color: rgba(216, 185, 120, 0.5);
  background: rgba(216, 185, 120, 0.11);
  transform: translateX(-8px);
}

.story-scroll {
  min-height: 430svh;
}

.story-scroll .story-split {
  position: sticky;
  top: 104px;
  min-height: calc(100svh - 138px);
  align-items: stretch;
}

.story-scroll .story-visual {
  position: relative;
  top: auto;
  height: auto;
  min-height: calc(100svh - 138px);
}

.story-scroll .story-steps {
  position: relative;
  min-height: calc(100svh - 138px);
}

.story-scroll .story-steps article {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
}

.story-scroll .story-steps article.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-scroll .story-steps article.app-step {
  align-items: center;
  text-align: center;
}

.story-scroll .story-steps article.app-step .app-build-card {
  width: min(100%, 460px);
}

.app-build-card {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(120, 191, 163, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(120, 191, 163, 0.18), rgba(216, 185, 120, 0.08)),
    rgba(7, 20, 18, 0.64);
}

.app-build-card small {
  color: var(--sand);
  font-weight: 800;
  text-transform: uppercase;
}

.app-build-card strong {
  color: var(--paper);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.15;
}

.app-build-card div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.app-build-card em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: calc(var(--radius) - 6px);
  color: rgba(245, 241, 230, 0.82);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

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

.price-card {
  min-width: 0;
  overflow: hidden;
  padding: 24px;
}

.price-card.wide {
  grid-column: 1 / -1;
}

.price-grid > .price-card:not(.wide):not(.signature-card) {
  grid-column: span 2;
}

.price-card.signature-card {
  grid-column: span 3;
}

.price-card strong {
  display: block;
  margin: 14px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1;
  overflow-wrap: break-word;
}

.price-lines {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.price-lines span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(245, 241, 230, 0.12);
}

.price-lines em {
  color: var(--sand);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.pricing-comparison {
  display: grid;
  gap: 14px;
}

.court-rate-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: end;
  padding: clamp(22px, 3.5vw, 36px);
}

.court-rate-panel > div:first-child > span {
  display: block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.court-rate-panel h3 {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  line-height: 1.05;
}

.court-rate-panel p {
  margin-bottom: 0;
  color: rgba(245, 241, 230, 0.72);
}

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

.court-rates span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.06);
}

.court-rates b {
  color: var(--paper);
  line-height: 1.1;
}

.court-rates em {
  color: var(--sand);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
}

.membership-table-wrap {
  overflow-x: auto;
  padding: 0;
  scrollbar-color: rgba(245, 241, 230, 0.26) transparent;
}

.membership-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
}

.membership-table th,
.membership-table td {
  min-width: 0;
  padding: 16px 14px;
  border-right: 1px solid rgba(245, 241, 230, 0.1);
  border-bottom: 1px solid rgba(245, 241, 230, 0.1);
  vertical-align: middle;
}

.membership-table tr > *:last-child {
  border-right: 0;
}

.membership-table tbody tr:last-child > * {
  border-bottom: 0;
}

.membership-table thead th {
  background: linear-gradient(180deg, rgba(245, 241, 230, 0.1), rgba(245, 241, 230, 0.045));
  text-align: center;
}

.membership-table .feature-head,
.membership-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 210px;
  min-width: 210px;
  background: rgba(8, 24, 22, 0.98);
  text-align: left;
}

.membership-table .feature-head {
  z-index: 4;
  color: var(--sand);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.membership-table thead span,
.membership-table thead strong,
.membership-table thead small {
  display: block;
}

.membership-table thead span {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.membership-table thead strong {
  margin: 8px 0 4px;
  color: var(--paper);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1;
}

.membership-table thead small {
  color: rgba(245, 241, 230, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
}

.membership-table tbody th {
  color: var(--paper);
  font-size: 0.9rem;
  line-height: 1.15;
}

.membership-table td {
  color: rgba(245, 241, 230, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.membership-table td b {
  color: var(--sand);
  font-size: 1.04rem;
}

.check,
.dash {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.check {
  border: 1px solid rgba(120, 191, 163, 0.42);
  background: rgba(120, 191, 163, 0.14);
  color: #9be0c0;
}

.dash {
  border: 1px solid rgba(245, 241, 230, 0.1);
  color: rgba(245, 241, 230, 0.38);
}

.corporate-rate-panel {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3.5vw, 34px);
  background:
    linear-gradient(135deg, rgba(120, 191, 163, 0.14), rgba(216, 185, 120, 0.07)),
    rgba(7, 20, 18, 0.72);
}

.corporate-rate-panel span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.corporate-rate-panel h3 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  line-height: 1.06;
}

.corporate-rate-panel p {
  max-width: 980px;
  margin-bottom: 0;
  color: rgba(245, 241, 230, 0.72);
}

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

.image-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.image-card img {
  height: 360px;
}

.image-card div,
.rv-card {
  flex: 1;
  padding: 24px;
}

.rv-plan {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.rv-plan i {
  display: block;
  aspect-ratio: 1.55;
  border: 1px solid rgba(245, 241, 230, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(245, 241, 230, 0.16) 0 20%, transparent 20% 80%, rgba(245, 241, 230, 0.16) 80%),
    rgba(120, 191, 163, 0.13);
}

.atlas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 12px;
}

.atlas-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.7);
}

.atlas-grid figure:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

.atlas-grid figure.wide {
  grid-column: span 2;
}

.atlas-grid figure.tall {
  grid-row: span 2;
}

.atlas-grid img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atlas-grid figure:hover img {
  transform: scale(1.04);
}

.atlas-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 241, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 19, 18, 0.72);
  color: rgba(245, 241, 230, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.atlas-filter-head {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin: 34px 0 8px;
}

.atlas-filter-head span {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atlas-filter-head p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.95rem;
}

.atlas-folder-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  overflow: visible;
  padding-top: 56px;
}

.animated-folder {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  padding: 0 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  perspective: 1000px;
  transition: transform 420ms ease;
}

.animated-folder:hover,
.animated-folder:focus-visible {
  box-shadow: none;
  transform: translateY(-8px);
}

.animated-folder:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

.folder-glow {
  position: absolute;
  inset: 8px -4px 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 72%, rgba(216, 185, 120, 0.46), transparent 64%);
  opacity: 0;
  transition: opacity 500ms ease;
}

.animated-folder:hover .folder-glow,
.animated-folder:focus-visible .folder-glow {
  opacity: 0.13;
}

.folder-stage {
  position: relative;
  display: block;
  width: 104px;
  height: 86px;
  margin-bottom: 10px;
  transform-style: preserve-3d;
}

.folder-back,
.folder-front,
.folder-shine {
  position: absolute;
  left: 50%;
  width: 72px;
  height: 54px;
  border-radius: 7px;
  transform: translateX(-50%) rotateX(0deg);
  transform-origin: bottom center;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.folder-back {
  top: 24px;
  z-index: 10;
  background: linear-gradient(145deg, rgba(194, 158, 86, 0.95), rgba(116, 88, 43, 0.94));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.folder-tab {
  position: absolute;
  top: 17px;
  left: 24px;
  z-index: 10;
  width: 30px;
  height: 11px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(145deg, rgba(226, 195, 128, 0.96), rgba(143, 110, 52, 0.94));
  transform-origin: bottom center;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.folder-front {
  top: 29px;
  z-index: 30;
  background: linear-gradient(145deg, rgba(222, 190, 120, 0.98), rgba(146, 112, 54, 0.96));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.folder-shine {
  top: 29px;
  z-index: 31;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 52%);
  pointer-events: none;
}

.folder-projects {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  width: 0;
  height: 0;
}

.folder-projects img {
  position: absolute;
  top: -28px;
  left: -21px;
  width: 42px;
  max-width: none;
  height: 58px;
  border: 1px solid rgba(245, 241, 230, 0.25);
  border-radius: 8px;
  object-fit: cover;
  opacity: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
  transform: translate(0, 0) rotate(0deg) scale(0.5);
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 260ms ease;
}

.folder-projects img:nth-child(1) {
  transition-delay: 0ms;
}

.folder-projects img:nth-child(2) {
  transition-delay: 80ms;
}

.folder-projects img:nth-child(3) {
  transition-delay: 160ms;
}

.animated-folder:hover .folder-back,
.animated-folder:focus-visible .folder-back {
  transform: translateX(-50%) rotateX(-15deg);
}

.animated-folder:hover .folder-tab,
.animated-folder:focus-visible .folder-tab {
  transform: rotateX(-25deg) translateY(-2px);
}

.animated-folder:hover .folder-front,
.animated-folder:hover .folder-shine,
.animated-folder:focus-visible .folder-front,
.animated-folder:focus-visible .folder-shine {
  transform: translateX(-50%) rotateX(25deg) translateY(8px);
}

.animated-folder:hover .folder-projects img,
.animated-folder:focus-visible .folder-projects img {
  opacity: 1;
}

.animated-folder:hover .folder-projects img:nth-child(1),
.animated-folder:focus-visible .folder-projects img:nth-child(1) {
  transform: translate(-28px, -44px) rotate(-12deg) scale(1);
}

.animated-folder:hover .folder-projects img:nth-child(2),
.animated-folder:focus-visible .folder-projects img:nth-child(2) {
  transform: translate(0, -48px) rotate(0deg) scale(1);
}

.animated-folder:hover .folder-projects img:nth-child(3),
.animated-folder:focus-visible .folder-projects img:nth-child(3) {
  transform: translate(28px, -44px) rotate(12deg) scale(1);
}

.animated-folder strong,
.animated-folder em,
.folder-hint {
  position: relative;
  z-index: 4;
  text-align: center;
}

.animated-folder strong {
  max-width: 120px;
  font-size: 0.78rem;
  line-height: 1.15;
}

.animated-folder em {
  margin-top: 4px;
  color: rgba(245, 241, 230, 0.62);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
}

.folder-hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: rgba(245, 241, 230, 0.52);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.animated-folder:hover .folder-hint,
.animated-folder:focus-visible .folder-hint {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.atlas-lightbox {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(3, 10, 10, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.atlas-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.atlas-lightbox figure {
  position: relative;
  display: grid;
  width: min(92vw, 1420px);
  max-height: 88svh;
  margin: 0;
  place-items: center;
}

.atlas-lightbox img {
  max-width: min(92vw, 1420px);
  max-height: 78svh;
  border: 1px solid rgba(245, 241, 230, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.atlas-lightbox figcaption {
  margin-top: 12px;
  color: var(--paper);
  font-weight: 800;
  text-align: center;
}

.atlas-lightbox-count {
  display: block;
  margin-top: 4px;
  color: rgba(245, 241, 230, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.atlas-lightbox-close,
.atlas-lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 241, 230, 0.2);
  border-radius: 999px;
  background: rgba(245, 241, 230, 0.1);
  color: var(--paper);
  font-size: 1.35rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.atlas-lightbox-close {
  top: 18px;
  right: 18px;
}

.atlas-lightbox-nav {
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
}

.atlas-lightbox-prev {
  left: 18px;
}

.atlas-lightbox-next {
  right: 18px;
}

.atlas-lightbox-nav:disabled {
  opacity: 0.18;
  cursor: default;
}

body.lightbox-open {
  overflow: hidden;
}

.partner-grid {
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  overflow-x: auto;
  margin-top: -10px;
  padding-top: 10px;
  padding-bottom: 12px;
  scrollbar-color: rgba(245, 241, 230, 0.24) transparent;
}

.partner-grid article {
  min-height: 220px;
  padding: 22px;
}

.partner-grid span {
  display: block;
  margin-bottom: 34px;
}

.operator-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(12px, 1.8vw, 26px);
}

.operator-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.74);
}

.operator-copy {
  align-self: end;
}

.operator-media img {
  min-height: 540px;
}

.operator-copy h2 {
  max-width: 840px;
  margin-bottom: 20px;
}

.operator-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.operator-proof span {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: rgba(245, 241, 230, 0.7);
}

.operator-roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.operator-roles article {
  padding: 20px;
}

.operator-roles h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.08;
}

.operator-roles p,
.operator-closing {
  color: rgba(245, 241, 230, 0.72);
}

.operator-closing {
  max-width: 900px;
  margin-top: 20px;
  font-weight: 800;
}

.alliance-quote-section {
  padding-top: clamp(16px, 2.6vw, 38px);
  padding-bottom: clamp(56px, 8vw, 118px);
}

.alliance-panel {
  position: relative;
  display: grid;
  min-height: clamp(300px, 36vw, 470px);
  place-items: center start;
  overflow: hidden;
  padding: clamp(30px, 6vw, 84px) clamp(4px, 2vw, 28px);
  border-top: 1px solid rgba(245, 241, 230, 0.18);
  border-bottom: 1px solid rgba(245, 241, 230, 0.14);
  border-radius: 0;
  background:
    radial-gradient(circle at 4% 36%, rgba(216, 185, 120, 0.18), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(120, 191, 163, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(245, 241, 230, 0.035), transparent 58%);
}

.alliance-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: min(220px, 28vw);
  height: 1px;
  background:
    linear-gradient(90deg, rgba(216, 185, 120, 0.84), rgba(120, 191, 163, 0));
  transform: translateY(-50%);
  pointer-events: none;
}

.alliance-panel::after {
  content: "Hand in Hand";
  position: absolute;
  right: 0;
  bottom: clamp(12px, 2vw, 28px);
  color: rgba(245, 241, 230, 0.04);
  font-size: clamp(3.9rem, 10vw, 9.6rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.alliance-statement {
  position: relative;
  z-index: 1;
  max-width: 1030px;
  margin-left: clamp(0px, 8vw, 104px);
  text-align: left;
}

.alliance-statement span {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 11px;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.alliance-statement span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sand), rgba(120, 191, 163, 0.9));
}

.alliance-statement blockquote {
  margin: clamp(18px, 2.6vw, 34px) 0 0;
  color: var(--paper);
  font-size: clamp(1.72rem, 3.6vw, 4.05rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (hover: hover) and (pointer: fine) {
  .principle-grid article,
  .finance-metrics article,
  .revenue-notes article,
  .court-rate-panel,
  .membership-table-wrap,
  .corporate-rate-panel,
  .price-card,
  .stay-card,
  .rv-card,
  .partner-grid article,
  .operator-roles article,
  .operator-proof span,
  .phase-detail-cards article,
  .phase-side-card {
    transition:
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 260ms ease,
      background 260ms ease,
      box-shadow 260ms ease;
  }

  .principle-grid article:hover,
  .finance-metrics article:hover,
  .revenue-notes article:hover,
  .court-rate-panel:hover,
  .membership-table-wrap:hover,
  .corporate-rate-panel:hover,
  .price-card:hover,
  .stay-card:hover,
  .rv-card:hover,
  .partner-grid article:hover,
  .operator-roles article:hover,
  .operator-proof span:hover,
  .phase-side-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(216, 185, 120, 0.38);
    background: linear-gradient(145deg, rgba(216, 185, 120, 0.12), rgba(120, 191, 163, 0.045)), rgba(8, 25, 22, 0.84);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }

  .phase-detail-cards article:hover {
    transform: translate3d(0, -3px, 0);
    border-color: rgba(216, 185, 120, 0.34);
    background: rgba(245, 241, 230, 0.075);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  }

  .revenue-notes img,
  .image-card img,
  .phase-side-card img,
  .phase-detail-cards img {
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .revenue-notes article:hover img,
  .image-card:hover img,
  .phase-side-card:hover img,
  .phase-detail-cards article:hover img {
    transform: scale(1.045);
  }
}

.contact-section {
  --contact-cover-y: 0%;
  --contact-bg-scale: 1.03;
  --contact-bg-y: 0px;
  display: block;
  position: fixed;
  inset: auto 0 0;
  z-index: 1;
  height: var(--footer-reveal-height);
  min-height: 0;
  overflow: clip;
  padding: 0;
  isolation: isolate;
}

.contact-stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center start;
  overflow: hidden;
  padding: clamp(118px, 16vh, 180px) 32px clamp(96px, 11vh, 126px);
}

.contact-bg,
.contact-bg::after,
.contact-stage::before,
.contact-stage::after {
  position: absolute;
  inset: 0;
}

.contact-bg {
  z-index: 0;
  overflow: hidden;
  transform: translateY(var(--contact-bg-y)) scale(var(--contact-bg-scale));
  transform-origin: center bottom;
  transition: transform 120ms linear;
  will-change: transform;
}

.contact-bg img {
  transform: scale(1.02);
}

.contact-bg::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(6, 19, 18, 0.18), rgba(6, 19, 18, 0.7) 54%, rgba(6, 19, 18, 0.92)),
    linear-gradient(90deg, rgba(6, 19, 18, 0.9), rgba(6, 19, 18, 0.36), rgba(6, 19, 18, 0.82));
}

.contact-stage::before {
  display: none;
}

.contact-stage::after {
  display: none;
}

.contact-meta {
  position: absolute;
  top: clamp(142px, 18vh, 186px);
  right: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 7px;
  max-width: min(420px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(245, 241, 230, 0.22);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(6, 19, 18, 0.42);
  color: var(--cream);
  font-weight: 850;
  text-align: right;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.contact-meta a {
  color: rgba(245, 241, 230, 0.82);
}

.contact-meta,
.contact-card {
  transform: translateY(0);
}

.contact-card {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  padding: clamp(22px, 4vw, 46px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.48);
}

.contact-card h2 {
  max-width: 1120px;
  margin-top: 14px;
  font-size: clamp(2.18rem, 4.85vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

html[lang="de"] .contact-card h2 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}

.contact-card p:not(.eyebrow) {
  max-width: 780px;
  margin-top: clamp(18px, 2.6vw, 32px);
  color: rgba(245, 241, 230, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  font-weight: 780;
}

.contact-lines {
  display: none;
}

.contact-lines a,
.contact-lines span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 230, 0.08);
  font-weight: 800;
}

.clarum-credit {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  left: auto;
  bottom: clamp(20px, 3vh, 34px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: auto;
  min-width: 132px;
  max-width: calc(100% - 44px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.56);
}

.clarum-credit span {
  color: rgba(245, 241, 230, 0.5);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.clarum-credit a {
  display: inline-grid;
  justify-items: center;
  line-height: 1;
}

.clarum-credit img {
  display: block;
  width: 104px;
  height: auto;
  margin: 0 auto;
  opacity: 0.68;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), filter 220ms ease;
}

.clarum-credit a:hover img {
  transform: translateY(-1px) scale(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-section {
    height: auto;
  }

  .hero-stats,
  .principle-grid,
  .finance-metrics,
  .operator-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-section,
  .finance-grid,
  .revenue-dashboard,
  .calculator-hero,
  .calculator-layout,
  .court-rate-panel,
  .phase-lane,
  .story-split,
  .operator-section {
    grid-template-columns: 1fr;
  }

  .revenue-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .revenue-breakdown {
    grid-template-columns: 1fr;
  }

  .revenue-calculator-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .calculator-output {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .atlas-folder-grid {
    grid-template-columns: repeat(8, minmax(112px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 52px;
    padding-bottom: 8px;
    scrollbar-color: rgba(245, 241, 230, 0.24) transparent;
  }

  .phase-detail-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .phase-detail-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .phase-detail-cards article {
    grid-template-columns: minmax(170px, 0.38fr) minmax(0, 0.62fr);
  }

  .phase-detail-cards img {
    height: 100%;
  }

  .phase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phase-side-card {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  }

  .phase-side-card img {
    height: 100%;
    min-height: 320px;
  }

  .story-visual {
    position: relative;
    top: auto;
    height: 540px;
  }

  .story-scroll {
    min-height: 450svh;
  }

  .story-scroll .story-split {
    position: sticky;
    top: 96px;
    min-height: calc(100svh - 126px);
  }

  .story-scroll .story-visual {
    height: 360px;
    min-height: 0;
  }

  .story-scroll .story-steps {
    min-height: 360px;
  }

  .story-scroll .story-steps article {
    min-height: 0;
  }

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

  .membership-table {
    min-width: 1040px;
  }

  .price-grid > .price-card:not(.wide):not(.signature-card),
  .price-card.signature-card {
    grid-column: span 1;
  }

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

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

@media (min-width: 821px) and (max-width: 1180px) {
  html {
    scroll-padding-top: 106px;
  }

  .scene {
    scroll-margin-top: 106px;
  }

  .site-header {
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 60px;
    padding: 8px 10px;
  }

  .brand-copy strong {
    max-width: 180px;
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.66rem;
  }

  .site-nav {
    grid-column: auto;
    justify-content: flex-start;
    mask-image: linear-gradient(90deg, #000 0 calc(100% - 28px), transparent);
  }

  .site-nav a,
  .header-action {
    min-height: 38px;
    padding: 0 9px;
    font-size: 0.76rem;
  }

  .header-credit {
    min-width: 104px;
    padding: 6px 8px;
  }

  .header-credit span {
    font-size: 0.48rem;
  }

  .header-credit img {
    width: 82px;
  }

  .hero-inner {
    padding-top: clamp(130px, 16svh, 172px);
  }
}

@media (min-width: 1181px) and (max-width: 1720px), (min-width: 1181px) and (max-height: 1040px) {
  .hero-section {
    min-height: max(760px, 100svh);
    padding-bottom: 24px;
  }

  .hero-inner {
    width: min(calc(100% - 64px), var(--max));
    padding-top: clamp(124px, 13svh, 168px);
    padding-bottom: clamp(24px, 3.6svh, 40px);
  }

  h1 {
    font-size: clamp(3.4rem, 5.85vw, 6.15rem);
    max-width: min(1160px, 78vw);
    margin-bottom: 18px;
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 640px;
    margin-bottom: 22px;
    font-size: clamp(0.98rem, 1.12vw, 1.16rem);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-stats {
    width: min(calc(100% - 64px), var(--max));
    gap: 8px;
  }

  .hero-stats article {
    padding: 14px;
  }

  .hero-stats strong {
    font-size: clamp(1.22rem, 1.85vw, 1.8rem);
  }
}

@media (min-width: 1181px) {
  .section-heading,
  .phase-header {
    display: grid;
    grid-template-columns: minmax(108px, 0.1fr) minmax(0, 0.9fr);
    gap: clamp(30px, 3.2vw, 54px);
    align-items: end;
  }

  .phase-section .phase-header {
    width: 100%;
  }

  .section-heading .eyebrow,
  .phase-header .eyebrow {
    margin-bottom: 0;
  }

  .headline-switch .headline-mobile-copy {
    display: none;
  }

  .headline-switch .headline-desktop-copy {
    display: block;
  }

  .section-heading h2,
  .phase-header h2 {
    max-width: 1080px;
  }

  .section-heading h2,
  .phase-header h2,
  .site-copy h2 {
    font-size: clamp(2.2rem, 3.9vw, 3.5rem);
    line-height: 0.99;
  }

  .site-copy .eyebrow,
  .operator-copy .eyebrow,
  .contact-card .eyebrow,
  .calculator-hero .eyebrow,
  .calculator-panel > span,
  .calculator-output > span {
    margin-bottom: clamp(20px, 2.2vw, 30px);
  }

  .operator-section {
    grid-template-columns: minmax(260px, 0.3fr) minmax(0, 0.7fr);
  }

  .operator-copy h2 {
    max-width: 1120px;
    font-size: clamp(2.15rem, 3.65vw, 4.25rem);
    line-height: 1.02;
  }

  .contact-card {
    width: min(1240px, calc(100vw - 500px));
    padding-top: clamp(18px, 2.4vw, 32px);
  }

  .contact-card h2 {
    max-width: 1240px;
    font-size: clamp(2.15rem, 3.85vw, 4.35rem);
    line-height: 1.02;
  }

  .contact-card p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(0.98rem, 1.16vw, 1.12rem);
  }
}

@media (min-width: 1181px) and (max-height: 940px) {
  .contact-stage {
    padding: clamp(92px, 11vh, 118px) 32px clamp(68px, 8vh, 90px);
  }

  .contact-meta {
    top: clamp(126px, 15vh, 154px);
  }

  .contact-card {
    width: min(820px, calc(100vw - 470px));
  }

  .contact-card h2 {
    font-size: clamp(1.95rem, 3.05vw, 3.45rem);
    max-width: min(820px, 66vw);
    line-height: 1.02;
  }

  .contact-card p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 14px;
    font-size: clamp(0.92rem, 1vw, 1.04rem);
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero-section {
    min-height: max(720px, 100svh);
    padding-bottom: 18px;
  }

  .hero-inner {
    padding-top: clamp(104px, 12svh, 128px);
    padding-bottom: 22px;
  }

  h1 {
    font-size: clamp(3rem, 5.15vw, 5.35rem);
    max-width: min(980px, 72vw);
    margin-bottom: 14px;
    line-height: 0.96;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy {
    max-width: 600px;
    margin-bottom: 18px;
    font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
  }

  .hero-stats article {
    padding: 12px;
  }

  .hero-stats span,
  .hero-stats small {
    font-size: 0.68rem;
  }

  .hero-stats strong {
    font-size: clamp(1.08rem, 1.65vw, 1.48rem);
  }
}

@media (min-width: 821px) and (max-height: 780px) {
  .phase-journey {
    height: auto;
    min-height: 0;
  }

  .phase-journey-sticky {
    position: relative;
    width: auto;
    height: auto;
    margin-left: 0;
    overflow: visible;
    padding: 0;
  }

  .phase-journey .phase-track {
    display: grid;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    transform: none !important;
    contain: none;
  }

  .phase-journey .phase-panel {
    width: 100%;
    min-height: 430px;
  }

  .phase-overview-panel {
    grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  }

  .phase-panel-copy,
  .phase-detail-intro {
    padding: clamp(18px, 2vw, 26px);
  }

  .contact-stage {
    padding: clamp(96px, 13vh, 128px) 32px clamp(76px, 10vh, 102px);
  }

  .contact-card h2 {
    font-size: clamp(2rem, 4.35vw, 4.6rem);
  }

  .contact-card p:not(.eyebrow) {
    margin-top: 16px;
  }
}

@media (min-width: 821px) and (max-width: 980px) {
  .phase-overview-panel {
    grid-template-columns: 1fr;
  }

  .phase-overview-media {
    height: 360px;
  }
}

@media (min-width: 821px) and (max-height: 920px) {
  .phase-sticky {
    padding: 42px 0 16px;
  }

  .phase-header {
    margin-bottom: 8px;
  }

  .phase-header h2 {
    max-width: 1080px;
    font-size: clamp(2.2rem, 3.9vw, 3.5rem);
    line-height: 0.99;
  }

  .phase-card {
    height: clamp(360px, calc(100svh - 245px), 500px);
    min-height: 360px;
  }

  .phase-copy {
    justify-content: flex-start;
    gap: 10px;
    padding: 18px;
  }

  .phase-copy h3 {
    margin: 8px 0 8px;
    font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  }

  .phase-copy p {
    font-size: 0.77rem;
    line-height: 1.28;
  }

  .phase-note {
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 0.68rem;
    line-height: 1.24;
  }

  .module-cloud {
    gap: 5px;
    margin-top: 8px;
  }

  .module-cloud span {
    min-height: 23px;
    padding: 0 7px;
    font-size: 0.62rem;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .price-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .price-grid > .price-card:not(.wide):not(.signature-card) {
    grid-column: span 2;
  }

  .price-card.signature-card {
    grid-column: span 3;
  }
}

@media (min-width: 821px) and (max-width: 980px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid > .price-card:not(.wide):not(.signature-card),
  .price-card.signature-card {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 188px;
  }

  .scene {
    scroll-margin-top: 188px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    width: min(calc(100% - 20px), 1360px);
    gap: 8px;
    padding: 8px;
  }

  .brand-lockup {
    justify-self: start;
  }

  .menu-toggle {
    justify-self: center;
  }

  .header-credit {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    justify-items: center;
    min-width: 104px;
    padding: 8px 9px;
  }

  .header-credit span {
    font-size: 0.52rem;
  }

  .header-credit img {
    width: 88px;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 0.88rem;
    line-height: 1.02;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    gap: 3px;
    overflow: hidden;
    max-height: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 260ms ease, opacity 200ms ease, padding 260ms ease;
  }

  .site-header.is-menu-open .site-nav {
    max-height: 260px;
    padding-top: 8px;
    padding-bottom: 1px;
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav a,
  .header-action {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-inner,
  .section,
  .phase-header {
    width: min(calc(100% - 28px), var(--max));
  }

  .calculator-hero {
    min-height: auto;
    padding-top: 178px;
  }

  .calculator-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.75rem);
    line-height: 0.98;
  }

  .calculator-field-grid {
    grid-template-columns: 1fr;
  }

  .calculator-panel-total {
    align-items: start;
  }

  .calculator-panel-total strong {
    text-align: left;
  }

  .calculator-group-head {
    display: grid;
    gap: 6px;
  }

  .calculator-result-list header,
  .calculator-detail-list div {
    display: grid;
    gap: 4px;
  }

  .calculator-detail-list dd {
    text-align: left;
  }

  .revenue-calculator-button {
    width: 100%;
    min-width: 0;
  }

  .hero-inner {
    padding: 180px 0 28px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.15rem);
    line-height: 1;
  }

  h1,
  h2,
  h3,
  .metric strong,
  .stat strong,
  .phase-card h3,
  .area-card h3,
  .price-card h3 {
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    text-wrap: balance;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading h2,
  .phase-header h2,
  .site-copy h2,
  .operator-copy h2,
  .contact-card h2 {
    font-size: clamp(1.75rem, 8.7vw, 2.85rem);
    line-height: 1.04;
  }

  .principle-grid,
  .site-facts,
  .finance-metrics,
  .revenue-notes,
  .operator-proof,
  .operator-roles,
  .alliance-panel,
  .price-grid,
  .phase-gallery,
  .stay-grid,
  .atlas-grid,
  .atlas-folder-grid {
    grid-template-columns: 1fr;
  }

  .alliance-panel {
    min-height: clamp(300px, 84vw, 420px);
    overflow: visible;
    padding: 58px 12px 44px;
  }

  .alliance-panel::before {
    display: none;
  }

  .alliance-panel::after {
    display: none;
  }

  .alliance-statement {
    max-width: 100%;
    margin-left: 0;
  }

  .alliance-statement blockquote {
    font-size: clamp(1.38rem, 7.1vw, 2.18rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .atlas-folder-grid {
    grid-template-columns: repeat(8, minmax(108px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 52px;
  }

  .atlas-filter-head {
    display: grid;
    gap: 8px;
  }

  .animated-folder {
    min-height: 148px;
    padding: 0 0 20px;
  }

  .folder-stage {
    margin-top: 0;
    margin-bottom: 10px;
    transform: none;
  }

  .animated-folder .folder-glow {
    opacity: 0.1;
  }

  .animated-folder .folder-back {
    transform: translateX(-50%) rotateX(-10deg);
  }

  .animated-folder .folder-tab {
    transform: rotateX(-18deg) translateY(-1px);
  }

  .animated-folder .folder-front,
  .animated-folder .folder-shine {
    transform: translateX(-50%) rotateX(18deg) translateY(5px);
  }

  .animated-folder .folder-projects img {
    opacity: 1;
  }

  .animated-folder .folder-projects {
    z-index: 40;
  }

  .animated-folder .folder-projects img:nth-child(1) {
    transform: translate(-24px, -38px) rotate(-10deg) scale(0.92);
  }

  .animated-folder .folder-projects img:nth-child(2) {
    transform: translate(0, -42px) rotate(0deg) scale(0.92);
  }

  .animated-folder .folder-projects img:nth-child(3) {
    transform: translate(24px, -38px) rotate(10deg) scale(0.92);
  }

  .phase-lane-main {
    padding: 18px;
  }

  .phase-journey {
    height: auto;
    min-height: 0;
  }

  .phase-journey-sticky {
    position: relative;
    width: auto;
    height: auto;
    margin-left: 0;
    overflow: visible;
    padding: 0;
  }

  .phase-panel,
  .phase-overview-panel,
  .phase-detail-panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .phase-overview-media {
    height: 360px;
  }

  .phase-detail-cards {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .phase-detail-cards img {
    height: 240px;
  }

  .phase-side-card {
    display: flex;
  }

  .phase-side-card img,
  .phase-gallery figure {
    min-height: 0;
    height: 260px;
  }

  .phase-scroll {
    height: auto;
    min-height: 0;
  }

  .phase-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 96px 0;
  }

  .phase-track {
    display: grid;
    width: min(calc(100% - 28px), var(--max));
    padding-left: 0;
    margin: 0 auto;
    transform: none !important;
  }

  .phase-card {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .phase-copy {
    overflow: visible;
    justify-content: flex-start;
    gap: 16px;
  }

  .phase-image::after {
    background: linear-gradient(180deg, rgba(7, 20, 18, 0), rgba(7, 20, 18, 0.82));
  }

  .phase-image,
  .story-visual,
  .image-card img {
    min-height: 0;
    height: 340px;
  }

  .capex-bars div,
  .chart-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .finance-terms {
    grid-template-columns: 1fr;
  }

  .capex-bars i,
  .chart-row i {
    width: var(--w);
    min-width: 64px;
  }

  .story-steps article.is-active {
    transform: none;
  }

  .story-scroll {
    min-height: 430svh;
  }

  .story-scroll .story-split {
    display: block;
    position: sticky;
    top: 96px;
    min-height: calc(100svh - 108px);
  }

  .story-scroll .story-visual {
    height: 238px;
    min-height: 0;
    margin-bottom: 0;
  }

  .story-scroll .story-steps {
    min-height: 292px;
  }

  .story-scroll .story-steps article {
    min-height: 292px;
    padding: 16px;
  }

  .app-build-card {
    margin-top: 14px;
    padding: 12px;
  }

  .app-build-card div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .court-rate-panel {
    padding: 20px;
  }

  .court-rates {
    grid-template-columns: 1fr;
  }

  .membership-table {
    min-width: 940px;
  }

  .membership-table .feature-head,
  .membership-table tbody th {
    width: 170px;
    min-width: 170px;
  }

  .price-card.wide,
  .price-card.signature-card,
  .atlas-grid figure.wide,
  .atlas-grid figure.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .price-lines span {
    display: grid;
  }

  .atlas-grid {
    display: grid;
    grid-auto-columns: minmax(238px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(150px, 34vw));
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 2px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(245, 241, 230, 0.26) transparent;
  }

  .atlas-grid figure {
    height: 100%;
    scroll-snap-align: start;
  }

  .atlas-lightbox {
    padding: 18px 14px;
  }

  .atlas-lightbox img {
    max-height: 72svh;
  }

  .atlas-lightbox-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .atlas-lightbox-prev {
    left: 18px;
  }

  .atlas-lightbox-next {
    right: 18px;
  }

  .operator-media img {
    min-height: 420px;
  }

  .contact-section {
    min-height: 100svh;
  }

  .contact-stage {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 132px 14px 126px;
  }

  .contact-meta {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    justify-items: center;
    width: min(100%, 380px);
    max-width: 380px;
    margin: 0 auto;
    padding: 14px 16px;
    text-align: center;
  }

  .contact-card {
    order: 2;
    width: min(100%, 620px);
    padding: 0;
    text-align: left;
  }

  .contact-card h2 {
    max-width: 560px;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(1.74rem, 6.6vw, 2.85rem);
    line-height: 1.02;
  }

  .contact-card p:not(.eyebrow) {
    max-width: 420px;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(1rem, 4.4vw, 1.18rem);
  }

  .clarum-credit {
    right: 14px;
    left: auto;
    bottom: 18px;
    gap: 8px;
    max-width: calc(100% - 28px);
  }

  .clarum-credit span {
    font-size: 0.72rem;
  }

  .clarum-credit img {
    width: 86px;
  }
}

@media (min-width: 561px) and (max-width: 820px) {
  .phase-journey {
    height: 440svh;
    min-height: 3000px;
  }

  .phase-journey-sticky {
    position: sticky;
    top: 0;
    display: flex;
    width: 100vw;
    height: 100svh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 138px 0 26px;
  }

  .phase-journey .phase-track {
    display: flex;
    width: max-content;
    height: 100%;
    padding-left: 14px;
    padding-right: 14px;
    margin: 0;
    transform: translate3d(var(--phase-x, 0px), 0, 0) !important;
  }

  .phase-panel,
  .phase-overview-panel,
  .phase-detail-panel {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr;
  }

  .phase-overview-panel {
    grid-template-rows: minmax(250px, 0.54fr) minmax(0, 0.46fr);
  }

  .phase-overview-media {
    height: auto;
  }

  .phase-panel-copy,
  .phase-detail-intro {
    padding: 18px;
  }

  .phase-detail-intro {
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .phase-panel-copy h3,
  .phase-detail-intro h3 {
    font-size: clamp(1.38rem, 5.4vw, 2.15rem);
  }

  .phase-panel-copy p,
  .phase-detail-intro p {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .phase-panel-copy .module-cloud {
    gap: 6px;
    margin-top: 12px;
  }

  .phase-detail-panel {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .phase-detail-cards {
    overflow: hidden;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .phase-detail-cards article {
    grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
    min-height: 0;
    overflow: hidden;
  }

  .phase-detail-cards img {
    height: 100%;
  }

  .phase-detail-cards article > div {
    min-height: 0;
    overflow: hidden;
    gap: 4px;
    padding: 9px 10px;
  }

  .phase-detail-cards h4 {
    font-size: 0.92rem;
  }

  .phase-detail-cards p {
    font-size: 0.68rem;
    line-height: 1.24;
  }
}

@media (hover: none) {
  .folder-projects {
    z-index: 40;
  }

  .folder-glow {
    opacity: 0.1;
  }

  .folder-back {
    transform: translateX(-50%) rotateX(-10deg);
  }

  .folder-tab {
    transform: rotateX(-18deg) translateY(-1px);
  }

  .folder-front,
  .folder-shine {
    transform: translateX(-50%) rotateX(18deg) translateY(5px);
  }

  .folder-projects img {
    opacity: 1;
  }

  .folder-projects img:nth-child(1) {
    transform: translate(-24px, -38px) rotate(-10deg) scale(0.92);
  }

  .folder-projects img:nth-child(2) {
    transform: translate(0, -42px) rotate(0deg) scale(0.92);
  }

  .folder-projects img:nth-child(3) {
    transform: translate(24px, -38px) rotate(10deg) scale(0.92);
  }
}

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

  .phase-track {
    transform: none !important;
  }
}
