@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Inter:wght@400;500;700;800;900&family=Unbounded:wght@600;700;800&display=swap");

:root {
  --bg: #060a12;
  --bg-2: #0b1523;
  --panel: rgba(8, 15, 28, 0.72);
  --panel-strong: rgba(7, 13, 24, 0.86);
  --gold: #e2a93d;
  --gold-2: #ffe19a;
  --cream: #fff7e5;
  --muted: #eee0c5;
  --muted-2: #b8ad96;
  --blue: #79d8ff;
  --blue-soft: rgba(121, 216, 255, 0.16);
  --line: rgba(255, 225, 154, 0.42);
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

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

#top,
#rooms,
#technology,
#courtyard,
#presale {
  scroll-margin-top: 116px;
}

#rooms {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 225, 154, 0.18), transparent 28rem),
    radial-gradient(circle at 20% 42%, rgba(121, 216, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #08101c 0%, #060a12 38%, #090f18 100%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 225, 154, 0.16), transparent 18rem),
    linear-gradient(180deg, #02050b, #050914 54%, #02050b);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 225, 154, 0.22);
  border-radius: var(--radius-xl);
  opacity: 0;
  animation: loaderFrame 1.4s ease forwards 0.2s;
}

.loader-glow {
  position: absolute;
  width: min(380px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 225, 154, 0.28), rgba(226, 169, 61, 0.08) 44%, transparent 68%);
  filter: blur(10px);
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.page-loader img {
  position: relative;
  z-index: 1;
  width: min(380px, 68vw);
  max-height: 48vh;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 44px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 34px rgba(255, 225, 154, 0.26));
  opacity: 0;
  transform: translateY(14px) scale(0.95);
  animation: loaderLogo 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.18s;
}

.page-loader span {
  position: absolute;
  bottom: clamp(2.2rem, 8vh, 5rem);
  color: rgba(255, 225, 154, 0.78);
  font: 900 0.72rem/1 Inter, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderText 0.9s ease forwards 0.7s;
}

body.loader-complete .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderLogo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderText {
  to {
    opacity: 1;
  }
}

@keyframes loaderPulse {
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

@keyframes loaderFrame {
  to {
    opacity: 1;
    inset: 8%;
  }
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--gold-2);
  color: #05070a;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 14px;
  left: 50%;
  width: min(var(--max), calc(100% - 48px));
  transform: translateX(-50%);
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(255, 225, 154, 0.34);
  border-radius: 999px;
  background: rgba(6, 12, 22, 0.38);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px) saturate(145%);
  transition: min-height 0.25s ease, padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 44px;
  padding-block: 0.34rem;
  background: rgba(6, 12, 22, 0.68);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 225, 154, 0.58);
}

.brand {
  width: min(138px, 18vw);
}

.brand img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font: 800 0.78rem/1 Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 242, 214, 0.86);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-2);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.66rem 1.24rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 900 0.88rem/1 Inter, sans-serif;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cta,
.btn-primary {
  color: #070707;
  background:
    linear-gradient(180deg, rgba(255, 226, 154, 0.88), transparent 38%),
    linear-gradient(135deg, #ffd974, #d39532 70%);
  box-shadow: 0 18px 50px rgba(226, 169, 61, 0.22);
}

.btn-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 225, 154, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  max-width: none;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 1.15rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("images/tlp/hero-desert.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(1.12) contrast(1.08) saturate(1.08);
  transform: scale(1.008);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 67% 48%, rgba(255, 217, 116, 0.28), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 15, 0.78) 0%, rgba(3, 7, 15, 0.44) 28%, rgba(3, 7, 15, 0.08) 55%, rgba(3, 7, 15, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 7, 15, 0.08), transparent 46%, rgba(3, 7, 15, 0.52) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 20%;
  width: min(320px, 24vw);
  height: 82%;
  transform: rotate(8deg);
  background:
    linear-gradient(180deg, transparent, rgba(255, 225, 154, 0.24) 38%, rgba(255, 184, 70, 0.16) 56%, transparent);
  filter: blur(18px);
  opacity: 0.78;
}

.hero-content {
  max-width: 560px;
  padding-top: clamp(12rem, 24vh, 16rem);
  position: relative;
}

.hero-wordmark {
  width: min(170px, 42vw);
  max-height: 104px;
  margin: 0 0 0.95rem;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(255, 225, 154, 0.16));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font: 900 0.84rem/1 Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tlp-title {
  width: fit-content;
  margin: 0 0 2rem;
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 225, 154, 0.12);
}

.tlp-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22em;
  width: min(7.2em, 100%);
  height: 0.045em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), rgba(121, 216, 255, 0.62));
  box-shadow: 0 0 24px rgba(255, 225, 154, 0.2);
}

.title-line {
  display: block;
  position: relative;
}


.title-line-bottom {
  margin-top: -0.025em;
}

.hero-subtitle {
  max-width: 540px;
  margin: 0;
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.section-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-system {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 44%;
  z-index: 2;
  display: grid;
  width: min(260px, 21vw);
  transform: translateY(-28%);
  border-left: 1px solid rgba(255, 225, 154, 0.34);
  background: linear-gradient(90deg, rgba(7, 13, 24, 0.18), transparent);
  backdrop-filter: blur(8px);
}

.hero-system article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.28rem;
  padding: 0.95rem 0 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(255, 225, 154, 0.18);
  color: var(--cream);
}

.hero-system span,
.hero-system strong {
  font: 800 0.78rem/1.25 Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-system span {
  color: rgba(238, 224, 197, 0.86);
  font-size: 0.68rem;
}

.hero-system strong {
  color: var(--gold-2);
}

.hero-stat-panel {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 5.7rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(650px, calc(100% - 48px));
  border: 1px solid rgba(255, 225, 154, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(6, 11, 20, 0.34);
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(125%);
}

.hero-stat-panel div {
  padding: 1rem 1.2rem;
  text-align: center;
}

.hero-stat-panel div:not(:last-child) {
  border-right: 1px solid rgba(255, 225, 154, 0.25);
}

.hero-stat-panel strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--gold-2);
  line-height: 0.98;
}

.hero-stat-panel span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.experience-ticker {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: min(var(--max), calc(100% - 48px));
  transform: translateX(-50%);
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 225, 154, 0.58);
  border-radius: 14px;
  background: rgba(8, 14, 26, 0.38);
  color: var(--gold-2);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(145%);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

.experience-ticker span:not(:last-child)::after {
  content: "◇";
  margin-left: 1rem;
  color: var(--gold-2);
}

.experience-ticker span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  border: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.intro,
.rooms,
.technology,
.courtyard,
.presale {
  padding-block: clamp(5.5rem, 9vw, 8rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.intro-media {
  position: relative;
  min-height: clamp(420px, 52vw, 620px);
  margin: 0;
  border: 1px solid rgba(255, 225, 154, 0.42);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050914;
  box-shadow: var(--shadow);
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 15, 0.06), rgba(2, 7, 15, 0.36)),
    radial-gradient(circle at 72% 28%, rgba(255, 225, 154, 0.18), transparent 18rem);
  pointer-events: none;
}

.intro-media picture,
.intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.intro-media img {
  object-fit: cover;
  filter: brightness(1.12) contrast(1.08) saturate(1.14);
}

.intro-copy {
  max-width: 650px;
}

.intro-copy h2,
.rooms-heading h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.45rem, 4.4vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy > p:not(.eyebrow),
.rooms-heading p:not(.eyebrow) {
  margin: 1.3rem 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.95rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 225, 154, 0.24);
}

.feature-list span {
  grid-row: span 2;
  color: var(--gold-2);
  font: 900 0.74rem/1 Inter, sans-serif;
  letter-spacing: 0.12em;
}

.feature-list h3 {
  margin: 0;
  color: var(--cream);
  font: 900 1.05rem/1.1 Inter, sans-serif;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.concept-lead-copy h3 {
  margin: 0;
  max-width: 780px;
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.65rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading h2 {
  max-width: 720px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  font-weight: 900;
  line-height: 1;
}

.section-lead {
  margin: 0;
  max-width: 610px;
  font-size: 1.15rem;
}

.tech-grid,
.presale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.tech-grid article,
.presale-card {
  border: 1px solid rgba(255, 225, 154, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    linear-gradient(145deg, rgba(255, 225, 154, 0.045), rgba(121, 216, 255, 0.035)),
    rgba(9, 16, 30, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.tech-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-2);
  font: 900 0.72rem/1 Inter, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tech-grid h3,
.presale-card h3,
.concept-card h3 {
  margin: 0 0 0.72rem;
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.tech-grid h3,
.presale-card h3 {
  font-size: 1.95rem;
}

.tech-grid p,
.presale-card li,
.guideline-note {
  color: var(--muted);
  line-height: 1.58;
}

.tech-grid p {
  margin: 0;
}

.rooms {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 34px));
  margin-top: clamp(1.1rem, 2.4vw, 2rem);
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 225, 154, 0.48);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 225, 154, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(5, 10, 20, 0.82);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rooms::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 225, 154, 0.16), transparent 22rem),
    radial-gradient(circle at 90% 42%, rgba(121, 216, 255, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(6, 11, 20, 0.76), rgba(6, 11, 20, 0.5)),
    url("images/tlp/tlp-arch-clean-wide.webp") center/cover no-repeat;
  opacity: 0.62;
}

.rooms::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 225, 154, 0.22);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.rooms-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: center;
  max-width: 1160px;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.rooms-heading h2 {
  max-width: 700px;
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.95rem, 3vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.rooms-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.rooms-note {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 225, 154, 0.34);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.09), rgba(121, 216, 255, 0.04)),
    rgba(5, 10, 20, 0.52);
}

.rooms-note span {
  color: var(--gold-2);
  font: 900 0.82rem/1.25 Inter, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-kicker {
  margin: 0 0 0.8rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.concept-lead {
  position: relative;
  min-height: 620px;
  margin-top: 3rem;
  border: 1px solid rgba(255, 225, 154, 0.58);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050914;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.concept-lead img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: brightness(1.18) contrast(1.13) saturate(1.2);
}

.concept-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.64), rgba(4, 8, 18, 0.18) 52%, rgba(4, 8, 18, 0.06)),
    linear-gradient(180deg, rgba(4, 8, 18, 0.02) 30%, rgba(4, 8, 18, 0.52) 100%);
}

.concept-lead-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.4rem, 4vw, 3.4rem);
  bottom: clamp(1.4rem, 4vw, 3.4rem);
  max-width: 560px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 225, 154, 0.45);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.14), rgba(121, 216, 255, 0.075)),
    rgba(5, 9, 20, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px) saturate(135%);
}

.concept-lead-copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
}

.concept-lead-copy p,
.concept-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.spec-row span {
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(255, 225, 154, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.05rem, 2vw, 1.55rem);
  margin-top: 1.45rem;
}

.concept-card {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 225, 154, 0.48);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #050914;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.concept-card-wide {
  grid-column: 1 / -1;
  min-height: 560px;
}

.concept-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.17) contrast(1.13) saturate(1.18);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.concept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 26%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
}

.concept-card:hover img {
  transform: scale(1.035);
  filter: brightness(1.23) contrast(1.14) saturate(1.2);
}

.concept-card div {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  max-width: 560px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
}

.concept-card-wide div {
  max-width: 690px;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 225, 154, 0.38);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.09), rgba(121, 216, 255, 0.045)),
    rgba(4, 8, 18, 0.58);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px) saturate(120%);
}

.concept-card h3 {
  margin: 0 0 0.58rem;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
}

.room-carousel {
  margin-top: 3rem;
}

.carousel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-topline p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 0.7rem;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 225, 154, 0.52);
  border-radius: 999px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.12), rgba(121, 216, 255, 0.06)),
    rgba(8, 14, 26, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-2);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.18), rgba(121, 216, 255, 0.08)),
    rgba(8, 14, 26, 0.86);
}

.room-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 34vw, 420px);
  gap: clamp(0.85rem, 1.35vw, 1.1rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scroll-padding-inline: 0.2rem;
  padding: 0.25rem 0.2rem 1.15rem;
  scrollbar-width: none;
}

.room-track::-webkit-scrollbar {
  display: none;
}

.room-track:focus {
  outline: none;
}

.room-track:focus-visible {
  outline: 2px solid rgba(255, 225, 154, 0.6);
  outline-offset: 8px;
}

.room-slide {
  position: relative;
  min-height: clamp(380px, 48vw, 560px);
  border: 1px solid rgba(255, 225, 154, 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-snap-align: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 225, 154, 0.11), transparent 17rem),
    #050914;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.room-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) contrast(1.1) saturate(1.14);
}

.room-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.room-slide-copy {
  position: absolute;
  z-index: 2;
  left: 0.8rem;
  right: auto;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.44rem 0.62rem;
  border: 1px solid rgba(255, 225, 154, 0.36);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.1), rgba(121, 216, 255, 0.04)),
    rgba(4, 8, 18, 0.58);
  backdrop-filter: blur(7px) saturate(116%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.74);
}

.room-slide-copy .room-kicker {
  display: none;
}

.room-slide-copy h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.76rem, 1.08vw, 0.94rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.room-slide-copy p {
  display: none;
}

.tech-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.7rem;
}

.tech-grid article {
  position: relative;
  min-height: 230px;
  padding: 2rem;
  overflow: hidden;
}

.tech-grid article::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 225, 154, 0.22), transparent 58%),
    radial-gradient(circle at 30% 30%, rgba(121, 216, 255, 0.16), transparent 64%);
}

.tech-grid h3 {
  font-size: 2.25rem;
}

.guideline-note {
  margin-top: 1.3rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(255, 225, 154, 0.44);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(255, 225, 154, 0.11), rgba(121, 216, 255, 0.045)),
  rgba(8, 14, 26, 0.68);
  backdrop-filter: blur(8px);
}

.technology {
  position: relative;
}

.tech-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  max-width: 1120px;
}

.tech-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.95rem, 3vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.tech-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.tech-stack article {
  position: relative;
  min-height: 190px;
  padding: clamp(1.1rem, 1.8vw, 1.55rem);
  border: 1px solid rgba(255, 225, 154, 0.32);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 225, 154, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 14, 26, 0.74);
}

.tech-stack span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 225, 154, 0.48);
  border-radius: 999px;
  color: var(--gold-2);
  font: 900 0.78rem/1 Inter, sans-serif;
}

.tech-stack h3 {
  margin: 0 0 0.75rem;
  color: var(--cream);
  font: 900 clamp(1.15rem, 1.8vw, 1.55rem)/1.08 Inter, sans-serif;
  letter-spacing: 0;
}

.tech-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.courtyard-panel {
  position: relative;
  min-height: clamp(420px, 45vw, 620px);
  margin-top: 2.8rem;
  border: 1px solid rgba(255, 225, 154, 0.56);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.courtyard-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) contrast(1.12) saturate(1.18);
}

.courtyard-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
}

.courtyard-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.65fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 225, 154, 0.52);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.11), rgba(121, 216, 255, 0.055)),
    rgba(8, 14, 26, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) saturate(130%);
}

.courtyard-copy h3 {
  margin: 0 0 0.9rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.courtyard-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
  margin-top: 0;
}

.badge-cloud span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 225, 154, 0.5);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.78rem;
  font-weight: 800;
}

.presale {
  position: relative;
}

.presale::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 50%;
  z-index: -1;
  width: min(740px, 80vw);
  aspect-ratio: 1;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(255, 225, 154, 0.14), transparent 58%),
    radial-gradient(circle at 44% 56%, rgba(121, 216, 255, 0.08), transparent 68%);
}

.registration-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: 2.2rem;
  padding: clamp(0.75rem, 1.6vw, 1rem);
  border: 1px solid rgba(255, 225, 154, 0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.06), rgba(121, 216, 255, 0.035)),
    rgba(8, 14, 26, 0.58);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.registration-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 154, 0.24);
  border-radius: calc(var(--radius-lg) - 6px);
  background: rgba(6, 12, 22, 0.6);
}

.registration-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.18) contrast(1.03);
}

.registration-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 12, 22, 0.78), transparent 42%),
    radial-gradient(circle at 72% 16%, rgba(255, 225, 154, 0.18), transparent 30%);
}

.registration-visual figcaption {
  position: absolute;
  left: clamp(1.1rem, 3vw, 2rem);
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 1;
}

.registration-visual span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.registration-visual strong {
  display: block;
  max-width: 12em;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1;
  color: var(--cream);
}

.presale-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.95rem;
  align-content: start;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 225, 154, 0.22);
  border-radius: calc(var(--radius-lg) - 6px);
  background:
    linear-gradient(160deg, rgba(255, 225, 154, 0.08), transparent 42%),
    rgba(8, 14, 26, 0.82);
  backdrop-filter: blur(12px) saturate(130%);
}

.form-intro {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.presale-form > .form-intro {
  grid-column: 1 / -1;
}

.form-intro h3 {
  margin: 0.2rem 0 0.55rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
  color: var(--cream);
}

.form-intro p:not(.eyebrow) {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.presale-form > div {
  grid-column: span 1;
}

.presale-form > div:nth-child(3) {
  grid-column: 1 / -1;
}

.interest-field {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.presale-form button {
  grid-column: 1 / -1;
  margin-top: 0.15rem;
  min-height: 54px;
}

.consent-field {
  grid-column: 1 / -1;
}

.presale-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.interest-field legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.interest-options label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 225, 154, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.interest-options input {
  width: 15px;
  min-width: 15px;
  min-height: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
  accent-color: var(--gold-2);
}

.interest-options label:has(input:checked) {
  border-color: rgba(255, 225, 154, 0.72);
  background: rgba(255, 225, 154, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 225, 154, 0.08);
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.05rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.consent-field input {
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0.16rem 0 0;
  padding: 0;
  flex: 0 0 auto;
  border-radius: 3px;
  accent-color: var(--gold-2);
}

.consent-field a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.presale-form input:not([type="radio"]):not([type="checkbox"]),
.presale-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 225, 154, 0.36);
  border-radius: 12px;
  padding: 0 1rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}

.presale-form .consent-field input {
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  height: 16px;
  border-radius: 3px;
  padding: 0;
}

.presale-form input:not([type="radio"]):not([type="checkbox"]):focus,
.presale-form select:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(255, 225, 154, 0.14);
}

.form-message {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.form-message.is-success {
  color: var(--gold-2);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 0.8fr);
  align-items: center;
  gap: 2rem;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 2.4rem 0 3rem;
  border-top: 1px solid rgba(246, 207, 121, 0.22);
  color: var(--muted);
}

.footer-brand img {
  max-width: 170px;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.75rem;
}

.site-footer p {
  margin: 0;
}

.footer-partners {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 225, 154, 0.26);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 225, 154, 0.06), rgba(121, 216, 255, 0.035)),
    rgba(8, 14, 26, 0.48);
}

.footer-partners > span {
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-partners div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.footer-partners img {
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  white-space: nowrap;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.partner-logo img {
  width: 40px;
  max-width: none;
  max-height: 36px;
  object-fit: contain;
  filter: none;
}

.partner-logo strong {
  color: var(--cream);
  font-family: "Unbounded", Inter, sans-serif;
  font-size: clamp(0.9rem, 1.45vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.015em;
}

.partner-logo-muslimi {
  width: min(180px, 34vw);
  max-height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 5rem) 1rem;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 0%, rgba(226, 169, 61, 0.14), transparent 32rem),
    linear-gradient(135deg, rgba(6, 12, 22, 0.98), rgba(8, 18, 25, 0.96));
}

.legal-shell {
  width: min(780px, 100%);
  margin: 0 auto;
}

.legal-logo {
  width: 150px;
  margin-bottom: 2rem;
}

.legal-page h1 {
  margin: 0 0 1.6rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: 0.96;
  color: var(--cream);
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin: 0 0 0.9rem;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-back {
  display: inline-flex;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 225, 154, 0.18);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .site-nav {
    position: fixed;
    inset: 82px 24px auto 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(3, 8, 17, 0.96);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
    border-radius: 16px;
  }

  .site-nav a:hover {
    background: rgba(246, 207, 121, 0.08);
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand {
    width: min(132px, 28vw);
  }

  .hero {
    min-height: 850px;
    padding-bottom: 1.6rem;
  }

  .hero-system {
    display: none;
  }

  .hero-stat-panel {
    left: 24px;
    right: 24px;
    bottom: 5.4rem;
    width: auto;
  }

  .experience-ticker {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
    margin-top: 0;
    transform: none;
  }

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

  .rooms-heading {
    grid-template-columns: 1fr;
  }

  .rooms-heading p:not(.eyebrow) {
    margin-top: 0;
  }

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

  .intro-media {
    min-height: 460px;
  }

  .tech-copy {
    grid-template-columns: 1fr;
  }

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

  .courtyard-copy {
    grid-template-columns: 1fr;
  }

  .badge-cloud {
    justify-content: flex-start;
  }

  .concept-gallery,
  .registration-panel,
  .presale-form {
    grid-template-columns: 1fr;
  }

  .registration-visual {
    min-height: 420px;
  }

  .concept-lead,
  .concept-lead img {
    min-height: 520px;
  }

  .concept-card,
  .concept-card-wide {
    min-height: 460px;
  }

  .room-track {
    grid-auto-columns: minmax(260px, 48vw);
  }

  .room-slide {
    min-height: 440px;
  }

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

  .presale-form {
    align-items: stretch;
  }

  .presale-form > div,
  .presale-form > div:nth-child(3),
  .presale-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 12px;
    min-height: 48px;
    padding: 0.42rem 0.7rem;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    max-height: 38px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding-inline: 14px;
    padding-bottom: 1rem;
  }

  .hero-content {
    max-width: 460px;
    padding-top: 140px;
  }

  .hero-wordmark {
    display: block;
    width: min(132px, 42vw);
    max-height: 82px;
  }

  .tlp-title {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.6rem);
    margin-bottom: 1.45rem;
  }

  .title-line {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0.7rem;
    max-width: 100%;
    margin-top: 1.15rem;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0.72rem 0.75rem;
    font-size: 0.86rem;
  }

  .hero-stat-panel {
    left: 14px;
    right: 14px;
    bottom: 5.2rem;
    width: auto;
  }

  .hero-stat-panel div {
    padding: 0.82rem 0.6rem;
  }

  .hero-stat-panel strong {
    font-size: 1.75rem;
  }

  .hero-stat-panel span {
    font-size: 0.55rem;
  }

  .experience-ticker {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0.8rem 0.95rem;
    font-size: 0.72rem;
  }

  .experience-ticker::-webkit-scrollbar {
    display: none;
  }

  .intro {
    padding-block: 4.2rem;
  }

  .intro-media {
    min-height: 330px;
    border-radius: var(--radius-lg);
  }

  .intro-copy h2,
  .rooms-heading h2 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.02;
  }

  .intro-copy > p:not(.eyebrow),
  .rooms-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .tech-copy h2 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .tech-stack article {
    min-height: 0;
  }

  .feature-list {
    margin-top: 1.4rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .concept-lead-copy h3 {
    font-size: clamp(2rem, 8.7vw, 2.65rem);
  }

  .concept-lead {
    min-height: auto;
  }

  .concept-lead img {
    position: relative;
    height: auto;
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .concept-lead-copy {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -3rem 1rem 1rem;
    padding: 1.25rem;
  }

  .concept-card,
  .concept-card-wide {
    min-height: 430px;
  }

  .concept-card h3 {
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
  }

  .carousel-topline {
    align-items: flex-start;
  }

  .room-track {
    grid-auto-columns: minmax(250px, 76vw);
    gap: 0.85rem;
  }

  .room-slide {
    min-height: 390px;
  }

  .room-slide-copy h3 {
    font-size: clamp(0.74rem, 3.2vw, 0.9rem);
  }

  .room-slide-copy p:not(.room-kicker) {
    display: none;
  }

  .courtyard-panel {
    min-height: 360px;
  }

  .registration-panel {
    padding: 0.55rem;
  }

  .presale-form {
    padding: 1.15rem;
  }

  .interest-options {
    grid-template-columns: 1fr;
  }

  .interest-options label {
    min-height: 44px;
  }

  .courtyard-copy {
    margin-top: 0.85rem;
    padding: 1.4rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .footer-partners {
    justify-items: flex-start;
    width: 100%;
  }

  .footer-partners div {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
