:root {
  --app-height: 100vh;
  --bg: #070807;
  --bg-soft: #10130f;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.12);
  --green: #67d48a;
  --green-deep: #16a34a;
  --cream: #fff4dc;
  --ember: #f1623a;
  --card: rgba(255, 255, 255, 0.09);
  --card-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overscroll-behavior-x: none;
  overflow-x: hidden;
  overflow-x: clip;
  background: #070807;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: var(--app-height);
  color: var(--ink);
  font-family: Sora, Avenir Next, Montserrat, Trebuchet MS, sans-serif;
  background: transparent;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .site-shell {
    overflow-x: hidden;
    overflow-x: clip;
  }
}

main,
section,
.site-shell,
.hero,
.hero-copy,
.phone-stage,
.site-footer {
  overflow-x: clip;
}

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

.bg-video,
.phone-full-video {
  height: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(100% - 36px, var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 110px;
}

.top-logo {
  position: relative;
  top: 72px !important;
  display: flex;
  align-items: center;
  margin-top: 0;
  transform: none;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand,
.app-logo-mini {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-word {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.brand-large .logo-word {
  font-size: 40px;
}

.brand-large .logo-line i,
.brand-large .logo-line b {
  height: 5px;
}

.brand-large .logo-line i {
  width: 108px;
}

.brand-large .logo-line b {
  width: 34px;
}

.logo-word span {
  color: var(--green);
}

.logo-line {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.logo-line i,
.logo-line b {
  display: block;
  height: 3px;
  border-radius: 999px;
}

.logo-line i {
  width: 74px;
  background: var(--green);
}

.logo-line b {
  width: 24px;
  background: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta,
.button,
.input-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-cta {
  padding: 0 20px;
  color: #071007;
  background: var(--green);
}

.section-grid,
.problem-band,
.steps,
.gallery-section,
.restaurant-panel,
.waitlist-section {
  margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
  min-height: calc(var(--app-height) - 136px);
  padding: 8px 0 6px;
  transform: none;
  overflow: visible;
}

main:has(.hero.section-grid),
.site-shell:has(.hero.section-grid) {
  overflow: visible;
}

.hero-copy {
  text-align: left;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.green-dot {
  color: var(--green);
}

h1 {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.hero-lead {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  overflow: visible;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.hero-actions .button {
  min-height: 60px;
  min-width: 220px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  gap: 12px;
}

.apple-logo {
  width: 40px;
  height: 40px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button-primary {
  color: #071007;
  background: linear-gradient(135deg, var(--green), #b8ffd0);
  box-shadow: 0 20px 60px rgba(103, 212, 138, 0.25);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-row strong {
  color: #fff;
}

.phone-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: start center;
  padding-top: 0;
  margin-top: -96px;
  overflow: visible;
}

.glow-card {
  position: absolute;
  border-radius: 48px;
  filter: blur(0.2px);
}

.glow-one {
  width: 315px;
  height: 430px;
  rotate: -13deg;
  background: linear-gradient(135deg, rgba(103, 212, 138, 0.4), rgba(255, 255, 255, 0.04));
}

.glow-two {
  width: 300px;
  height: 440px;
  translate: 44px 42px;
  rotate: 15deg;
  background: linear-gradient(135deg, rgba(241, 98, 58, 0.34), rgba(255, 244, 220, 0.06));
}

.phone-frame {
  position: relative;
  width: min(348px, 100%);
  aspect-ratio: 71.5 / 146.6;
  padding: 0;
  min-height: 0;
  transform: scale(0.96);
  transform-origin: top center;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 54px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.06) 26%, rgba(0, 0, 0, 0.2) 42%),
    linear-gradient(145deg, #151515, #080808);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 0 11px #050505;
}

.phone-full-video {
  position: absolute;
  inset: 11px 11px 18px;
  width: calc(100% - 22px);
  height: calc(100% - 25px);
  object-fit: fill;
  object-position: center;
  border-radius: 42px;
  z-index: 0;
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
}

.phone-frame::before {
  top: 132px;
  height: 74px;
}

.phone-frame::after {
  top: 222px;
  height: 118px;
}

.app-logo-mini {
  margin: 12px 0 18px 10px;
}

.phone-frame > .app-logo-mini {
  margin-top: 80px !important;
}

.app-logo-mini .logo-word {
  font-size: 32px;
}

.app-logo-mini .logo-line i {
  width: 91px;
}

.app-logo-mini .logo-line b {
  width: 30px;
}

.feed-card {
  position: relative;
  overflow: hidden;
  height: 292px;
  border-radius: 32px;
  background: #111;
}

.feed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 72px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}

.pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #071007;
  border-radius: 999px;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.feed-overlay h2 {
  margin-bottom: 6px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.feed-overlay p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.stacked-cards {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.stacked-cards article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
}

.stacked-cards img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 17px;
}

.stacked-cards strong,
.stacked-cards span {
  display: block;
}

.stacked-cards span {
  margin-top: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.problem-band,
.restaurant-panel,
.waitlist-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 48px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.marker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.problem-band h2,
.section-heading h2,
.restaurant-panel h2,
.waitlist-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.problem-band p,
.restaurant-panel p,
.waitlist-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 68px;
  color: var(--green);
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.taste-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.74fr;
  gap: 18px;
  align-items: end;
}

.taste-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
}

.taste-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.7s ease;
}

.taste-gallery figure:hover img {
  scale: 1.04;
}

.taste-gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(16px);
  font-weight: 800;
}

.tall-card {
  height: 520px;
}

.offset-card {
  height: 430px;
  translate: 0 -44px;
}

.compact-card {
  height: 340px;
}

.restaurant-panel {
  grid-template-columns: 0.9fr 1fr;
  background:
    radial-gradient(circle at 92% 10%, rgba(103, 212, 138, 0.2), transparent 24rem),
    rgba(255, 255, 255, 0.07);
}

.restaurant-panel h2 {
  margin-bottom: 20px;
}

.restaurant-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.restaurant-metrics div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(103, 212, 138, 0.24), rgba(255, 255, 255, 0.08));
}

.restaurant-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.restaurant-metrics span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.waitlist-section {
  margin-bottom: 72px;
  grid-template-columns: 0.9fr 1fr;
  background:
    linear-gradient(135deg, rgba(103, 212, 138, 0.2), rgba(241, 98, 58, 0.12)),
    rgba(255, 255, 255, 0.07);
}

.waitlist-section h2 {
  margin-bottom: 18px;
}

.waitlist-form {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.26);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.09);
}

.input-row input:focus {
  border-color: rgba(103, 212, 138, 0.78);
  box-shadow: 0 0 0 4px rgba(103, 212, 138, 0.12);
}

.input-row button {
  min-width: 124px;
  border: 0;
  color: #071007;
  cursor: pointer;
  background: var(--green);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

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

  .nav {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .problem-band,
  .restaurant-panel,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-top: 20px;
  }

  .phone-stage {
    min-height: 540px;
    margin-top: 0;
    place-items: center;
  }

  .phone-frame {
    width: min(344px, 100%);
    transform: scale(0.93);
  }

  .step-grid,
  .taste-gallery,
  .restaurant-metrics {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-card span {
    margin-bottom: 34px;
  }

  .offset-card {
    translate: 0;
  }

  .tall-card,
  .offset-card,
  .compact-card {
    height: 360px;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-gap: 22px;
  }

  .site-shell {
    width: min(100% - 22px, var(--max));
  }

  .top-logo {
    top: 24px !important;
    justify-content: center;
    margin-bottom: var(--mobile-gap);
    text-align: center;
  }

  .brand-large,
  .top-logo .brand {
    align-items: center;
  }

  .brand-large .logo-word {
    font-size: 30px;
  }

  .brand-large .logo-line i {
    width: 82px;
  }

  .brand-large .logo-line b {
    width: 26px;
  }

  .nav {
    top: 10px;
    padding: 12px;
    margin-top: 0;
    margin-bottom: var(--mobile-gap);
  }

  .logo-word {
    font-size: 22px;
  }

  .logo-line i {
    width: 64px;
  }

  .logo-line b {
    width: 21px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 100%;
    font-size: clamp(1.78rem, 8.2vw, 2.25rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .input-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
    justify-content: center;
    margin-bottom: var(--mobile-gap);
  }

  .hero-actions .button {
    width: auto;
    min-width: 188px;
    max-width: 230px;
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .apple-logo {
    width: 30px;
    height: 30px;
  }

  .trust-row span {
    width: 100%;
  }

  .section-grid,
  .problem-band,
  .steps,
  .gallery-section,
  .restaurant-panel,
  .waitlist-section {
    margin-top: calc(var(--mobile-gap) * 2);
  }

  .phone-stage {
    min-height: 440px;
    padding-top: 6px;
  }

  .phone-frame {
    width: min(290px, 100%);
    border-radius: 42px;
    transform: none;
  }

  .phone-full-video {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .glow-one {
    width: 218px;
    height: 320px;
    rotate: -10deg;
  }

  .glow-two {
    width: 210px;
    height: 320px;
    translate: 16px 28px;
    rotate: 10deg;
  }

  .feed-card {
    height: 286px;
  }

  .problem-band,
  .restaurant-panel,
  .waitlist-section {
    padding: 24px;
    border-radius: 26px;
  }

  .section-heading {
    margin-bottom: var(--mobile-gap);
  }

  .step-grid,
  .taste-gallery,
  .restaurant-metrics,
  .waitlist-copy,
  .waitlist-form {
    gap: var(--mobile-gap);
  }

  .problem-band,
  .restaurant-panel,
  .waitlist-section {
    gap: var(--mobile-gap);
  }

  .restaurant-metrics div {
    min-height: 136px;
  }

}


.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--app-height);
  object-fit: cover;
  z-index: -3;
  background: #070807;
}

.bg-video-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: block;
  background: linear-gradient(135deg, rgba(5, 6, 5, 0.58) 0%, rgba(12, 17, 13, 0.54) 48%, rgba(21, 16, 13, 0.6) 100%);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-footer.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  width: 100%;
  min-width: 0;
}

.footer-links button {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: #fff;
}

.info-modal {
  width: min(100% - 32px, 560px);
  max-height: min(78vh, 680px);
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.info-modal::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(7, 8, 7, 0.94);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.info-modal h2 {
  margin: 0 48px 18px 0;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.modal-body {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.modal-body p {
  margin: 0;
}

.modal-body a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 560px) {
  .site-shell {
    padding-bottom: 130px;
  }

  .site-footer {
    bottom: max(16px, env(safe-area-inset-bottom));
    width: min(100% - 22px, var(--max));
  }

  .footer-links {
    gap: 10px 22px;
    font-size: 0.74rem;
  }

  .footer-links button {
    white-space: normal;
    text-align: center;
  }

  .modal-panel {
    padding: 24px;
  }

  .info-modal {
    max-height: 82vh;
  }
}

@supports (height: 100dvh) {
  :root {
    --app-height: 100dvh;
  }
}

@supports not (height: 100dvh) {
  @supports (height: 100svh) {
    :root {
      --app-height: 100svh;
    }
  }
}
