:root {
  color-scheme: dark;
  --bg: #010302;
  --surface: #070a09;
  --surface-raised: #0d1110;
  --surface-soft: #111614;
  --ink: #fbfff7;
  --muted: #9fa7a0;
  --muted-strong: #d5ddd3;
  --line: rgba(246, 255, 246, 0.12);
  --line-cyan: rgba(88, 217, 255, 0.3);
  --green: #70f25d;
  --green-dark: #34bd3a;
  --green-soft: rgba(112, 242, 93, 0.14);
  --cyan: #58d9ff;
  --cyan-soft: rgba(88, 217, 255, 0.14);
  --champagne: #e7d5ad;
  --champagne-soft: rgba(231, 213, 173, 0.13);
  --night-blue: #06151a;
  --amber: #f0b63e;
  --red: #ff6860;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --site-width: 1080px;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  background:
    radial-gradient(ellipse 125% 72% at 46% -14%, rgba(231, 213, 173, 0.16), transparent 58%),
    radial-gradient(ellipse 95% 74% at 8% 18%, rgba(112, 242, 93, 0.18), transparent 62%),
    radial-gradient(ellipse 88% 78% at 96% 24%, rgba(88, 217, 255, 0.16), transparent 64%),
    radial-gradient(ellipse 116% 82% at 66% 76%, rgba(240, 182, 62, 0.1), transparent 66%),
    linear-gradient(180deg, #06100d 0%, #010302 52%, #010302 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(88, 217, 255, 0.055) 30%, transparent 48%),
    linear-gradient(248deg, transparent 0 26%, rgba(112, 242, 93, 0.05) 42%, transparent 62%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.08), rgba(1, 3, 2, 0.52) 74%, #010302 100%);
  opacity: 0.95;
}

body::after {
  background-image:
    linear-gradient(rgba(251, 255, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 255, 247, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 78%);
  opacity: 0.16;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  overflow: hidden;
}

main.legal-page {
  overflow: visible;
}

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

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.15rem;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
}

h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-weight: 880;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.22rem;
  font-weight: 820;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 32px), var(--site-width));
  min-height: 58px;
  margin: 14px auto 0;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border: 1px solid rgba(246, 255, 246, 0.16);
  border-radius: 999px;
  background: rgba(5, 11, 9, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid var(--cyan);
  background:
    linear-gradient(90deg, transparent 42%, var(--cyan) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, var(--green) 42% 58%, transparent 58%);
  box-shadow:
    0 0 18px rgba(88, 217, 255, 0.28),
    0 0 24px rgba(112, 242, 93, 0.22);
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.9rem;
}

.site-header nav {
  justify-content: center;
}

.site-header nav a,
.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--ink);
}

.site-header nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header nav a[aria-current="page"]::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 0.18rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(112, 242, 93, 0.5);
}

.site-header .button {
  justify-self: end;
  width: max-content;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(231, 213, 173, 0.45);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(231, 213, 173, 0.96), rgba(178, 154, 99, 0.92));
  color: #07100d;
  font-weight: 820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button.secondary {
  background: rgba(88, 217, 255, 0.08);
  color: var(--cyan);
  border-color: var(--line-cyan);
}

.button.ghost {
  background: transparent;
  color: var(--champagne);
  border-color: var(--line);
}

.hero,
.section,
.page-hero,
.legal-page {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 88% 62% at 4% 8%, rgba(112, 242, 93, 0.18), transparent 66%),
    radial-gradient(ellipse 76% 62% at 96% 10%, rgba(88, 217, 255, 0.16), transparent 66%),
    radial-gradient(ellipse 94% 56% at 54% 78%, rgba(231, 213, 173, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(5, 13, 11, 0.58) 0%, rgba(1, 3, 2, 0.96) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 0;
  width: min(calc(100% - 2rem), var(--site-width));
  height: min(34vh, 320px);
  transform: translateX(-50%);
  border: 1px solid rgba(226, 239, 224, 0.16);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.1), rgba(1, 3, 2, 0.76) 72%, #010302 100%),
    url("/assets/nightlife-floorplan-hero-1280.jpg") center 58% / cover no-repeat;
  filter: saturate(1.08) contrast(1.06);
  opacity: 0.44;
}

.hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-width));
  margin-inline: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  align-items: end;
  gap: clamp(1.4rem, 5vw, 4rem);
  min-height: calc(100vh - 90px - clamp(6rem, 14vw, 12rem));
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.lead {
  max-width: 620px;
  color: rgba(251, 255, 247, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 0;
}

.hero-quickbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 680px;
  margin-top: 1rem;
}

.hero-quickbar span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(88, 217, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  padding: 0.36rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 790;
}

.night-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgba(231, 213, 173, 0.24);
  border-radius: 7px;
  background: rgba(1, 3, 2, 0.64);
  backdrop-filter: blur(18px);
  padding: 0.9rem;
}

.night-panel-row,
.night-panel-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.night-panel-row span,
.night-panel-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.night-panel-row strong,
.night-panel-grid b {
  color: var(--champagne);
}

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

.night-panel-grid span {
  border: 1px solid rgba(226, 239, 224, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.58rem;
}

.night-panel-grid b {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.product-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 45%),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-bar strong {
  color: var(--green);
}

.product-screen {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.mock-row,
.mock-table {
  display: grid;
  grid-template-columns: 76px 1fr 72px 86px;
  gap: 0.65rem;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0.5rem 0.65rem;
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.mock-row span:last-child {
  justify-self: end;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 0.18rem 0.46rem;
  font-size: 0.74rem;
  font-weight: 820;
}

.mock-table {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.42rem;
  padding: 0.72rem;
}

.mock-table span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted-strong);
  font-weight: 820;
}

.mock-table .ok {
  border-color: rgba(112, 242, 93, 0.5);
  color: var(--green);
  background: var(--green-soft);
}

.mock-table .warn {
  border-color: rgba(240, 182, 62, 0.55);
  color: var(--amber);
  background: rgba(240, 182, 62, 0.12);
}

.proof-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: var(--site-width);
  margin: 3rem 0 0;
}

.compact-proof {
  align-items: stretch;
}

.hero .proof-grid {
  grid-column: 1 / -1;
}

.proof-grid div,
.metric-grid div,
.callout,
.card-grid article,
.legal-box,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(5, 10, 9, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.proof-grid div {
  background:
    linear-gradient(180deg, rgba(88, 217, 255, 0.045), transparent),
    rgba(255, 255, 255, 0.026);
  backdrop-filter: blur(10px);
}

.proof-grid div,
.metric-grid div {
  padding: 1rem;
}

dt {
  color: var(--ink);
  font-weight: 860;
}

dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 88% 72% at 8% 0%, rgba(88, 217, 255, 0.07), transparent 66%),
    radial-gradient(ellipse 86% 74% at 92% 20%, rgba(112, 242, 93, 0.07), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(1, 3, 2, 0.28));
}

.section:nth-of-type(even) {
  background:
    radial-gradient(ellipse 92% 72% at 92% 4%, rgba(231, 213, 173, 0.08), transparent 66%),
    radial-gradient(ellipse 78% 74% at 4% 32%, rgba(112, 242, 93, 0.075), transparent 64%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.18), rgba(255, 255, 255, 0.014));
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(88, 217, 255, 0.035) 42%, transparent 64%),
    linear-gradient(248deg, transparent 0 30%, rgba(112, 242, 93, 0.028) 48%, transparent 70%);
  opacity: 0.85;
}

.section > :not(.section-inner) {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-width));
  margin-inline: auto;
}

.split,
.split-inner,
.statement-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section.split {
  width: min(calc(100% - 2rem), var(--site-width));
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}

.section.split > :not(.section-inner) {
  width: auto;
  margin-inline: 0;
}

.statement-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 76%);
}

.statement-inner h2 {
  max-width: 760px;
}

.split .section-inner {
  grid-column: 1 / -1;
}

.poster-section {
  background:
    radial-gradient(ellipse 90% 72% at 12% 8%, rgba(88, 217, 255, 0.12), transparent 66%),
    radial-gradient(ellipse 92% 76% at 92% 40%, rgba(112, 242, 93, 0.1), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

.poster-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.poster-image {
  overflow: hidden;
  border: 1px solid rgba(226, 239, 224, 0.16);
  border-radius: 8px;
  background: #040807;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.poster-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zone-list {
  display: grid;
  gap: 0.8rem;
}

.zone-list h2 {
  margin-bottom: 0.6rem;
}

.zone-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.8rem;
  border-top: 1px solid rgba(226, 239, 224, 0.14);
  padding-top: 0.8rem;
}

.zone-list article span {
  grid-row: span 2;
  min-width: 2.1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 860;
}

.zone-list article strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.zone-list article p {
  margin-bottom: 0;
}

.text-stack {
  max-width: 680px;
}

.text-stack p:last-child,
.legal-box p:last-child,
.card-grid article p:last-child,
.pricing-card p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.feature-rows {
  display: grid;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.feature-rows article {
  display: grid;
  grid-template-columns: 3.5rem minmax(160px, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.feature-rows article span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-rows article h3 {
  margin: 0;
}

.feature-rows article p {
  max-width: 560px;
  margin: 0;
}

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

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

.card-grid article,
.pricing-card,
.legal-box,
.callout {
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.card-grid article h2,
.pricing-card h2,
.legal-box h2,
.callout h2 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.card-grid ul,
.legal-page ul {
  padding-left: 1.1rem;
}

.faq details {
  max-width: 900px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-weight: 780;
}

.page-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 780px);
  align-content: center;
  display: grid;
  justify-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(8rem, 16vw, 13rem);
  background:
    radial-gradient(ellipse 118% 72% at 44% -18%, rgba(231, 213, 173, 0.16), transparent 58%),
    radial-gradient(ellipse 96% 76% at 6% 12%, rgba(112, 242, 93, 0.18), transparent 64%),
    radial-gradient(ellipse 90% 78% at 98% 20%, rgba(88, 217, 255, 0.16), transparent 66%),
    radial-gradient(ellipse 108% 64% at 54% 80%, rgba(240, 182, 62, 0.1), transparent 68%),
    linear-gradient(180deg, rgba(5, 13, 11, 0.55), rgba(1, 3, 2, 0.96) 100%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-width));
  margin-inline: auto;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(88, 217, 255, 0.06) 34%, transparent 54%),
    linear-gradient(246deg, transparent 0 24%, rgba(112, 242, 93, 0.055) 44%, transparent 66%),
    linear-gradient(180deg, rgba(1, 3, 2, 0.06), rgba(1, 3, 2, 0.55) 78%, #010302 100%);
}

.page-hero::after {
  left: 50%;
  bottom: -1px;
  z-index: 0;
  width: min(calc(100% - 2rem), var(--site-width));
  height: min(30vh, 280px);
  transform: translateX(-50%);
  border: 1px solid rgba(226, 239, 224, 0.14);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0.08), rgba(1, 3, 2, 0.78) 72%, #010302 100%),
    url("/assets/nightlife-floorplan-hero-1280.jpg") center 58% / cover no-repeat;
  filter: saturate(1.06) contrast(1.05);
  opacity: 0.34;
}

.page-hero h1,
.legal-page h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: var(--site-width);
  font-size: clamp(3.15rem, 4.8vw, 5.65rem);
  line-height: 0.98;
}

.page-hero .lead,
.legal-page .lead {
  max-width: 860px;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.subnav a {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 740;
}

.workflow {
  display: grid;
  gap: 0.75rem;
  max-width: 920px;
  margin-top: 1.8rem;
  counter-reset: step;
}

.workflow li {
  list-style: none;
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.workflow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 860;
}

.legal-page {
  position: relative;
  min-height: calc(100vh - 150px);
  width: min(calc(100% - 2rem), var(--site-width));
  max-width: none;
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
  background:
    radial-gradient(ellipse 110% 62% at 8% 0%, rgba(112, 242, 93, 0.09), transparent 62%),
    radial-gradient(ellipse 92% 62% at 96% 6%, rgba(88, 217, 255, 0.085), transparent 66%),
    radial-gradient(ellipse 110% 72% at 58% 82%, rgba(240, 182, 62, 0.045), transparent 68%),
    linear-gradient(180deg, rgba(5, 13, 11, 0.42), rgba(1, 3, 2, 0.92) 100%);
  box-shadow: 0 0 0 100vmax rgba(1, 3, 2, 0.18);
  clip-path: inset(0 -100vmax);
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-page h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  margin-top: 2.5rem;
}

.legal-page p,
.legal-page li {
  overflow-wrap: anywhere;
}

.legal-warning {
  border-left: 4px solid var(--amber);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(clamp(1rem, 4vw, 2rem), calc((100vw - var(--site-width)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 3, 0.72);
  color: white;
  backdrop-filter: blur(18px);
}

.site-footer nav a,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
  .hero-inner,
  .poster-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(calc(100% - 20px), var(--site-width));
    gap: 0.7rem;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
  }

  .proof-grid,
  .metric-grid,
  .card-grid,
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split-inner,
  .statement-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    border-radius: 18px;
    margin-top: 10px;
  }

  .site-header nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    gap: 0.45rem;
  }

  .site-header nav a {
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    padding: 0.38rem 0.52rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.9rem);
  }

  .page-hero h1,
  .legal-page h1 {
    font-size: clamp(2.35rem, 9vw, 3.05rem);
    line-height: 0.99;
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 2.45rem);
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .inline-actions {
    margin-top: 1.2rem;
  }

  .metric-grid,
  .card-grid,
  .card-grid.two,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 2rem;
  }

  .feature-rows article {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.45rem 0.8rem;
  }

  .feature-rows article p {
    grid-column: 2;
  }

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

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    font-size: 0.86rem;
  }

  .night-panel {
    left: auto;
    right: auto;
    bottom: auto;
    justify-self: stretch;
    width: 100%;
  }

  .night-panel-grid {
    grid-template-columns: 1fr;
  }

  .poster-image img {
    aspect-ratio: 3 / 4;
  }

  .mock-row {
    grid-template-columns: 58px 1fr;
  }

  .mock-row span:nth-child(3),
  .mock-row span:nth-child(4) {
    display: none;
  }

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

@media (max-width: 360px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}
