:root {
  --bg: #080c06;
  --bg-soft: #0f160c;
  --panel: rgba(15, 22, 12, 0.86);
  --text: #f5f1e6;
  --muted: rgba(245, 241, 230, 0.68);
  --line: rgba(245, 241, 230, 0.12);
  --accent: #d7ff64;
  --accent-2: #8de07d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 224, 125, 0.16), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(215, 255, 100, 0.14), transparent 24%),
    linear-gradient(180deg, #0b1108 0%, #080c06 40%, #070904 100%);
}

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

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

.shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 12, 6, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0a0d08;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 34px rgba(141, 224, 125, 0.24);
}

.brand-mark span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.brand-copy strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
.lang-toggle button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-toggle button:hover,
.lang-toggle button:focus-visible {
  color: var(--text);
  border-color: rgba(215, 255, 100, 0.34);
  background: rgba(215, 255, 100, 0.08);
  transform: translateY(-1px);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.lang-toggle button.is-active {
  color: #0a0d08;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.hero {
  padding: 52px 0 28px;
}

.hero-grid {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: end;
}

.hero-copy {
  padding: 18px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.poster-title {
  margin: 14px 0 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.8rem, 10vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button {
  color: #080c06;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(141, 224, 125, 0.26);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.button[disabled],
.button-secondary[disabled] {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
  transform: none;
}

.hero-panel,
.section-panel,
.poster-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(17, 24, 13, 0.92), rgba(9, 13, 7, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel {
  min-height: 440px;
  padding: 26px;
}

.hero-panel::after,
.poster-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 255, 100, 0.22), transparent 64%);
  pointer-events: none;
}

.hero-panel::before,
.poster-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
    linear-gradient(135deg, rgba(141, 224, 125, 0.12), transparent 52%);
  pointer-events: none;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.metric-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-list li:first-child {
  border-top: 0;
}

.metric-list strong {
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.metric-list span {
  color: var(--muted);
  line-height: 1.55;
}

.main {
  padding: 12px 0 84px;
}

.section {
  padding: 24px 0;
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 40px;
}

.section-heading {
  position: sticky;
  top: 108px;
  align-self: start;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-content {
  display: grid;
  gap: 18px;
}

.section-panel {
  padding: 24px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.section-panel h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.section-panel p,
.section-panel li {
  color: var(--muted);
  line-height: 1.72;
}

.section-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.section-panel ul li + li {
  margin-top: 10px;
}

.stat-row,
.action-row,
.link-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.poster-panel {
  padding: 26px;
  min-height: 300px;
}

.poster-panel h2 {
  margin: 20px 0 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.poster-panel p {
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.7;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.mini-block {
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-block strong {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.mini-block span {
  font-size: 1.25rem;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--accent);
  background: rgba(215, 255, 100, 0.08);
  border: 1px solid rgba(215, 255, 100, 0.14);
}

.notice {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(215, 255, 100, 0.08);
  border: 1px solid rgba(215, 255, 100, 0.18);
  color: var(--text);
}

.notice p {
  margin: 0;
  color: rgba(245, 241, 230, 0.84);
}

.faq-list {
  display: grid;
  gap: 14px;
}

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

.faq-item h3 {
  margin: 0 0 8px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-page .site-header {
  background: rgba(8, 12, 6, 0.46);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.home-hero {
  position: relative;
  overflow: clip;
  padding: 0 0 52px;
  min-height: 100svh;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 255, 100, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(141, 224, 125, 0.10), transparent 20%),
    radial-gradient(circle at 72% 74%, rgba(215, 255, 100, 0.08), transparent 28%);
  pointer-events: none;
}

.home-hero-inner,
.community-inner {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.home-hero-inner {
  min-height: calc(100svh - 79px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.home-copy {
  position: relative;
  z-index: 1;
  padding: 42px 0 0;
}

.home-copy h1 {
  max-width: 8.2ch;
  margin: 18px 0 18px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4.4rem, 12vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.home-copy p {
  max-width: 47ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(245, 241, 230, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hero-footnote {
  margin-top: 18px;
  color: rgba(245, 241, 230, 0.52);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.store-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible,
.waitlist-link:hover,
.waitlist-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 255, 100, 0.24);
}

.store-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(215, 255, 100, 0.1);
  color: var(--accent);
  font-size: 1rem;
}

.store-badge small {
  display: block;
  color: rgba(245, 241, 230, 0.46);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
}

.waitlist-link {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 6px;
  color: var(--accent);
  border-bottom: 1px solid rgba(215, 255, 100, 0.22);
}

.home-stage {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
}

.stage-mark {
  position: absolute;
  right: 30px;
  bottom: 26px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.stage-mark img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 22px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: 90px;
  right: 120px;
  background: radial-gradient(circle, rgba(215, 255, 100, 0.22), transparent 70%);
  animation: pulseFloat 9s ease-in-out infinite;
}

.orb-b {
  width: 260px;
  height: 260px;
  bottom: 80px;
  left: 80px;
  background: radial-gradient(circle, rgba(141, 224, 125, 0.18), transparent 72%);
  animation: pulseFloat 11s ease-in-out infinite reverse;
}

.phone-stack {
  position: relative;
  width: min(100%, 640px);
  height: 760px;
}

.phone-shell {
  position: absolute;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(20, 28, 15, 0.98), rgba(8, 12, 6, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 12%),
    radial-gradient(circle at top right, rgba(215, 255, 100, 0.10), transparent 36%);
  pointer-events: none;
}

.phone-left,
.phone-right {
  width: 240px;
  height: 520px;
  top: 120px;
  padding: 24px 22px;
}

.phone-left {
  left: 8px;
  transform: rotate(-8deg) translateY(22px);
  animation: phoneDriftLeft 9s ease-in-out infinite;
}

.phone-right {
  right: 8px;
  transform: rotate(8deg) translateY(34px);
  animation: phoneDriftRight 10s ease-in-out infinite;
}

.phone-center {
  z-index: 2;
  left: 50%;
  top: 42px;
  width: 296px;
  height: 648px;
  padding: 28px 24px;
  transform: translateX(-50%);
  animation: phoneCenterLift 8s ease-in-out infinite;
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245, 241, 230, 0.54);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-kicker {
  margin-top: 22px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-shell h3 {
  margin: 10px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

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

.macro-grid div,
.mini-panel,
.meetup-chip {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.macro-grid small,
.signal-tile small,
.meetup-chip small {
  display: block;
  color: rgba(245, 241, 230, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.macro-grid strong,
.mini-panel strong,
.meetup-chip strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.food-list,
.room-feed {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.food-list span,
.room-feed li {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 230, 0.8);
}

.signal-bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal-bars div {
  display: grid;
  gap: 8px;
}

.signal-bars span {
  color: rgba(245, 241, 230, 0.6);
  font-size: 0.85rem;
}

.signal-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 26px rgba(215, 255, 100, 0.28);
}

.mini-panel {
  margin-top: 22px;
}

.mini-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 241, 230, 0.74);
  line-height: 1.5;
}

.trend-line {
  position: relative;
  margin-top: 26px;
  height: 110px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.02);
}

.trend-line span {
  position: absolute;
  inset: 24px 18px;
  border-radius: 18px;
  background:
    linear-gradient(transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) 0),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) 0);
  background-size: 100% 28px, 56px 100%;
}

.trend-line::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(215, 255, 100, 0.24) 0%,
    rgba(215, 255, 100, 1) 16%,
    rgba(215, 255, 100, 0.78) 36%,
    rgba(141, 224, 125, 1) 54%,
    rgba(215, 255, 100, 0.9) 74%,
    rgba(215, 255, 100, 1) 100%
  );
  clip-path: polygon(0 90%, 14% 72%, 28% 80%, 43% 46%, 58% 58%, 71% 28%, 84% 40%, 100% 8%, 100% 100%, 0 100%);
}

.home-main {
  padding: 0 0 96px;
}

.shot-band {
  padding: 18px 0 6px;
}

.shot-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.shot-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.shot-heading h2 {
  margin: 8px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.shot-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.shot-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 20, 11, 0.96), rgba(8, 12, 6, 0.98));
  box-shadow: var(--shadow);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: top center;
}

.shot-card-tall {
  grid-row: span 2;
}

.shot-card-tall img {
  aspect-ratio: 0.66 / 1;
}

.shot-card figcaption {
  padding: 18px 18px 20px;
}

.shot-card figcaption strong {
  display: block;
  font-size: 1.1rem;
}

.shot-card figcaption span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.narrative-section {
  padding: 24px 0 12px;
}

.feature-rail {
  display: grid;
  gap: 0;
}

.feature-slab {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-index {
  color: rgba(215, 255, 100, 0.88);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.feature-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-body h3 {
  max-width: 18ch;
  margin: 12px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.98;
}

.feature-body p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.focus-band {
  padding: 44px 0 16px;
}

.focus-shell,
.cta-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.focus-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  padding: 32px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(12, 17, 9, 0.94), rgba(7, 10, 5, 0.98)),
    radial-gradient(circle at top right, rgba(215, 255, 100, 0.12), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.focus-copy h2,
.community-copy h2,
.cta-shell h2 {
  margin: 16px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
}

.focus-copy p,
.community-copy p,
.cta-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.focus-grid {
  display: grid;
  gap: 14px;
  align-content: start;
}

.signal-tile {
  padding: 18px 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.signal-tile strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.35;
}

.signal-tile-accent {
  background: linear-gradient(135deg, rgba(215, 255, 100, 0.14), rgba(141, 224, 125, 0.08));
  border-color: rgba(215, 255, 100, 0.16);
}

.community-band {
  padding: 22px 0 18px;
}

.community-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.room-columns {
  display: grid;
  gap: 18px;
}

.room-column {
  min-height: 160px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.room-column span,
.room-column strong {
  display: block;
}

.room-column span + span,
.room-column strong + span {
  margin-top: 14px;
}

.room-column span {
  color: rgba(245, 241, 230, 0.72);
  font-size: 1.15rem;
}

.room-column strong {
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 0.96;
}

.watch-band {
  padding: 28px 0 18px;
}

.watch-shell,
.ecosystem-shell,
.faq-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.watch-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: 32px;
  padding: 32px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(12, 18, 9, 0.96), rgba(7, 10, 5, 0.98)),
    radial-gradient(circle at top left, rgba(215, 255, 100, 0.14), transparent 24%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.watch-copy h2,
.ecosystem-heading h2,
.faq-heading h2 {
  margin: 16px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
}

.watch-copy p,
.ecosystem-heading p,
.faq-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.watch-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.watch-feature {
  padding: 18px 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-feature strong {
  display: block;
  color: var(--accent);
  font-size: 1.02rem;
}

.watch-feature span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.watch-stage {
  display: grid;
  gap: 18px;
  align-content: start;
}

.watch-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: end;
}

.watch-frame {
  padding: 16px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(18, 24, 14, 0.98), rgba(6, 9, 4, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.watch-frame-main {
  min-height: 438px;
}

.watch-frame-side {
  min-height: 322px;
}

.watch-screen {
  height: 100%;
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 21, 11, 0.98), rgba(7, 10, 5, 0.98)),
    radial-gradient(circle at top right, rgba(215, 255, 100, 0.10), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  align-content: start;
}

.watch-screen-side {
  padding: 16px;
}

.watch-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(245, 241, 230, 0.54);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-chip {
  width: max-content;
  min-height: 30px;
  margin-top: 16px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(215, 255, 100, 0.08);
  border: 1px solid rgba(215, 255, 100, 0.14);
  font-size: 0.8rem;
}

.watch-screen h3 {
  margin: 16px 0 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 0.92;
}

.watch-screen p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.watch-metric {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-metric small,
.watch-supplement small {
  display: block;
  color: rgba(245, 241, 230, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watch-metric strong,
.watch-water strong,
.watch-supplement strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.watch-cta {
  margin-top: 22px;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #080c06;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(141, 224, 125, 0.22);
}

.watch-sync-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: rgba(245, 241, 230, 0.56);
  font-size: 0.86rem;
}

.watch-sync-line i {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(215, 255, 100, 0.24);
}

.watch-water {
  margin-top: 18px;
}

.watch-water-pills {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.watch-water-pills span,
.watch-supplement {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-water-pills span {
  color: rgba(245, 241, 230, 0.82);
}

.watch-supplement {
  margin-top: 14px;
}

.watch-supplement strong {
  color: var(--accent);
}

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

.device-card,
.ecosystem-card {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-card {
  min-height: 168px;
}

.device-card small,
.ecosystem-card small {
  display: block;
  color: rgba(245, 241, 230, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-card strong,
.ecosystem-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.device-card span,
.ecosystem-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.ecosystem-band {
  padding: 20px 0 10px;
}

.ecosystem-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.ecosystem-card {
  min-height: 214px;
  background:
    linear-gradient(180deg, rgba(15, 22, 11, 0.96), rgba(8, 12, 6, 0.98)),
    radial-gradient(circle at top right, rgba(215, 255, 100, 0.08), transparent 28%);
  box-shadow: var(--shadow);
}

.ecosystem-card strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.98;
}

.pricing-band {
  padding: 44px 0 8px;
}

.pricing-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.pricing-copy h2 {
  margin: 16px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
}

.pricing-copy p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pricing-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-slab-featured {
  position: relative;
}

.plan-slab-featured::before {
  content: "";
  position: absolute;
  inset: 12px -14px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(215, 255, 100, 0.12), rgba(141, 224, 125, 0.05)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(215, 255, 100, 0.12);
}

.plan-header {
  display: grid;
  gap: 8px;
  align-content: start;
}

.plan-header span {
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-header strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
}

.plan-price {
  display: grid;
  gap: 8px;
  align-content: start;
  margin-bottom: 18px;
}

.plan-price b {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.9;
}

.plan-price span {
  color: var(--muted);
  line-height: 1.5;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-list li {
  color: rgba(245, 241, 230, 0.82);
  line-height: 1.65;
}

.plan-list li::before {
  content: "•";
  display: inline-block;
  width: 18px;
  color: var(--accent);
}

.cta-band {
  padding: 40px 0 0;
}

.cta-shell {
  display: grid;
  gap: 24px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge.compact {
  min-height: 52px;
}

.waitlist-band {
  padding: 44px 0 0;
}

.faq-band {
  padding: 42px 0 0;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.faq-shell .faq-list {
  gap: 0;
}

.faq-shell .faq-item {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-shell .faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-shell .faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.faq-shell .faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.waitlist-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 32px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(14, 20, 11, 0.96), rgba(8, 12, 6, 0.98)),
    radial-gradient(circle at top left, rgba(215, 255, 100, 0.12), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.waitlist-copy h2 {
  margin: 16px 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
}

.waitlist-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.waitlist-form {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.waitlist-form input {
  flex: 1 1 320px;
  min-height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 18px;
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(245, 241, 230, 0.36);
}

.waitlist-form input:focus-visible {
  outline: 2px solid rgba(215, 255, 100, 0.28);
  outline-offset: 2px;
}

.waitlist-note,
.waitlist-status {
  margin: 16px 0 0;
  color: rgba(245, 241, 230, 0.58);
  line-height: 1.65;
}

.waitlist-status.is-success {
  color: var(--accent);
}

.waitlist-status.is-error {
  color: #ffb4a1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: 80ms;
}

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

@keyframes phoneCenterLift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes phoneDriftLeft {
  0%,
  100% {
    transform: rotate(-8deg) translateY(22px);
  }
  50% {
    transform: rotate(-6deg) translateY(8px);
  }
}

@keyframes phoneDriftRight {
  0%,
  100% {
    transform: rotate(8deg) translateY(34px);
  }
  50% {
    transform: rotate(6deg) translateY(18px);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .home-hero-inner,
  .focus-shell,
  .watch-shell,
  .pricing-shell,
  .shot-grid,
  .community-inner,
  .faq-shell,
  .hero-grid,
  .section-inner {
    grid-template-columns: 1fr;
  }

  .watch-stack,
  .watch-platform-grid,
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    min-height: auto;
    padding: 12px 0 40px;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .home-stage {
    min-height: 700px;
  }

  .section-heading {
    position: static;
  }

  .feature-slab {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-slab {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shot-card-tall {
    grid-row: auto;
  }

  .stat-row,
  .action-row,
  .link-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .home-hero::before {
    background:
      radial-gradient(circle at 28% 12%, rgba(215, 255, 100, 0.12), transparent 34%),
      radial-gradient(circle at 80% 20%, rgba(141, 224, 125, 0.08), transparent 26%);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-nav a,
  .lang-toggle {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1,
  .poster-title {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-panel,
  .poster-panel {
    padding: 22px;
  }

  .home-stage {
    min-height: 560px;
  }

  .home-copy {
    padding-top: 28px;
  }

  .home-copy h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }

  .home-copy p {
    font-size: 1rem;
  }

  .phone-stack {
    width: 100%;
    height: 560px;
  }

  .stage-mark {
    right: 18px;
    bottom: 18px;
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .stage-mark img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    width: min(100%, 320px);
    height: 540px;
    top: 0;
    padding: 24px 22px;
  }

  .focus-shell {
    padding: 24px;
  }

  .watch-shell,
  .waitlist-shell {
    padding: 24px;
  }

  .watch-stack,
  .watch-platform-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .watch-frame-main {
    min-height: 380px;
  }

  .watch-frame-side {
    min-height: 280px;
  }

  .watch-screen {
    padding: 16px;
    border-radius: 26px;
  }

  .watch-screen h3 {
    font-size: 2.2rem;
  }

  .device-card,
  .ecosystem-card {
    min-height: auto;
  }

  .store-strip,
  .waitlist-form {
    flex-direction: column;
    align-items: stretch;
  }

  .room-column {
    min-height: auto;
    padding: 20px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-shell {
    padding: 24px;
  }

  .plan-slab-featured::before {
    inset: 10px -10px;
  }
}
