:root {
  --bg: #08060f;
  --bg-elevated: #120e22;
  --bg-soft: #17122b;
  --ink: #f8fafc;
  --muted: #aeb0c4;
  --subtle: #7d7c98;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(196, 169, 255, 0.28);
  --purple: #6b4eff;
  --purple-deep: #3b1e8f;
  --purple-lift: #8b72ff;
  --purple-soft: rgba(107, 78, 255, 0.18);
  --violet: #b49bff;
  --gold: #e9c877;
  --gold-soft: rgba(233, 200, 119, 0.13);
  --mint: #5fe0b4;
  --mint-soft: rgba(95, 224, 180, 0.12);
  --danger: #ff6b8a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(6, 3, 18, 0.55);
  --glass: inset 0 1px 0 rgba(255, 255, 255, 0.075);
  --content: 1120px;
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% -4%, rgba(107, 78, 255, 0.26), transparent 38rem),
    radial-gradient(circle at 88% 4%, rgba(180, 155, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 78% 96%, rgba(233, 200, 119, 0.07), transparent 32rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 75%);
  animation: grid-breathe 18s var(--motion-ease) infinite alternate;
}

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-drift {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(0.99);
  }

  to {
    transform: translate3d(1.5%, 0, 0) scale(1.01);
  }
}

@keyframes wing-sheen {
  from {
    opacity: 0;
    transform: translateX(-130%) rotate(18deg);
  }

  35%,
  70% {
    opacity: 0.55;
  }

  to {
    opacity: 0;
    transform: translateX(130%) rotate(18deg);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px var(--gold-soft), 0 0 26px rgba(233, 200, 119, 0.7);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(233, 200, 119, 0.08), 0 0 34px rgba(233, 200, 119, 0.92);
  }
}

@keyframes grid-breathe {
  from {
    opacity: 0.62;
  }

  to {
    opacity: 0.9;
  }
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--bg);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(180, 155, 255, 0.13);
  background: rgba(12, 9, 24, 0.8);
  backdrop-filter: blur(18px);
  animation: page-rise 700ms var(--motion-ease) both;
}

/* Thin violet-to-gold seam under the nav — the family accent, one pixel tall. */
.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(107, 78, 255, 0.55) 28%, rgba(233, 200, 119, 0.5) 62%, transparent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Two soft gold highlights read as a pair of wings over a violet field. */
.brand-mark {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 11px;
  background:
    radial-gradient(circle at 24% 26%, rgba(233, 200, 119, 0.5), transparent 52%),
    radial-gradient(circle at 76% 26%, rgba(233, 200, 119, 0.32), transparent 52%),
    linear-gradient(150deg, var(--purple), var(--purple-deep));
  color: white;
  font-weight: 850;
  box-shadow: 0 12px 34px rgba(107, 78, 255, 0.34), var(--glass);
}

.brand-mark::after {
  position: absolute;
  inset: -45% 35%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: wing-sheen 7s ease-in-out 1.1s infinite;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(180, 155, 255, 0.1);
  color: var(--ink);
  outline: none;
}

.hero,
.section,
.footer {
  max-width: var(--content);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 72px;
  padding-bottom: 88px;
}

.hero-copy {
  animation: page-rise 820ms var(--motion-ease) 80ms both;
}

/* Mirrored ellipses behind the headline: an open wing pair, barely there. */
.hero::before {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: -1;
  width: min(1080px, 130%);
  height: 70%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 32% 46% at 30% 38%, rgba(107, 78, 255, 0.2), transparent 70%),
    radial-gradient(ellipse 32% 46% at 70% 38%, rgba(180, 155, 255, 0.13), transparent 70%),
    radial-gradient(ellipse 22% 30% at 32% 78%, rgba(233, 200, 119, 0.07), transparent 70%),
    radial-gradient(ellipse 22% 30% at 68% 78%, rgba(233, 200, 119, 0.05), transparent 70%);
  animation: soft-drift 16s var(--motion-ease) infinite alternate;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 830px;
  font-size: clamp(46px, 8vw, 88px);
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 20px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.tagline {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 730;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-lift));
  color: white;
  box-shadow: 0 16px 44px rgba(107, 78, 255, 0.34), var(--glass);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(180, 155, 255, 0.07);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(233, 200, 119, 0.42);
}

.status-panel,
.beta-card,
.beta-info-card,
.feature-card,
.phone-shell,
.resilience-grid article {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(180, 155, 255, 0.09), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow), var(--glass);
}

.status-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  animation: page-rise 820ms var(--motion-ease) 180ms both;
}

.status-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px var(--gold-soft), 0 0 26px rgba(233, 200, 119, 0.7);
  animation: dot-pulse 3.8s ease-in-out infinite;
}

.mini-terminal {
  padding: 22px;
  background: rgba(6, 4, 14, 0.55);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.mini-terminal p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(180, 155, 255, 0.12);
  color: var(--ink);
}

.mini-terminal p:last-child {
  border-bottom: 0;
}

.mini-terminal span {
  color: var(--subtle);
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgba(233, 200, 119, 0.3);
  transform: translateY(-2px);
}

.feature-card h3,
.beta-info-card h3,
.resilience-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.feature-card p,
.resilience-grid p,
.beta-card p,
.beta-info-card li,
.footer p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.resilience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius-md);
}

/* Cocoon-like glow tucked into the corner of each stage card. */
.resilience-grid article::after {
  position: absolute;
  top: -30%;
  right: -18%;
  width: 60%;
  height: 60%;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 155, 255, 0.16), transparent 68%);
}

.step {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 48px;
  padding: 0 11px;
  border: 1px solid rgba(233, 200, 119, 0.3);
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.beta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(107, 78, 255, 0.3), rgba(233, 200, 119, 0.08)),
    var(--bg-elevated);
}

/* Wing pair, wide and faint, spread across the closing panel. */
.beta-card::after {
  position: absolute;
  right: -10%;
  bottom: -55%;
  width: 70%;
  height: 130%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse 34% 48% at 34% 42%, rgba(180, 155, 255, 0.16), transparent 70%),
    radial-gradient(ellipse 34% 48% at 66% 42%, rgba(233, 200, 119, 0.1), transparent 70%);
}

.beta-card > * {
  position: relative;
  z-index: 1;
}

.beta-card p {
  margin-top: 18px;
  font-size: 17px;
}

.beta-actions {
  display: grid;
  gap: 14px;
}

.mockup-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.phone-mockup {
  display: grid;
  gap: 16px;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 16px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(180, 155, 255, 0.2), transparent 30%),
    radial-gradient(circle at 84% 6%, rgba(233, 200, 119, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    #0b0817;
}

.phone-shell::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 23px;
  border-radius: 0 0 16px 16px;
  background: #07050e;
  content: "";
  transform: translateX(-50%);
}

.phone-shell.offset {
  margin-top: 34px;
}

.phone-status,
.screen-header,
.conversation-top,
.chat-row,
.path-card,
.check-row,
.composer {
  display: flex;
  align-items: center;
}

.phone-status {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  padding: 7px 10px 13px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 11px;
  font-weight: 720;
}

.app-screen {
  display: flex;
  flex-direction: column;
  min-height: 542px;
  padding: 18px;
  border: 1px solid rgba(180, 155, 255, 0.11);
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(23, 18, 43, 0.96), rgba(8, 6, 15, 0.96)),
    var(--bg-elevated);
}

.screen-header {
  justify-content: space-between;
  gap: 14px;
}

.screen-header.compact {
  margin-bottom: 18px;
}

.screen-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-header h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.screen-pill,
.shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 12px;
  font-weight: 780;
}

.search-bar,
.composer {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(180, 155, 255, 0.08);
  color: var(--subtle);
  font-size: 13px;
}

.chat-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.chat-row {
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(180, 155, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-row.active {
  border-color: rgba(180, 155, 255, 0.3);
  background: rgba(107, 78, 255, 0.14);
}

.chat-row div,
.conversation-top div,
.path-card div {
  display: grid;
  min-width: 0;
}

.chat-row strong,
.conversation-top strong,
.key-card strong,
.path-card strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.chat-row small,
.conversation-top small,
.key-card small,
.path-card small {
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.35;
}

.chat-row time {
  margin-left: auto;
  color: var(--subtle);
  font-size: 11px;
}

.avatar {
  display: inline-grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--purple-lift));
  color: white;
  font-weight: 820;
}

.avatar.gold {
  background: linear-gradient(135deg, #d8ab4e, #f4dda0);
  color: #241703;
}

.avatar.violet {
  background: linear-gradient(135deg, var(--purple-deep), var(--violet));
}

.chat-detail-screen {
  gap: 14px;
  background:
    radial-gradient(circle at 80% 8%, rgba(107, 78, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(18, 14, 34, 0.96), rgba(8, 6, 15, 0.98));
}

.conversation-top {
  gap: 12px;
  margin-bottom: 14px;
}

.conversation-top .shield {
  min-width: 34px;
  width: 34px;
  margin-left: auto;
  padding: 0;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.message.incoming {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.075);
  border-bottom-left-radius: 6px;
}

.message.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--purple), var(--purple-lift));
  border-bottom-right-radius: 6px;
}

.path-card {
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(95, 224, 180, 0.24);
  border-radius: 18px;
  background: var(--mint-soft);
}

.path-card > span {
  width: 11px;
  height: 38px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 24px rgba(95, 224, 180, 0.45);
}

.composer {
  justify-content: space-between;
  margin-top: auto;
}

.composer span {
  color: var(--gold);
}

.key-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(107, 78, 255, 0.3);
  border-radius: 22px;
  background: rgba(107, 78, 255, 0.14);
}

.key-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 26% 24%, rgba(233, 200, 119, 0.45), transparent 55%),
    linear-gradient(150deg, var(--purple), var(--purple-deep));
  color: white;
  font-size: 24px;
}

.check-row {
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.check-row span {
  color: var(--mint);
}

.mock-button {
  min-height: 48px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple-lift));
  color: white;
  font: inherit;
  font-weight: 760;
}

.mockup-caption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.download-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  border: 1px dashed rgba(233, 200, 119, 0.4);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 740;
}

.beta-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.beta-info-card {
  min-height: 300px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.beta-info-card .eyebrow {
  margin-bottom: 14px;
}

.beta-info-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.beta-info-card li::marker {
  color: var(--gold);
}

.beta-info-card.caution {
  background:
    linear-gradient(180deg, rgba(255, 107, 138, 0.12), rgba(255, 255, 255, 0.035)),
    var(--bg-soft);
}

.beta-info-card.caution li::marker {
  color: var(--danger);
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 42px;
  border-top: 1px solid rgba(180, 155, 255, 0.13);
}

/* Small wing pair as the family signature at the very bottom. */
.family-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.family-note::before {
  flex: 0 0 auto;
  width: 22px;
  height: 11px;
  content: "";
  border-radius: 11px 11px 3px 3px;
  background:
    radial-gradient(ellipse 50% 100% at 22% 100%, var(--purple-lift), transparent 72%),
    radial-gradient(ellipse 50% 100% at 78% 100%, var(--gold), transparent 72%);
  opacity: 0.85;
}

/* CSS-only page loading line: a tiny violet/gold trace grows as the page scrolls. */
@supports (animation-timeline: scroll(root)) {
  body::after {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    height: 2px;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, var(--purple), var(--violet), var(--gold));
    box-shadow: 0 0 18px rgba(180, 155, 255, 0.5);
    transform: scaleX(0);
    transform-origin: left center;
    animation: scroll-progress linear both;
    animation-timeline: scroll(root block);
  }
}

/* CSS-only scroll reveal: supported browsers animate; others simply show content. */
@supports (animation-timeline: view()) {
  .section-heading,
  .feature-card,
  .resilience-grid article,
  .phone-mockup,
  .beta-card,
  .beta-info-card,
  .footer > * {
    animation: page-rise linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
    will-change: opacity, transform;
  }

  .phone-shell.offset {
    animation-range: entry 12% cover 34%;
  }

  .beta-card::after {
    animation: soft-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 70%;
  }
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .beta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .resilience-grid,
  .mockup-stage,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    min-height: 560px;
  }

  .app-screen {
    min-height: 492px;
  }

  .phone-shell.offset {
    margin-top: 0;
  }

  .resilience-grid article,
  .beta-info-card {
    min-height: auto;
  }

  .step {
    margin-bottom: 24px;
  }

  .footer {
    flex-direction: column;
  }
}

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