/* MudMeet static landing — mudmeet.app/ */
:root {
  --bg: #100d0a;
  --surface: rgba(22, 19, 15, 0.82);
  --text: #efe7d8;
  --text-soft: #c9c1b6;
  --muted: #8a8278;
  --orange: #ff6a1f;
  --orange-glow: rgba(255, 106, 31, 0.35);
  --green: #5bd68c;
  --border: rgba(255, 255, 255, 0.1);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --max: 440px;
  --nav-safe: env(safe-area-inset-bottom, 0px);
}

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

html {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.landing-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  z-index: -2;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(16, 13, 10, 0.15) 0%, rgba(16, 13, 10, 0.72) 48%, rgba(16, 13, 10, 0.98) 100%),
    url('/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.landing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 106, 31, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(94, 58, 31, 0.2), transparent 50%);
  pointer-events: none;
}

.landing-vignette {
  display: none;
}

.landing {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + 8px) 8px calc(12px + var(--nav-safe));
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: hidden;
}

.landing-shell,
.landing-left,
.landing-right,
.landing-brand {
  display: contents;
}

.landing-logo {
  display: block;
  width: min(160px, 50vw);
  margin: 0 auto 2px;
  height: auto;
}

.landing-tagline {
  margin: 0 0 8px;
  padding: 0 4px;
  text-align: center;
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.landing-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
  flex-shrink: 0;
  padding: 0 2px;
  overflow: hidden;
}

.landing-phone-glow {
  position: absolute;
  inset: 4% 0 -6%;
  background: radial-gradient(circle, var(--orange-glow), transparent 72%);
  filter: blur(20px);
  pointer-events: none;
}

.landing-phone {
  position: relative;
  width: 100%;
  border-radius: 54px;
  padding: 14px;
  background: linear-gradient(165deg, #45403a 0%, #1c1916 38%, #0a0908 100%);
  box-shadow:
    0 38px 76px rgba(0, 0, 0, 0.68),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.landing-phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  width: 100%;
  aspect-ratio: 1320 / 2687;
  background: #000;
  line-height: 0;
}

.landing-phone-screen img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  border-top-color: rgba(255, 106, 31, 0.42);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.landing-hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 31, 0.16), transparent 50%);
  pointer-events: none;
}

.landing-hero > *:not(.landing-hero-glow) {
  position: relative;
  z-index: 1;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.landing-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.landing-title {
  margin: 0;
  font-size: clamp(28px, 7vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.landing-title .accent {
  color: var(--orange);
}

.landing-lead {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.landing-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.landing-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(91, 214, 140, 0.55);
  animation: landing-pulse 2.4s ease-in-out infinite;
}

.landing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.landing-trust li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.landing-trust li::before {
  content: '✓ ';
  color: var(--orange);
}

.landing-ctas {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.landing-store-badges {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 0 6px;
  margin: 2px auto 0;
}

.landing-store-badge {
  flex: 1 1 0;
  min-width: 0;
  max-width: 196px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 11px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 106, 31, 0.48);
  box-shadow:
    0 0 20px rgba(255, 106, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-store-badge:active {
  transform: scale(0.98);
}

.landing-store-badge.soon {
  opacity: 0.76;
  cursor: default;
}

.landing-store-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.landing-store-badge-icon--play {
  width: 26px;
  height: 26px;
}

.landing-store-badge-icon--play svg,
.landing-store-badge-icon--play .landing-store-play-img {
  display: block;
  width: 24px;
  height: 26px;
}

.landing-store-badge-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}

.landing-store-badge-copy--solo {
  justify-content: center;
}

.landing-store-badge-copy--solo strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.landing-store-badge--play-soon {
  justify-content: center;
  gap: 10px;
  padding-inline: 10px;
}

.landing-store-badge-copy small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  opacity: 0.88;
  white-space: nowrap;
}

.landing-store-badge-copy strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.landing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.landing-btn:active {
  transform: scale(0.985);
}

.landing-btn-icon {
  flex-shrink: 0;
}

.landing-btn-primary {
  background: var(--orange);
  color: #100d0a;
  box-shadow: 0 12px 32px var(--orange-glow);
}

.landing-btn-merch {
  background: rgba(255, 106, 31, 0.14);
  color: var(--text);
  border: 2px solid rgba(255, 106, 31, 0.55);
  box-shadow: 0 10px 28px rgba(255, 106, 31, 0.18);
}

.landing-btn-merch .landing-btn-icon {
  color: var(--orange);
}

.landing-btn-store {
  background: rgba(10, 9, 8, 0.88);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  justify-content: flex-start;
  text-align: left;
}

.landing-btn-store.live {
  background: var(--orange);
  color: #100d0a;
  border-color: rgba(255, 132, 52, 0.55);
  box-shadow: 0 12px 32px var(--orange-glow);
}

.landing-btn-store.soon {
  opacity: 0.78;
  cursor: default;
}

.landing-btn-store svg {
  flex-shrink: 0;
}

.landing-btn-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.landing-btn-copy small {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.72;
  line-height: 1.2;
}

.landing-btn-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.landing-btn-arrow {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(16, 13, 10, 0.14);
}

.landing-eyebrow--live::before {
  background: var(--green);
  box-shadow: 0 0 8px rgba(91, 214, 140, 0.55);
}

.landing-status--live {
  border-color: rgba(91, 214, 140, 0.28);
  background: rgba(91, 214, 140, 0.08);
  color: #c8f0d4;
}

.landing-section-title {
  margin: 0;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text);
}

.landing-section-lead {
  margin: 8px auto 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: var(--text-soft);
}

.landing-features-section {
  margin-top: 14px;
  padding: 20px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(22, 19, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.landing-merch {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 22px 18px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 106, 31, 0.28);
  background:
    linear-gradient(165deg, rgba(42, 30, 20, 0.92) 0%, rgba(18, 15, 12, 0.94) 52%, rgba(14, 12, 10, 0.98) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.landing-merch--spotlight {
  margin-top: 18px;
  padding: 24px 20px 22px;
  border-width: 2px;
  border-color: rgba(255, 106, 31, 0.45);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 106, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.landing-merch-pulse {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(255, 106, 31, 0.55);
  pointer-events: none;
  animation: landing-merch-pulse 2.8s ease-out infinite;
}

@keyframes landing-merch-pulse {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.landing-merch > *:not(.landing-merch-glow):not(.landing-merch-shine) {
  position: relative;
  z-index: 1;
}

.landing-merch-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(255, 106, 31, 0.22), transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 106, 31, 0.1), transparent 55%);
  pointer-events: none;
}

.landing-merch-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, transparent 38%, transparent 100%);
  pointer-events: none;
}

.landing-merch-header {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.landing-merch-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #100d0a;
  background: linear-gradient(145deg, #ff8a45 0%, var(--orange) 55%, #e85a12 100%);
  border: 1px solid rgba(255, 180, 120, 0.45);
  box-shadow: 0 10px 24px rgba(255, 106, 31, 0.35);
}

.landing-merch-copy {
  min-width: 0;
}

.landing-merch-eyebrow {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.landing-merch-title {
  margin: 0;
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.landing-merch-lead {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  text-align: left;
}

.landing-merch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.landing-merch-tags li {
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.landing-merch-cta {
  margin-top: 16px;
  text-decoration: none;
}

.landing-merch-cta-arrow {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(16, 13, 10, 0.14);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.landing-join-actions {
  margin-top: 16px;
}

.landing-join-hint {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.landing-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(38, 33, 28, 0.65);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.landing-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 106, 31, 0.22), rgba(255, 106, 31, 0.06));
  border: 1px solid rgba(255, 106, 31, 0.2);
  font-size: 16px;
}

.landing-feature span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.landing-feature em {
  font-size: 9px;
  font-style: normal;
  color: var(--text-soft);
  line-height: 1.2;
}

.landing-invite-code {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 31, 0.35);
  background: rgba(255, 106, 31, 0.08);
}

.landing-invite-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.landing-invite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.landing-invite-value {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.landing-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: #100d0a;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.landing-join {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 20px 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  border-top-color: rgba(255, 106, 31, 0.42);
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.landing-join > *:not(.landing-join-glow) {
  position: relative;
  z-index: 1;
}

.landing-join-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 31, 0.12), transparent 55%);
  pointer-events: none;
}

.landing-join-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.landing-join-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.landing-join-title {
  margin: 0;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.landing-join-lead {
  margin: 10px auto 0;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
}

.landing-join-cta {
  margin-top: 16px;
  text-decoration: none;
}

/* Owner-only signup counter (?stats=<code>) */
.landing-stats {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(91, 214, 140, 0.5);
  background: rgba(91, 214, 140, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green);
}

.landing-status--join {
  margin-top: 14px;
}

.landing-invite-code--join {
  margin-top: 14px;
  text-align: left;
}

.landing-join-steps {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.landing-join-steps-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
}

.landing-join-steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.landing-join-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-soft);
}

.landing-join-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 31, 0.18);
  border: 1px solid rgba(255, 106, 31, 0.35);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.landing-join-social {
  margin: 16px auto 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

.landing-join-social a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  padding: 2px 0;
}

.landing-join-email {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-join-closer {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  opacity: 0.9;
}

.landing-footer {
  margin-top: 16px;
  text-align: center;
}

.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin-bottom: 8px;
}

.landing-footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.landing-footer-tag {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
}

.landing-hidden {
  display: none !important;
}

@keyframes landing-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes landing-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(91, 214, 140, 0.55);
  }

  50% {
    opacity: 0.75;
    box-shadow: 0 0 14px rgba(91, 214, 140, 0.85);
  }
}

@keyframes landing-glow {
  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .landing-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
  .landing-phone,
  .landing-status-dot,
  .landing-phone-glow,
  .landing-merch-pulse {
    animation: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .landing-btn-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 16px 36px var(--orange-glow);
  }

  .landing-btn-merch:hover {
    background: rgba(255, 106, 31, 0.22);
    border-color: rgba(255, 106, 31, 0.75);
    box-shadow: 0 14px 36px rgba(255, 106, 31, 0.28);
    transform: translateY(-1px);
  }

  .landing-store-badge.live:hover {
    border-color: rgba(255, 132, 52, 0.78);
    box-shadow:
      0 0 28px rgba(255, 106, 31, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  .landing-store-badge.soon:hover {
    transform: none;
  }

  .landing-btn-store.live:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
  }

  .landing-btn-store.soon:hover {
    transform: none;
    filter: none;
  }

  .landing-feature:hover {
    border-color: rgba(255, 106, 31, 0.28);
    background: rgba(48, 40, 34, 0.92);
    transform: translateY(-2px);
  }

  .landing-footer-links a:hover {
    color: var(--text-soft);
  }

  .landing-join-social a:hover {
    color: var(--text);
  }

  .landing-merch-cta:hover {
    filter: brightness(1.06);
    box-shadow: 0 14px 36px var(--orange-glow);
  }

  .landing-merch-tags li:hover {
    border-color: rgba(255, 106, 31, 0.35);
    color: var(--text);
  }

  .landing-copy-btn:hover {
    filter: brightness(1.08);
  }
}

@media (max-height: 740px) {
  .landing-phone {
    padding: 12px;
    border-radius: 48px;
  }

  .landing-phone-screen {
    border-radius: 40px;
  }

  .landing-hero {
    padding: 16px 16px;
  }
}

@media (min-width: 768px) {
  body {
    touch-action: auto;
  }

  .landing {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    padding: 36px 20px 48px;
    min-height: auto;
  }

  .landing-logo {
    width: 220px;
    margin-bottom: 4px;
  }

  .landing-tagline {
    margin-bottom: 12px;
    font-size: 10px;
  }
}

@media (min-width: 1024px) {
  .landing-vignette {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 30% 55% at 0% 50%, rgba(255, 106, 31, 0.07), transparent 72%),
      radial-gradient(ellipse 30% 55% at 100% 50%, rgba(255, 106, 31, 0.07), transparent 72%),
      radial-gradient(ellipse 90% 70% at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.42) 100%);
  }

  .landing-bg::after {
    background:
      radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 106, 31, 0.12), transparent 58%),
      radial-gradient(ellipse 55% 45% at 100% 100%, rgba(94, 58, 31, 0.18), transparent 52%);
  }

  .landing {
    max-width: 1240px;
    padding: clamp(12px, calc((100dvh - 720px) / 2), 32px) 40px 20px;
    min-height: 100dvh;
    justify-content: center;
    gap: 14px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(14, 12, 9, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      0 40px 100px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .landing-shell {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(380px, 1fr);
    column-gap: clamp(40px, 5vw, 72px);
    align-items: center;
  }

  .landing-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .landing-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }

  .landing-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .landing-logo {
    width: min(280px, 100%);
    margin: 0;
  }

  .landing-tagline {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .landing-phone-wrap {
    width: 100%;
    max-width: 270px;
    margin: 0;
    overflow: visible;
  }

  .landing-store-badges {
    max-width: 270px;
    padding: 0;
    margin-top: 4px;
  }

  .landing-store-badge {
    max-width: none;
  }

  .landing-phone-glow {
    animation: landing-glow 4s ease-in-out infinite;
  }

  .landing-phone {
    border-radius: 44px;
    padding: 11px;
    width: fit-content;
    margin: 0 auto;
    animation: landing-float 5.5s ease-in-out infinite;
  }

  .landing-phone-screen {
    border-radius: 36px;
    max-height: min(42vh, 380px);
    width: auto;
    height: min(42vh, 380px);
    margin: 0 auto;
    aspect-ratio: 1320 / 2687;
  }

  .landing-hero {
    padding: 22px 24px;
    margin-top: 0;
  }

  .landing-ctas {
    margin-top: 0;
  }

  .landing-btn {
    min-height: 50px;
    font-size: 14px;
  }

  .landing-btn-primary {
    width: 100%;
  }

  .landing-title {
    font-size: clamp(30px, 2.5vw, 38px);
  }

  .landing-lead {
    font-size: 15px;
    max-width: 44ch;
    margin-top: 8px;
  }

  .landing-status {
    margin-top: 12px;
  }

  .landing-trust {
    justify-content: flex-start;
    margin-top: 12px;
    gap: 6px 14px;
  }

  .landing-features-section {
    margin-top: 0;
    padding: 22px 24px;
  }

  .landing-merch {
    margin-top: 0;
    padding: 24px 26px 22px;
  }

  .landing-merch-lead {
    max-width: 52ch;
  }

  .landing-section-title {
    text-align: left;
    font-size: 22px;
  }

  .landing-section-lead {
    text-align: left;
    margin-left: 0;
  }

  .landing-features {
    margin-top: 14px;
    gap: 10px;
  }

  .landing-feature {
    padding: 11px 8px;
  }

  .landing-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .landing-feature span {
    font-size: 11px;
  }

  .landing-feature em {
    font-size: 10px;
  }

  .landing-footer {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 16px;
  }

  .landing-footer-links {
    margin: 0;
    gap: 6px 16px;
  }

  .landing-footer-tag {
    margin: 0;
    font-size: 9px;
    opacity: 0.65;
  }

  .landing-footer-tag::before {
    content: '·';
    margin-right: 16px;
    opacity: 0.5;
  }
}

@media (min-width: 1280px) {
  .landing {
    max-width: 1320px;
    padding-left: 56px;
    padding-right: 56px;
  }

  .landing-shell {
    grid-template-columns: minmax(260px, 320px) minmax(420px, 1fr);
    column-gap: 80px;
  }

  .landing-logo {
    width: min(320px, 100%);
  }

  .landing-tagline {
    font-size: 12px;
  }

  .landing-phone-wrap {
    max-width: 290px;
  }

  .landing-phone-screen {
    max-height: min(44vh, 400px);
    height: min(44vh, 400px);
  }

  .landing-title {
    font-size: 40px;
  }

  .landing-hero {
    padding: 24px 28px;
  }
}

@media (min-width: 1440px) {
  .landing {
    max-width: 1380px;
    padding-left: 72px;
    padding-right: 72px;
  }

  .landing-logo {
    width: min(360px, 100%);
  }

  .landing-phone-wrap {
    max-width: 300px;
  }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .landing {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 10px;
  }

  .landing-left {
    gap: 10px;
  }

  .landing-logo {
    width: min(220px, 100%);
  }

  .landing-phone-screen {
    max-height: min(38vh, 340px);
    height: min(38vh, 340px);
  }

  .landing-hero {
    padding: 16px 18px;
  }

  .landing-title {
    font-size: 28px;
  }

  .landing-feature {
    padding: 8px 6px;
  }

  .landing-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}
