:root {
  --bg: #00283a;
  --bg-deep: #001d2d;
  --cyan: #16c8ce;
  --gold: #ffc857;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.14);
  --max: 1200px;
  --page-pad: clamp(18px, 5vw, 40px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

:target {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 200, 206, 0.16), transparent 30rem),
    linear-gradient(180deg, #00283a 0%, #001d2d 46%, #00283a 100%);
  color: var(--white);
  overflow-x: hidden;
  text-size-adjust: 100%;
}

main {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 70%);
  z-index: -1;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(0, 29, 45, 0.84);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(22, 200, 206, 0.22);
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 29, 45, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 15px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle:hover,
.menu-open .menu-toggle {
  border-color: rgba(22, 200, 206, 0.5);
  background: rgba(0, 40, 58, 0.9);
}

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

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

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

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

.nav-demo-link {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--cyan);
  color: #001d2d;
  box-shadow: 0 0 34px rgba(22, 200, 206, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.section-shell {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: 42px;
  padding-top: 128px;
  padding-bottom: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 40, 58, 0.97) 0%, rgba(0, 40, 58, 0.82) 39%, rgba(0, 40, 58, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 40, 58, 0.08), var(--bg) 95%),
    url("assets/nightlife-hero.png") center right / cover no-repeat;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.hero-actions.centered {
  justify-content: center;
}

.hero-proof,
.point-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.point-strip span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.audience-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 22px;
}

.audience-switch a {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.audience-switch a:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 200, 206, 0.52);
  background: rgba(22, 200, 206, 0.09);
}

.audience-switch span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-switch strong {
  display: block;
  max-width: 260px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(100%, 330px);
  aspect-ratio: 9 / 18.7;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #021726;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.56);
}

.hero-phone {
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #00283a;
}

.prototype-screen {
  background: #001d2d;
}

.prototype-screen img,
.prototype-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.blisse-app-screen {
  display: flex;
  flex-direction: column;
  padding: 16px 12px 76px;
  background: #00283a;
  color: #fff;
}

.app-mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: 78%;
  min-height: 48px;
  margin: 0 auto 16px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 14, 26, 0.48);
}

.app-mode-switch span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
}

.app-mode-switch .active {
  background: var(--cyan);
  color: #001d2d;
}

.app-chip-row {
  display: flex;
  gap: 8px;
  min-height: 42px;
  margin: 0 -12px 20px;
  padding: 0 12px 2px;
  overflow: hidden;
}

.app-chip-row span {
  display: inline-grid;
  place-items: center;
  min-width: max-content;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  background: rgba(0, 18, 32, 0.36);
}

.app-carousel {
  position: relative;
  flex: 0 0 auto;
  height: 43%;
  min-height: 220px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #071b27;
}

.app-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.app-media-food {
  background-image:
    radial-gradient(circle at 24% 62%, #f27630 0 7%, transparent 8%),
    radial-gradient(circle at 39% 57%, #f2f0e8 0 8%, transparent 9%),
    radial-gradient(circle at 54% 58%, #d94848 0 8%, transparent 9%),
    radial-gradient(circle at 69% 58%, #ffb15f 0 8%, transparent 9%),
    linear-gradient(180deg, rgba(7, 23, 32, 0.12), rgba(7, 23, 32, 0.12)),
    url("assets/nightlife-hero.png");
  background-position: center;
  filter: saturate(1.12) hue-rotate(310deg);
}

.app-media-night {
  background-image:
    linear-gradient(180deg, rgba(0, 40, 58, 0.04), rgba(0, 22, 34, 0.48)),
    url("assets/nightlife-hero.png");
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%);
}

.carousel-arrow::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.prev::before {
  transform: rotate(225deg);
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-arrow.next::before {
  transform: rotate(45deg);
}

.app-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
}

.app-actions {
  position: absolute;
  right: 13px;
  bottom: 148px;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.app-action {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 20, 32, 0.54);
}

.app-action.heart::before,
.app-action.heart::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 25px;
  border-radius: 16px 16px 0 0;
  background: #ff4d3f;
  transform-origin: 50% 100%;
}

.app-action.heart::before {
  transform: translateX(-6px) rotate(-45deg);
}

.app-action.heart::after {
  transform: translateX(6px) rotate(45deg);
}

.app-action.send::before {
  content: "";
  width: 27px;
  height: 27px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-2px, 2px) rotate(45deg);
}

.app-action.group::before {
  content: "+";
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  transform: translate(-12px, -7px);
}

.app-action.group::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 15px;
  width: 22px;
  height: 13px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.app-place-copy {
  padding-right: 64px;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.app-title-row h2,
.app-title-row h3 {
  margin: 0;
  color: #fff;
  line-height: 1;
}

.app-title-row h2 {
  font-size: 1.85rem;
}

.app-title-row h3 {
  font-size: 1.32rem;
}

.app-title-row strong {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cyan);
  color: #001d2d;
  font-size: 0.92rem;
  font-weight: 950;
}

.app-meta {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
}

.app-place-copy p:not(.app-meta) {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.42;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.app-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  background: rgba(0, 16, 28, 0.34);
}

.book-button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: #001d2d;
  font-weight: 900;
}

.compact-app-screen {
  padding: 13px 10px 66px;
}

.compact-app-screen .app-mode-switch {
  width: 88%;
  min-height: 40px;
  margin-bottom: 12px;
}

.compact-app-screen .app-mode-switch span,
.compact-app-screen .app-chip-row span {
  font-size: 0.58rem;
}

.compact-app-screen .app-chip-row {
  min-height: 34px;
  margin-bottom: 14px;
}

.compact-app-screen .app-carousel {
  height: 40%;
  min-height: 150px;
  margin-bottom: 14px;
}

.compact-app-screen .app-place-copy {
  padding-right: 0;
}

.compact-app-screen .app-title-row {
  gap: 8px;
}

.compact-app-screen .app-title-row h3 {
  font-size: 1.02rem;
}

.compact-app-screen .app-title-row strong {
  min-width: 48px;
  min-height: 28px;
  font-size: 0.72rem;
}

.compact-app-screen .app-tags span {
  padding: 6px 9px;
  font-size: 0.58rem;
}

.venue-detail-media {
  height: 46%;
}

.status-row {
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 750;
}

.feed-category-pills {
  position: absolute;
  top: 44px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.feed-category-pills span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  background: rgba(0, 40, 58, 0.32);
  backdrop-filter: blur(8px);
}

.venue-media,
.detail-hero,
.carousel-tile,
.screen-card::before {
  background-image:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%),
    url("assets/nightlife-hero.png");
  background-size: cover;
  background-position: center;
}

.venue-media {
  position: absolute;
  inset: 0 0 72px;
}

.venue-media.lounge {
  filter: hue-rotate(24deg) saturate(1.12);
}

.feed-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.feed-overlay h2,
.feed-overlay h3,
.feed-overlay p {
  margin: 0;
}

.feed-overlay h2 {
  font-size: 1.2rem;
  line-height: 1.1;
}

.feed-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.feed-overlay strong {
  color: #fff;
}

.venue-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.venue-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.venue-type {
  color: var(--gold) !important;
  font-weight: 800;
}

.match-badge {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(22, 200, 206, 0.94);
  color: #001d2d;
  font-weight: 900;
}

.venue-actions {
  position: absolute;
  right: 16px;
  bottom: 142px;
  z-index: 5;
  display: grid;
  gap: 8px;
}

.venue-actions span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.action-heart::before,
.action-heart::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 20px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  transform-origin: 50% 100%;
}

.action-heart::before {
  transform: translateX(-5px) rotate(-45deg);
}

.action-heart::after {
  transform: translateX(5px) rotate(45deg);
}

.action-send::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.action-send::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
  background: #fff;
  transform: translate(-2px, 5px) rotate(-28deg);
}

.app-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #00283a;
}

.app-tabbar span {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.app-tabbar .active {
  background: var(--cyan);
  color: #001d2d;
}

.tab-home::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: rotate(45deg);
}

.tab-search::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tab-search::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(10px, 10px) rotate(45deg);
}

.tab-gift::before {
  content: "";
  width: 18px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.tab-gift::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 22px;
  background: currentColor;
}

.tab-group::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-7px, -6px);
  box-shadow: 14px 0 0 -2px #00283a, 14px 0 0 0 currentColor;
}

.tab-group::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 25px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.tab-user::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-7px);
}

.tab-user::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 18px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.floating-card {
  position: absolute;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(0, 40, 58, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.floating-card strong {
  display: block;
  margin-top: 3px;
}

.card-match {
  top: 22%;
  right: 0;
}

.card-save {
  left: 0;
  bottom: 18%;
}

.proof {
  position: relative;
  min-height: min(760px, 88svh);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.68fr);
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 70px clamp(22px, 5vw, 58px);
  border-radius: 28px;
  margin-bottom: 128px;
  background:
    radial-gradient(circle at 74% 24%, rgba(22, 200, 206, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    url("assets/nightlife-hero.png") center / cover no-repeat;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 40, 58, 0.94), rgba(0, 29, 45, 0.78));
}

.proof-copy,
.proof-visual {
  position: relative;
  z-index: 1;
}

.proof-copy {
  max-width: 680px;
}

.proof-copy h2 {
  max-width: 680px;
}

.proof-visual {
  display: grid;
  place-items: center;
}

.proof-phone {
  width: min(100%, 290px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 29, 45, 0.52);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.problem,
.product-preview,
.how,
.groups,
.features,
.screens,
.case-note,
.business,
.faq,
.final-cta {
  min-height: min(900px, 100svh);
  padding: 88px 0;
}

.pain-grid,
.steps-grid,
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.business-copy h2 {
  max-width: 820px;
}

.hebrew-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.business-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.business-points span {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 760;
}

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

.business-value-grid article {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.052);
}

.business-value-grid strong,
.business-value-grid span {
  display: block;
}

.business-value-grid strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1rem;
}

.business-value-grid span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.business-visual {
  display: grid;
  place-items: center;
}

.business-phone {
  width: min(100%, 300px);
}

.glass-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--soft);
  backdrop-filter: blur(16px);
}

.glass-card p,
.feature-card p,
.step-card p {
  margin-bottom: 0;
}

.icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  height: 36px;
  min-width: 36px;
  margin-bottom: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(22, 200, 206, 0.12);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  margin: 26px 0 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mockup-row::-webkit-scrollbar {
  display: none;
}

.small-phone {
  width: min(30vw, 270px);
  min-width: 210px;
}

.raised {
  transform: translateY(-26px);
}

.feed-overlay.mini {
  display: block;
}

.carousel-screen,
.detail-screen {
  padding: 52px 18px 18px;
}

.carousel-tile {
  height: 55%;
  border-radius: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 14px 0 18px;
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.carousel-dots .active {
  background: var(--cyan);
}

.carousel-screen h3,
.carousel-screen p {
  margin-bottom: 8px;
}

.detail-hero {
  height: 36%;
}

.detail-content {
  padding: 18px;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.16);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.detail-content button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--bg);
  font-weight: 850;
}

.step-number {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 900;
}

.groups {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.group-copy > p {
  max-width: 620px;
}

.mode-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  margin: 16px 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mode-toggle button {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.mode-toggle button.active {
  background: var(--cyan);
  color: var(--bg);
  font-weight: 850;
}

.mode-cards {
  display: grid;
  gap: 14px;
}

.mode-card {
  display: none;
  min-height: 260px;
}

.mode-card.active {
  display: block;
}

.mode-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.mode-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.group-visual {
  display: grid;
  place-items: center;
}

.group-phone {
  width: min(100%, 320px);
}

.group-screen {
  padding: 58px 18px 18px;
}

.quest-intro {
  max-width: 170px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.2;
}

.quest-title {
  margin-bottom: 22px;
  text-align: center;
  font-size: 0.92rem;
}

.choice-orbits {
  position: relative;
  height: 345px;
}

.choice-orbits span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  color: #001d2d;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.choice-orbits span:nth-child(1) { left: 8px; top: 12px; }
.choice-orbits span:nth-child(2) { right: 10px; top: 18px; }
.choice-orbits span:nth-child(3) { left: 50%; top: 116px; transform: translateX(-50%); }
.choice-orbits span:nth-child(4) { left: 0; bottom: 22px; }
.choice-orbits span:nth-child(5) { right: 8px; bottom: 18px; }

.choice-orbits .selected {
  background: var(--cyan);
}

.progress-next {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 30px;
  align-items: center;
  gap: 4px;
}

.progress-next i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.progress-next i:first-child {
  background: var(--cyan);
}

.progress-next strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cyan);
  color: #001d2d;
}

.recommendation-card {
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.recommendation-card.primary {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78)),
    url("assets/nightlife-hero.png") center / cover no-repeat;
}

.recommendation-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
}

.recommendation-card p {
  margin-bottom: 0;
}

.friend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.friend-row span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border: 2px solid #061522;
}

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

.feature-card {
  min-height: 220px;
}

.screen-rail-wrap {
  position: relative;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 10px 0 34px;
}

.moment-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.052);
}

.moment-phone {
  width: min(100%, 188px);
  justify-self: center;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.moment-phone .phone-screen {
  border-radius: 20px;
}

.moment-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(22, 200, 206, 0.15);
  color: var(--cyan);
  font-weight: 900;
}

.moment-card h3 {
  margin-bottom: 8px;
}

.moment-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.screen-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screen-rail::-webkit-scrollbar {
  display: none;
}

.rail-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 29, 45, 0.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.rail-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

.rail-arrow:hover {
  background: var(--cyan);
}

.rail-arrow:hover::before {
  border-color: #001d2d;
}

.rail-arrow-left {
  left: 10px;
}

.rail-arrow-left::before {
  transform: translateX(3px) rotate(-45deg);
}

.rail-arrow-right {
  right: 10px;
}

.rail-arrow-right::before {
  transform: translateX(-3px) rotate(135deg);
}

.screen-card {
  position: relative;
  min-height: auto;
  aspect-ratio: 9 / 15.5;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #00283a;
}

.prototype-card {
  padding: 0;
  aspect-ratio: 375 / 812;
  border-radius: 26px;
  background: #001d2d;
}

.prototype-card img {
  object-fit: contain;
  background: #001d2d;
}

.prototype-card-tall img {
  object-fit: contain;
  background: #001d2d;
}

.screen-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.68;
}

.prototype-card::before,
.prototype-card::after {
  content: none;
  display: none;
}

.prototype-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.screen-rail .prototype-card {
  aspect-ratio: 375 / 812;
}

.screen-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 70px;
  height: 38%;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(180deg, transparent 0 28px, rgba(22, 200, 206, 0.14) 29px 30px);
  border: 1px solid var(--border);
}

.screen-card {
  box-shadow: inset 0 -58px 0 #00283a;
}

.screen-card span,
.screen-card strong {
  position: relative;
  z-index: 2;
  display: block;
}

.screen-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.screen-card strong {
  max-width: 150px;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.onboarding::before { filter: hue-rotate(130deg); }
.home::before { filter: saturate(1.1); }
.search::before { filter: hue-rotate(40deg); }
.groups-card::before { filter: hue-rotate(185deg); }
.venue::before { filter: hue-rotate(300deg); }
.saved::before { filter: sepia(0.32); }

.case-note {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.case-note h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.final-cta {
  text-align: center;
}

.final-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 200, 206, 0.22), transparent 28rem),
    rgba(255, 255, 255, 0.06);
}

.sticky-demo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #08111b;
  font-weight: 850;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.sticky-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 22;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(0, 29, 45, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.sticky-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-top::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(4px) rotate(45deg);
}

.sticky-top:hover {
  background: var(--cyan);
}

.sticky-top:hover::before {
  border-color: #001d2d;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 38px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: #00283a;
}

.site-footer p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.footer-meta {
  display: grid;
  gap: 8px;
}

.copyright {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

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

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

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 64px;
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    grid-column: 2;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    right: 16px;
    z-index: 19;
    width: min(260px, calc(100vw - 32px));
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(0, 29, 45, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-demo-link {
    display: flex;
    justify-content: center;
    background: var(--cyan) !important;
    color: #001d2d !important;
    font-weight: 900;
  }

  .hero,
  .proof,
  .groups,
  .case-note,
  .business {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    gap: 28px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .problem,
  .product-preview,
  .how,
  .groups,
  .features,
  .screens,
  .case-note,
  .business,
  .faq,
  .final-cta {
    min-height: auto;
  }

  .pain-grid,
  .steps-grid,
  .feature-grid,
  .faq-grid,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    min-height: auto;
    margin-bottom: 72px;
  }

  .proof-visual {
    order: -1;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .moment-card {
    grid-template-columns: 170px minmax(0, 1fr);
    grid-template-rows: none;
    align-items: center;
  }

  .moment-phone {
    width: 150px;
  }

  .mockup-row {
    justify-content: start;
    overflow-x: auto;
    margin-inline: calc(50% - 50vw);
    padding: 20px max(20px, calc((100vw - 260px) / 2));
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(20px, calc((100vw - 260px) / 2));
  }

  .small-phone {
    width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: center;
  }

  .raised {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section-heading,
  .section-heading.compact {
    max-width: 100%;
    margin-bottom: 28px;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .hero-proof span,
  .point-strip span {
    font-size: 0.78rem;
  }

  .audience-switch {
    grid-template-columns: 1fr;
  }

  .audience-switch a {
    min-height: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-phone {
    animation: none;
  }

  .phone-mockup {
    width: min(74vw, 292px);
  }

  .floating-card {
    max-width: 128px;
    border-radius: 14px;
  }

  .card-match {
    right: 0;
    top: 16%;
  }

  .card-save {
    left: 0;
    bottom: 14%;
  }

  .cinematic-content p {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .glass-card,
  .feature-card,
  .step-card,
  .mode-card {
    min-height: auto;
  }

  .groups {
    gap: 34px;
  }

  .business {
    gap: 34px;
  }

  .business-value-grid {
    grid-template-columns: 1fr;
  }

  .mode-toggle {
    width: 100%;
  }

  .mode-toggle button {
    padding: 0 12px;
  }

  .group-phone {
    width: min(78vw, 300px);
  }

  .business-phone {
    width: min(78vw, 290px);
  }

  .screen-card {
    min-height: auto;
    aspect-ratio: 9 / 15.5;
    scroll-snap-align: center;
  }

  .rail-arrow {
    width: 42px;
    height: 42px;
  }

  .final-content {
    padding: 46px 18px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    height: 58px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
    gap: 8px;
  }

  .section-shell {
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  }

  .nav-links {
    top: 76px;
    right: 10px;
    width: min(240px, calc(100vw - 20px));
  }

  p {
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.62rem, 8vw, 2.65rem);
  }

  .hero-actions,
  .hero-actions.centered {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .phone-mockup {
    width: min(82vw, 286px);
    border-radius: 36px;
    padding: 10px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .blisse-app-screen {
    padding: 13px 10px 68px;
  }

  .app-mode-switch {
    width: 88%;
    min-height: 42px;
    margin-bottom: 12px;
  }

  .app-mode-switch span,
  .app-chip-row span {
    font-size: 0.62rem;
  }

  .app-chip-row {
    min-height: 34px;
    margin-bottom: 14px;
  }

  .app-carousel {
    min-height: 168px;
    margin-bottom: 14px;
  }

  .app-actions {
    right: 10px;
    bottom: 132px;
    gap: 9px;
  }

  .app-action {
    width: 46px;
    height: 46px;
  }

  .app-place-copy {
    padding-right: 50px;
  }

  .app-title-row h2 {
    font-size: 1.45rem;
  }

  .app-title-row strong {
    min-width: 48px;
    min-height: 30px;
    font-size: 0.8rem;
  }

  .app-meta,
  .app-place-copy p:not(.app-meta) {
    font-size: 0.7rem;
  }

  .app-tags span {
    padding: 6px 8px;
    font-size: 0.58rem;
  }

  .app-tabbar {
    height: 64px;
  }

  .floating-card {
    padding: 11px 13px;
    font-size: 0.82rem;
  }

  .card-match {
    right: -2px;
  }

  .card-save {
    left: -2px;
  }

  .cinematic {
    min-height: 430px;
    border-radius: 22px;
    margin-bottom: 58px;
  }

  .proof {
    padding: 38px 18px;
    border-radius: 22px;
    margin-bottom: 58px;
  }

  .proof-phone {
    width: min(76vw, 250px);
  }

  .problem,
  .product-preview,
  .how,
  .groups,
  .features,
  .screens,
  .case-note,
  .business,
  .faq,
  .final-cta {
    padding: 58px 0;
  }

  .screen-rail {
    grid-auto-columns: minmax(220px, 76vw);
    margin-inline: calc(var(--page-pad) * -1);
    padding-inline: max(var(--page-pad), 12vw);
    scroll-padding-inline: max(var(--page-pad), 12vw);
  }

  .screen-card {
    min-height: auto;
    aspect-ratio: 9 / 15.5;
    padding: 18px;
    scroll-snap-align: center;
  }

  .rail-arrow-left {
    left: 6px;
  }

  .rail-arrow-right {
    right: 6px;
  }

  .sticky-demo {
    display: none;
  }

  .sticky-top {
    left: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    gap: 7px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.45rem);
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-proof,
  .point-strip {
    gap: 8px;
  }

  .hero-proof span,
  .point-strip span {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-mockup {
    width: min(80vw, 252px);
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 22px;
  }

  .floating-card {
    display: none;
  }

  .app-carousel {
    min-height: 146px;
  }

  .app-actions {
    bottom: 118px;
  }

  .app-action {
    width: 40px;
    height: 40px;
  }

  .app-place-copy {
    padding-right: 44px;
  }

  .app-title-row {
    gap: 8px;
  }

  .app-title-row h2 {
    font-size: 1.22rem;
  }

  .app-title-row strong {
    min-width: 42px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .app-tags {
    gap: 5px;
  }

  .cinematic {
    min-height: 330px;
  }

  .problem,
  .product-preview,
  .how,
  .groups,
  .features,
  .screens,
  .case-note,
  .business,
  .faq,
  .final-cta {
    padding: 46px 0;
  }

  .glass-card {
    padding: 20px;
    border-radius: 14px;
  }

  .mockup-row {
    margin-inline: calc(var(--page-pad) * -1);
    padding-inline: max(var(--page-pad), calc((100vw - 232px) / 2));
    scroll-padding-inline: max(var(--page-pad), calc((100vw - 232px) / 2));
  }

  .small-phone {
    width: 232px;
    flex-basis: 232px;
    min-width: 232px;
  }

  .group-phone {
    width: min(78vw, 252px);
  }

  .choice-orbits {
    height: 292px;
  }

  .choice-orbits span {
    width: 68px;
    height: 68px;
    font-size: 0.54rem;
  }

  .screen-rail {
    grid-auto-columns: minmax(230px, 78vw);
    gap: 12px;
    margin-inline: calc(var(--page-pad) * -1);
    padding-inline: max(var(--page-pad), 11vw);
    scroll-padding-inline: max(var(--page-pad), 11vw);
  }

  .moment-card {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .moment-phone {
    width: 104px;
    border-radius: 20px;
    padding: 6px;
  }

  .moment-phone .phone-screen {
    border-radius: 15px;
  }

  .screen-card {
    min-height: auto;
    aspect-ratio: 9 / 14.5;
  }

  .screen-card strong {
    max-width: 138px;
    font-size: 1.2rem;
  }

  .rail-arrow {
    width: 38px;
    height: 38px;
  }

  .rail-arrow::before {
    width: 11px;
    height: 11px;
  }

  .final-content {
    padding: 38px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 360px) {
  .site-header {
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  }

  .brand {
    font-size: 0.86rem;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .nav-links {
    top: 74px;
  }

  .section-shell {
    width: min(calc(100% - (var(--page-pad) * 2)), var(--max));
  }

  h1 {
    font-size: 2.28rem;
  }

  .phone-mockup {
    width: 238px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .app-mode-switch {
    min-height: 38px;
  }

  .app-chip-row {
    margin-inline: -10px;
    padding-inline: 10px;
  }

  .app-carousel {
    min-height: 132px;
  }

  .app-tabbar span {
    width: 34px;
    height: 34px;
  }

  .small-phone {
    width: 220px;
    flex-basis: 220px;
    min-width: 220px;
  }

  .mockup-row {
    padding-inline: max(var(--page-pad), calc((100vw - 220px) / 2));
    scroll-padding-inline: max(var(--page-pad), calc((100vw - 220px) / 2));
  }

  .screen-card {
    aspect-ratio: 9 / 14;
  }

  .sticky-demo {
    display: none;
  }
}

.screen-rail .prototype-card {
  aspect-ratio: 375 / 812;
}

.screen-rail .prototype-card img {
  object-fit: contain;
}
