:root {
  color-scheme: dark;
  --bg-base: #120602;
  --glow-amber-strong: rgba(142, 44, 10, 0.65);
  --glow-amber-soft: rgba(96, 28, 6, 0.38);
  --surface: rgba(40, 16, 8, 0.78);
  --surface-strong: rgba(54, 22, 12, 0.9);
  --accent: #ff6f3c;
  --accent-hover: #ff8553;
  --text: #f6f1ff;
  --muted: #d3c1b0;
  --shadow: 0 28px 60px rgba(4, 1, 0, 0.65);
  --max-width: 1100px;
  --text-font: "Monaco";
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg-base);
}

body {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -14% -28%;
  background: url("/assets/liquid-bg.png") center/cover no-repeat;
  filter: brightness(1.05) saturate(1.2);
  opacity: 0.68;
  transform: scale(1.22);
  transform-origin: center;
  pointer-events: none;
  z-index: -1;
}

body::before {
  animation: liquid-drift 46s ease-in-out infinite;
}

body::after {
  mix-blend-mode: screen;
  opacity: 0.32;
  filter: blur(22px) saturate(1.35);
  animation: liquid-flow 32s ease-in-out infinite;
}

@keyframes liquid-flow {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1.26) rotate(0deg);
  }
  35% {
    transform: translate3d(4%, 6%, 0) scale(1.23) rotate(2deg);
  }
  65% {
    transform: translate3d(-3%, 5%, 0) scale(1.29) rotate(-3deg);
  }
  100% {
    transform: translate3d(6%, -6%, 0) scale(1.25) rotate(1deg);
  }
}

@keyframes liquid-drift {
  0% {
    transform: translate3d(3%, -6%, 0) scale(1.2) rotate(-2deg);
  }
  50% {
    transform: translate3d(-4%, 5%, 0) scale(1.27) rotate(1deg);
  }
  100% {
    transform: translate3d(5%, -3%, 0) scale(1.24) rotate(3deg);
  }
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

.top-nav {
  padding: 0.85rem 2rem 0;
}

.nav-content {
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: cornflowerblue;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0rem;
  font-family: var(--text-font);
  text-decoration: none;
}

.brand__logo {
  display: block;
  /* height: 42px; */
  height: 95px;
  width: auto;
}

.top-nav nav a + a {
  margin-left: 1.5rem;
}

main {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0rem 0rem 2.75rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 0rem 0 3.5rem;
  text-align: center;
  font-family: var(--text-font);
}

.hero-copy {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-kicker {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--muted);
  /* color: goldenrod; */
}

.hero-title {
  margin: 0;
  font-size: clamp(2.0rem, 5vw, 3.0rem);
  padding: 1.25rem 0 1.25rem;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  /* color: cornflowerblue; */
  /* color: gainsboro; */
  color: goldenrod;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 600;
  text-transform: lowercase;
  color: var(--muted);
  /* color: goldenrod; */
}

.hero-forms {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.75rem 0 0rem;
  align-self: stretch;
  width: 100%;
}

.cta-form {
  background: var(--surface);
  border-radius: 18px;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 100%;
}

.cta-form__title {
  margin: 0 0 0.95rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

.form-fields {
  /* do NOT use display flex */
  display: grid;
  row-gap: 5px;
  column-gap: 0;
}
.form-fields--inline {
  align-items: center;
  gap: 0;
}

.form-fields--inline input {
  flex: 1 1 220px;
}

.waitlist-form__input {
  margin-bottom: 0.4rem;
}

.form-fields--inline .waitlist-form__input {
  margin-bottom: 0;
  margin-right: 0.75rem;
}

.cta-form input {
  padding: clamp(0.75rem, 3vw, 0.95rem) clamp(0.9rem, 3vw, 1.1rem);
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 111, 60, 0.35);
}

.cta-form button {
  padding: 0.95rem 1.7rem;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  /* background: linear-gradient(135deg, var(--accent), #d14eff); */
  background: linear-gradient(135deg, var(--accent), #a57b27);
  color: #0f0f1a;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-form button:hover:enabled,
.cta-form button:focus-visible:enabled {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(209, 78, 255, 0.35);
}

.cta-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

#form-hint {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1rem;
  margin-top: 0.65rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-status.error {
  color: #ff837a;
}

.form-status.success {
  color: cornflowerblue;
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-demo-root {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-demo {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-demo-fallback {
  display: contents;
}

.hero-demo-noscript {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.device-frame {
  width: clamp(240px, 28vw, 290px);
  padding: 1.1rem;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(34, 21, 12, 0.95), rgba(10, 5, 2, 0.98));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.device-screen {
  position: relative;
  border-radius: 28px;
  background: #070809;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  color: #f2f4f7;
}

.device-screen::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(25, 25, 27, 0.85);
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.app-header {
  position: relative;
  padding: 1.75rem 1.35rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.app-header--with-back {
  padding-left: 3.4rem;
}

.app-header__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.app-header__subtitle {
  font-size: 0.85rem;
  color: rgba(240, 241, 245, 0.7);
}

.hero-back {
  position: absolute;
  top: 1.45rem;
  left: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(25, 28, 36, 0.85);
  display: grid;
  place-items: center;
  color: rgba(229, 232, 240, 0.85);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-back:hover,
.hero-back:focus-visible {
  transform: translateX(-1px);
  border-color: rgba(140, 183, 255, 0.75);
  outline: none;
}

.hero-back__icon {
  width: 0.7rem;
  height: 0.7rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.15rem;
}

.app-content {
  flex: 1;
  padding: 0 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-demo__screen {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-demo__content {
  flex: 1;
  padding: 0 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow-y: auto;
}

.content-card {
  background: rgba(49, 53, 60, 0.92);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 0.75rem;
}

.content-card--primary {
  background: rgba(72, 76, 84, 0.96);
  justify-content: center;
}

.content-card--primary .content-card__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
}

.content-card__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 500;
}

.content-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.content-card__icon-symbol {
  display: block;
  width: 0;
  height: 0;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid rgba(255, 255, 255, 0.85);
  margin-left: 0.12rem;
}

.content-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.content-card__meta {
  font-size: 0.75rem;
  color: rgba(240, 241, 245, 0.65);
}

.content-card__caption {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(240, 241, 245, 0.7);
}

.status-pill {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.status-pill--success {
  background: rgba(46, 189, 89, 0.16);
  color: #57dd8f;
  border: 1px solid rgba(87, 221, 143, 0.35);
}

.status-pill--pending {
  background: rgba(58, 134, 255, 0.16);
  color: #8cb7ff;
  border: 1px solid rgba(92, 155, 255, 0.35);
}

.progress-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.progress-block__label {
  text-transform: lowercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.progress-bar {
  position: relative;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7bf6, #0a60ff);
}

.progress-block__caption {
  font-size: 0.75rem;
  color: rgba(240, 241, 245, 0.7);
}

.answer-form {
  display: grid;
  gap: 0.6rem;
}

.answer-form input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 17, 0.92);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: inherit;
}

.answer-form input:focus {
  outline: 2px solid rgba(47, 123, 246, 0.65);
  outline-offset: 2px;
}

.answer-form button {
  border-radius: 14px;
  background: linear-gradient(90deg, #2f7bf6, #0a60ff);
  border: none;
  color: white;
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.answer-form button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.answer-hint {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 205, 135, 0.9);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: linear-gradient(90deg, #2f7bf6, #0a60ff);
  color: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.hero-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hero-button--outline {
  background: rgba(13, 13, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-button--primary {
  width: 100%;
}

.hero-link {
  background: none;
  border: none;
  color: #8cb7ff;
  font-size: 0.9rem;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.hero-demo__photo-stage {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.photo-frame {
  position: relative;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(26, 28, 34, 0.8);
  min-height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.photo-frame--loaded {
  border-style: solid;
  border-color: rgba(76, 167, 255, 0.45);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame__placeholder {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.photo-actions {
  display: grid;
  gap: 0.6rem;
}

.hero-toast {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 22, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hero-modal {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}

.hero-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 9, 0.7);
}

.hero-modal__panel {
  position: relative;
  background: rgba(12, 15, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.4rem;
  width: min(90vw, 300px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.hero-modal__panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-modal__panel h2 {
  margin: 0;
  font-size: 1rem;
}

.hero-modal__panel button[data-action="close-gallery"] {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-modal__grid {
  display: grid;
  gap: 0.75rem;
}

.hero-modal__choice {
  display: grid;
  gap: 0.45rem;
  background: rgba(26, 28, 34, 0.78);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0.6rem;
  cursor: pointer;
  color: inherit;
}

.hero-modal__choice:focus-visible,
.hero-modal__choice:hover {
  border-color: rgba(76, 167, 255, 0.6);
}

.hero-modal__choice img {
  width: 100%;
  border-radius: 12px;
}

.hero-modal__choice span {
  font-size: 0.85rem;
  text-align: left;
  color: rgba(226, 229, 235, 0.85);
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(18, 20, 26, 0.85);
  border-radius: 16px;
  padding: 0.3rem;
  gap: 0.4rem;
}

.segmented-control button {
  background: none;
  border: none;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: rgba(212, 216, 230, 0.7);
  cursor: pointer;
}

.segmented-control button[aria-selected="true"] {
  background: rgba(47, 123, 246, 0.85);
  color: white;
}

.leaderboard-list {
  margin: 0;
  padding: 0.4rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: rgba(30, 32, 38, 0.9);
  border-radius: 14px;
}

.leaderboard-rank {
  font-size: 0.85rem;
  width: 1.6rem;
  text-align: center;
  color: rgba(226, 229, 235, 0.7);
}

.leaderboard-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.leaderboard-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.leaderboard-meta {
  font-size: 0.78rem;
  color: rgba(226, 229, 235, 0.65);
}

.hero-demo__screen--profile .hero-demo__content {
  gap: 1.2rem;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(30, 32, 38, 0.9);
  border-radius: 18px;
  padding: 1rem;
}

.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(120deg, #2563eb, #9333ea);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: white;
}

.profile-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.profile-bio {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: rgba(226, 229, 235, 0.7);
}

.stats-card {
  background: rgba(30, 32, 38, 0.9);
  border-radius: 18px;
  padding: 1rem;
}

.stats-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.stats-card dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.stats-card dt,
.stats-card dd {
  margin: 0;
  font-size: 0.82rem;
}

.stats-card dd {
  color: rgba(226, 229, 235, 0.75);
}

.app-tabbar {
  margin-top: auto;
  padding: 0.85rem 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  background: #f9f9fb;
  color: #0b1526;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.tab-item {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: rgba(14, 26, 45, 0.6);
  cursor: pointer;
}

.tab-item__icon {
  position: relative;
  width: 1.3rem;
  height: 1.15rem;
  color: inherit;
}

.tab-item__icon::before,
.tab-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 0;
  right: 0;
}

.tab-item__icon::before {
  bottom: 0;
  height: 55%;
  border-radius: 0 0 0.35rem 0.35rem;
}

.tab-item__icon::after {
  top: 0;
  left: 18%;
  right: 18%;
  height: 0.6rem;
  border-radius: 0.1rem;
  transform: rotate(45deg);
}

.tab-item__icon--list::before,
.tab-item__icon--list::after,
.tab-item__icon--profile::before,
.tab-item__icon--profile::after {
  content: none;
}

.tab-item__icon--list {
  position: relative;
}

.tab-item__icon--list::before,
.tab-item__icon--list::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.tab-item__icon--list::before {
  top: 20%;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

.tab-item__icon--list::after {
  bottom: 20%;
}

.tab-item__icon--profile {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
}

.tab-item__icon--profile::before {
  content: "";
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.tab-item__icon--profile::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 0.3rem;
  background: currentColor;
  border-radius: 0.35rem;
}

.tab-item__label {
  font-size: 0.75rem;
}

.tab-item--active {
  color: #0a60ff;
  font-weight: 600;
}

.app-tabbar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.35rem;
  width: 38%;
  height: 0.28rem;
  background: rgba(10, 15, 30, 0.35);
  border-radius: 999px;
}

.daily-highlight {
  margin-top: 2.5rem;
  text-align: center;
}

.daily-highlight h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.daily-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-grid h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
}

.footer-content nav a + a {
  margin-left: 1.5rem;
}

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

.legal-page main,
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-content section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

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

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

@media (max-width: 720px) {
  .top-nav {
    padding: 1.25rem 1.5rem;
  }

  main {
    padding: 1.5rem;
  }

  .cta-form {
    padding: 1.15rem;
  }

  .form-fields--inline {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .form-fields--inline input {
    width: 100%;
  }

  .form-fields--inline .waitlist-form__input {
    margin-right: 0;
    margin-bottom: 0.4rem;
  }

  .cta-form button {
    width: 100%;
  }

  .device-frame {
    width: 240px;
  }

  .legal-content {
    padding: 0 1.5rem 3rem;
  }
}
