/* ---------- Landing page ("/") ---------- */
.landing-app {
  background: var(--bg);
  overflow-x: clip;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.landing-brand .app-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}

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

.landing-nav > a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

/* Below ~480px, "How it works" + "Pricing" + "Sign In" + "Join Now" still
   crowd one row. The two wayfinding links cost the least to drop — both
   sections they jump to are one scroll away regardless, whereas Join Now
   and Sign In are actions someone on a phone still needs. */
@media (max-width: 480px) {
  #landing-how-link,
  #landing-pricing-link {
    display: none;
  }
}

/* Deliberately plain — same weight as the wayfinding links above, not a
   bordered pill like .landing-auth-link. A first-time visitor's header
   should have exactly one thing that looks like a button: Join Now. */
.landing-signin-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.landing-signin-link:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.landing-nav > a:not(.landing-join-btn):hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.landing-join-btn {
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  padding: 9px 18px !important;
  border-radius: 999px;
  margin-left: 6px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-join-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 45%, transparent);
}

.landing-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.landing-auth-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-strong);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.landing-auth-link:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.landing-body {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
}

/* ---------- Hero ---------- */
.landing-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 48px 0 40px;
  text-align: center;
  overflow: visible;
}

.landing-hero-blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.landing-hero-blob-a {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -120px;
  background: color-mix(in srgb, var(--accent) 45%, transparent);
}

.landing-hero-blob-b {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -100px;
  background: color-mix(in srgb, var(--accent-strong) 35%, transparent);
}

.landing-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.landing-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.landing-hero-copy h1 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.landing-highlight {
  background: linear-gradient(100deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-hero-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.landing-hero-cta {
  display: inline-flex;
  width: auto;
  padding: 0 28px;
  min-height: 50px;
  border-radius: 999px;
  flex-direction: row;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: none;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 38%, transparent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 46%, transparent);
}

.landing-hero-secondary {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-strong);
  text-decoration: none;
}

.landing-hero-secondary:hover {
  text-decoration: underline;
}

/* ---------- Hero "product" mockup ---------- */
.landing-hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  padding: 20px 0 36px;
}

.landing-mock-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
  padding: 18px 20px 22px;
  transform: rotate(-2.5deg);
  animation: landing-float 5s ease-in-out infinite;
}

.landing-mock-head {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.landing-mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.landing-mock-row {
  height: 10px;
  border-radius: 5px;
  background: var(--line);
  margin-bottom: 10px;
}

.landing-mock-row-title {
  height: 13px;
  width: 70%;
  background: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.landing-mock-row-short {
  width: 55%;
}

.landing-mock-divider {
  border-top: 1px dashed var(--line);
  margin: 14px 0;
}

.landing-mock-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.landing-mock-chip-paid {
  top: 8px;
  right: -6px;
  color: var(--success, #1a9c5c);
  animation: landing-float 4.5s ease-in-out infinite 0.3s;
}

.landing-mock-chip-units {
  bottom: 18px;
  left: -10px;
  color: var(--accent-strong);
  animation: landing-float 5.5s ease-in-out infinite 0.6s;
}

#landing-mock-units-count {
  font-variant-numeric: tabular-nums;
}

@keyframes landing-float {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

.landing-mock-chip-paid,
.landing-mock-chip-units {
  animation-name: landing-chip-float;
}

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

@media (prefers-reduced-motion: reduce) {
  .landing-mock-card,
  .landing-mock-chip-paid,
  .landing-mock-chip-units {
    animation: none;
  }

  .landing-step,
  .landing-step::before,
  .landing-step-num,
  .landing-step-visual,
  .landing-step-icon,
  .landing-step h3 {
    transition: none;
  }

  .landing-step:hover {
    transform: none;
  }

  .landing-step:hover .landing-step-num,
  .landing-step:hover .landing-step-visual,
  .landing-step:hover .landing-step-icon {
    transform: none;
  }
}

/* ---------- Auto-advancing "before / after" story ---------- */
.landing-story {
  margin: 8px 0 56px;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 5vw, 56px);
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.story-progress {
  display: flex;
  gap: 6px;
  margin-bottom: clamp(20px, 3.5vw, 34px);
}

.story-seg {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  overflow: hidden;
}

.story-seg-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width linear;
}

.story-seg.done .story-seg-fill {
  width: 100%;
  transition: none;
}

.story-frame {
  min-height: 0;
}

.story-scenes {
  display: grid;
}

.story-scene {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  max-width: 640px;
}

.story-scene.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.story-scene h2 {
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink);
  margin: 10px 0 14px;
  letter-spacing: -0.01em;
}

.story-scene p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 54ch;
}

.story-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
}

.story-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
}

.story-mark-bad {
  background: color-mix(in srgb, var(--rust, #c0503a) 16%, transparent);
  color: var(--rust, #c0503a);
}

.story-mark-good {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent-strong);
}

.story-cta {
  margin-top: 18px;
  width: auto;
  display: inline-flex;
  padding: 0 24px;
  min-height: 46px;
  border-radius: 999px;
}

.story-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(22px, 3.5vw, 34px);
}

.story-controls .icon-btn {
  width: 34px;
  height: 34px;
}

.story-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 30%, transparent);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.story-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (prefers-reduced-motion: reduce) {
  .story-seg-fill,
  .story-scene {
    transition: none;
  }
}

/* ---------- How it works ---------- */
.landing-how {
  padding: 12px 0 56px;
}

.landing-how-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.landing-eyebrow-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.landing-how-head h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.landing-how-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.landing-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  position: relative;
}

.landing-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  overflow: hidden;
  cursor: default;
  transition: opacity 0.5s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  transition-delay: calc(var(--step-delay, 0) * 90ms);
}

/* Diagonal accent sheen that sweeps across the card on hover — the
   "something different" cue that separates hover from the plain
   lift+shadow every other card on the page already gets. */
.landing-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, color-mix(in srgb, var(--accent) 16%, transparent) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.landing-step:hover::before {
  transform: translateX(120%);
}

/* The scroll-reveal starting state only applies once landing.js has
   actually run (documentElement gets .landing-js synchronously, before
   the observer is set up) — so content never depends on JS to be visible
   at all. It's just an entrance animation, not a visibility gate. */
.landing-js .landing-step {
  opacity: 0;
  transform: translateY(16px);
}

.landing-step.landing-step-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-step:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14), 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
  transform: translateY(-6px) scale(1.02);
}

.landing-step.landing-step-visible:hover {
  transform: translateY(-6px) scale(1.02);
}

.landing-step-num {
  position: absolute;
  top: 3px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.landing-step:hover .landing-step-num {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 55%, transparent);
}

.landing-step-visual {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  line-height: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-step:hover .landing-step-visual {
  transform: scale(1.035);
}

.landing-step-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.landing-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 10px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
}

.landing-step:hover .landing-step-icon {
  transform: scale(1.1) rotate(6deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.landing-step h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  transition: color 0.25s ease;
}

.landing-step:hover h3 {
  color: var(--accent-strong);
}

.landing-step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Connector arrows between steps ---------- */
.landing-step-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

/* Mobile: stacked cards, arrow points down to the next one. */
@media (max-width: 639.98px) {
  .landing-step-arrow {
    display: flex;
    left: 50%;
    bottom: -33px;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* Desktop 4-column row: arrow points right, sitting in the gap. */
@media (min-width: 900px) {
  .landing-step-arrow {
    display: flex;
    top: 50%;
    right: -34px;
    transform: translateY(-50%);
  }
}

/* ---------- Pricing ---------- */
.landing-pricing {
  padding: 12px 0 56px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto 32px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.billing-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-toggle-btn.active {
  background: var(--surface);
  color: var(--accent-strong);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.billing-save-badge {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  padding: 3px 8px;
  border-radius: 999px;
}

.pricing-amount-unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-save {
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-strong);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.pricing-card-popular {
  border-color: var(--accent);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 22%, transparent);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 40%, transparent);
  white-space: nowrap;
}

.pricing-card h3 {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-range {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: var(--muted);
}

.pricing-amount {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}


.pricing-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.pricing-features li::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 7.5px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--accent-strong);
  border-bottom: 2px solid var(--accent-strong);
  transform: rotate(-45deg);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-strong);
  background: var(--accent-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
}

.pricing-cta-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 38%, transparent);
}

.pricing-cta-primary:hover {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 46%, transparent);
}

.pricing-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.pricing-note a,
.pricing-note-link {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
}

.pricing-note a:hover,
.pricing-note-link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* ---------- Footer ---------- */
.landing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}

.landing-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--ink);
  font-size: 13px;
}

.landing-footer-brand .app-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.landing-footer a,
.landing-footer-contact-link {
  color: var(--accent-strong);
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

.landing-footer p {
  margin: 0;
}

.login-modal-sheet {
  max-width: 420px;
}

.modal-sheet-body {
  padding: 20px 16px 24px;
  overflow-y: auto;
}

.modal-sheet-body form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px) {
  .landing-hero {
    flex-direction: row;
    text-align: left;
    padding: 76px 0 64px;
    gap: 24px;
  }

  .landing-hero-copy {
    flex: 1 1 auto;
  }

  .landing-hero-actions {
    justify-content: flex-start;
  }

  .landing-hero-copy h1 {
    font-size: 38px;
  }

  .landing-hero-art {
    flex: 0 0 300px;
  }

  .landing-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 900px) {
  .landing-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .landing-step {
    z-index: 1;
  }
}

