.inbox-list-panel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  flex-basis: 100%;
  align-self: stretch;
}

.checkout-action-row {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 0.5rem;
}

.checkout-action-back {
  width: 2.75rem;
  flex: 0 0 2.75rem;
  justify-content: center;
  padding-inline: 0;
}

.settings-action-bar-buttons .checkout-action-confirm {
  width: auto !important;
  min-width: 0;
  flex: 1 1 0%;
}

@media (min-width: 640px) {
  .checkout-action-row {
    width: auto;
  }

  .checkout-action-back {
    width: auto;
    flex: 0 0 auto;
    padding-inline: 1.5rem;
  }

  .settings-action-bar-buttons .checkout-action-confirm {
    flex: 0 0 auto;
  }

  .inbox-list-panel {
    width: 20rem;
    max-width: 20rem;
    flex: 0 0 20rem;
  }
}

/* Landing page */
body.landing-shell {
  --grain-opacity: 0.028;
  --color-warm: #c8784e;
  --color-warm-light: #f0d5c6;
  --color-warm-ink: #7a3a1e;
  --color-paper-white: #fafaf7;
  --color-paper-tint: #f5f3ee;
  --color-ink: #1c1b1a;
  --radius-paper: 14px 18px 16px 12px;
  --radius-stamp: 6px 8px 6px 8px;
  --tilt-left: rotate(-1.5deg);
  --tilt-right: rotate(1.2deg);
  --tilt-slight-left: rotate(-0.8deg);
  --tilt-slight-right: rotate(0.6deg);
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: #0f172a;
  background:
    radial-gradient(circle at 15% 8%, rgba(15, 180, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #eef7ff 44%, #ffffff 100%);
  background-attachment: fixed;
  font-family: Switzer, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.landing-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.landing-shell a {
  color: inherit;
}

body.landing-shell #flash_messages,
.landing-page,
.landing-footer {
  position: relative;
  z-index: 1;
}

.landing-nav {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  width: min(72rem, calc(100% - 2rem));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem auto 0;
  padding: 0.75rem 0.85rem 0.75rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.landing-nav__brand,
.landing-nav__links {
  display: inline-flex;
  align-items: center;
}

.landing-nav__links {
  gap: 0.35rem;
}

.landing-nav__link,
.landing-nav__cta {
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.landing-nav__link {
  padding: 0.7rem 0.95rem;
  color: #334155;
}

.landing-nav__cta {
  padding: 0.78rem 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #006dff, #00a6ff);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 109, 255, 0.28);
}

.landing-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1rem 3rem rgba(15, 23, 42, 0.14);
}

.landing-page {
  box-sizing: border-box;
  overflow: hidden;
  padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
}

.landing-section {
  width: min(72rem, 100%);
  margin: 0 auto;
  padding: 5rem 0;
}

.landing-hero {
  display: grid;
  min-height: calc(100vh - 6rem);
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
}

.landing-section__copy,
.landing-section__intro {
  max-width: 43rem;
}

.landing-section__intro {
  margin: 0 auto 2rem;
  text-align: center;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(0, 109, 255, 0.16);
  border-radius: 999px;
  color: #0059d6;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.75rem 2rem rgba(0, 109, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow-mono {
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-pain-relief .landing-eyebrow,
.landing-testimonials .landing-eyebrow {
  border-color: rgba(200, 120, 78, 0.22);
  color: var(--color-warm);
  background: rgba(250, 250, 247, 0.78);
}

.landing-heading {
  margin: 0;
  color: #07111f;
  font-family: "Plus Jakarta Sans", Switzer, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.landing-heading--hero {
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.landing-lede,
.landing-copy {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.landing-lede {
  max-width: 39rem;
  margin: 1.35rem 0 0;
}

.landing-copy {
  margin: 1rem auto 0;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.landing-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #005cff, #00a6ff);
  box-shadow: 0 1rem 2.5rem rgba(0, 92, 255, 0.3);
}

.landing-button--secondary {
  border-color: rgba(148, 163, 184, 0.35);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
}

.landing-button--disabled {
  border-color: rgba(148, 163, 184, 0.25);
  color: #64748b;
  background: rgba(241, 245, 249, 0.9);
}

.landing-trust {
  margin: 1.35rem 0 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.landing-hero .landing-trust {
  color: var(--color-warm-ink);
}

.landing-chip-list,
.landing-benefit-list,
.landing-preview-list,
.landing-relief-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.landing-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.landing-chip,
.landing-result-badge,
.landing-state-pill,
.landing-booking-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.landing-chip {
  padding: 0.65rem 0.78rem;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22);
}

.landing-chip--button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.landing-chip--button[aria-pressed="true"] {
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 0.75rem 1.75rem rgba(15, 23, 42, 0.18);
}

.landing-preview {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 29rem;
  justify-self: center;
  isolation: isolate;
  perspective: 76rem;
  transform-style: preserve-3d;
  --agenda-tilt-x: 0deg;
  --agenda-tilt-y: 0deg;
  --agenda-shift-x: 0rem;
  --agenda-shift-y: 0rem;
  --agenda-message-x: 0rem;
  --agenda-message-y: 0rem;
  --agenda-link-x: 0rem;
  --agenda-link-y: 0rem;
}

.landing-preview::before {
  position: absolute;
  inset: -1.75rem;
  z-index: -1;
  content: "";
  border-radius: 2.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(0, 166, 255, 0.26), transparent 60%);
  filter: blur(4px);
}

.landing-preview-card,
.landing-chaos-card,
.landing-relief-card,
.landing-bento-card,
.landing-step-card,
.landing-testimonial-card,
.landing-plan-card,
.landing-final-cta__card,
.landing-empty-state {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.surface-paper {
  position: relative;
  border: 1px solid rgba(200, 188, 168, 0.18);
  border-radius: var(--radius-paper);
  background: var(--color-paper-white);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.surface-paper--textured {
  overflow: hidden;
}

.surface-paper--textured::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.landing-preview-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
}

.landing-agenda-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  transform: translate3d(var(--agenda-shift-x), calc(var(--agenda-shift-y) + var(--agenda-card-offset-y, 0rem)), 0) rotateX(var(--agenda-tilt-x)) rotateY(var(--agenda-tilt-y));
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.landing-agenda-card::before {
  position: absolute;
  top: 4.6rem;
  bottom: 1.65rem;
  left: 1.65rem;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 109, 255, 0), rgba(0, 109, 255, 0.52), rgba(0, 109, 255, 0));
}

.landing-agenda-card::after {
  position: absolute;
  inset: -45% auto auto -28%;
  width: 15rem;
  height: 15rem;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.18), transparent 64%);
  pointer-events: none;
}

.landing-agenda-card .landing-preview-card__title,
.landing-agenda-card .landing-preview-list {
  position: relative;
  z-index: 1;
}

.landing-preview-card__title {
  margin: 0 0 0.9rem;
  color: #0f172a;
  font-weight: 900;
}

.landing-preview-list {
  display: grid;
  gap: 0.7rem;
}

.landing-preview-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  padding: 0.8rem 0.8rem 0.8rem 1.9rem;
  border-radius: 1rem;
  color: #334155;
  background: rgba(248, 250, 252, 0.9);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
  transform: translateZ(1.1rem);
}

.landing-preview-list li::before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  width: 0.48rem;
  height: 0.48rem;
  content: "";
  border-radius: 999px;
  background: #00a6ff;
  box-shadow: 0 0 0 0.25rem rgba(0, 166, 255, 0.13);
  transform: translateY(-50%);
}

.landing-preview-list li:nth-child(1)::before {
  background: #16a34a;
  box-shadow: 0 0 0 0.25rem rgba(22, 163, 74, 0.13);
}

.landing-preview-list li:nth-child(3)::before {
  background: #94a3b8;
  box-shadow: 0 0 0 0.25rem rgba(148, 163, 184, 0.14);
}

.landing-preview-list span,
.landing-step-card__number {
  color: #006dff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.landing-preview-list strong {
  font-size: 0.9rem;
}

.landing-message-bubble {
  width: min(21rem, 100%);
  margin: 0 0 0 auto;
  padding: 0.9rem 1rem;
  border-radius: 1.25rem 1.25rem 0.35rem 1.25rem;
  color: #065f46;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  box-shadow: 0 1rem 2.5rem rgba(22, 163, 74, 0.14);
  font-weight: 700;
  line-height: 1.45;
}

.landing-agenda-message {
  position: relative;
  z-index: 3;
  transform: translate3d(var(--agenda-message-x), var(--agenda-message-y), 4rem) rotateY(-7deg) rotateZ(1.5deg);
  transform-origin: 80% 50%;
  will-change: transform;
}

.landing-booking-pill,
.landing-state-pill,
.landing-result-badge {
  padding: 0.55rem 0.7rem;
}

.landing-booking-pill {
  color: #0059d6;
  background: rgba(219, 234, 254, 0.92);
}

.landing-agenda-link {
  position: relative;
  z-index: 3;
  justify-self: start;
  margin-left: 1rem;
  transform: translate3d(var(--agenda-link-x), var(--agenda-link-y), 3rem) rotateY(8deg) rotateZ(-2deg);
  transform-origin: 20% 50%;
  will-change: transform;
}

.landing-split {
  display: grid;
  gap: 1rem;
}

.landing-card-title {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 900;
}

.landing-segment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.landing-chaos-grid {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.landing-chaos-card {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-paper);
  color: var(--color-deep, #0f172a);
  font-weight: 700;
  line-height: 1.45;
  transition: transform 400ms ease-out, opacity 400ms ease-out;
}

.landing-chaos-card:nth-child(1) {
  transform: rotate(-2.1deg) translate(-8px, -4px);
}

.landing-chaos-card:nth-child(2) {
  transform: rotate(1.4deg) translate(12px, 8px);
}

.landing-chaos-card:nth-child(3) {
  transform: rotate(-1.2deg) translate(-4px, 12px);
}

.landing-chaos-card:nth-child(4) {
  transform: rotate(2.3deg) translate(6px, -8px);
}

.landing-relief-card {
  padding: 1.3rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.86));
}

.landing-relief-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.landing-relief-card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.landing-relief-card li,
.landing-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #334155;
}

.landing-relief-card li::before,
.landing-benefit-list li::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  content: "";
  background: #00a6ff;
  box-shadow: 0 0 0 0.25rem rgba(0, 166, 255, 0.13);
}

.landing-bento-grid,
.landing-step-grid,
.landing-testimonial-grid,
.landing-plan-grid {
  display: grid;
  gap: 1rem;
}

.landing-showcase {
  perspective: 78rem;
}

.landing-bento-grid {
  transform-style: preserve-3d;
}

.landing-bento-card,
.landing-step-card,
.landing-testimonial-card,
.landing-plan-card {
  border-radius: 1.5rem;
}

.landing-bento-card {
  min-height: 12rem;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.landing-bento-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 166, 255, 0.16), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.landing-bento-card h3,
.landing-plan-card h3 {
  margin: 0;
  color: #0f172a;
  font-family: "Plus Jakarta Sans", Switzer, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.landing-bento-card p,
.landing-testimonial-card p,
.landing-plan-card p {
  color: #475569;
  line-height: 1.65;
}

.landing-state-pill {
  margin-top: 1rem;
  color: #0059d6;
  background: rgba(219, 234, 254, 0.88);
}

.landing-bento-card--active {
  border-color: rgba(0, 109, 255, 0.42);
  box-shadow: 0 1.75rem 4.5rem rgba(0, 109, 255, 0.18);
}

.landing-bento-card--active::after {
  opacity: 1;
}

.landing-step-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  color: #475569;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.landing-step-card[aria-pressed="true"] {
  border-color: rgba(0, 109, 255, 0.38);
  box-shadow: 0 1.5rem 4rem rgba(0, 109, 255, 0.16);
}

.landing-step-card strong {
  color: #0f172a;
  font-size: 1rem;
}

.landing-step-card__number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-paper);
  color: var(--color-warm-ink);
  background: var(--color-paper-tint);
  box-shadow: inset 0 0 0 1px rgba(200, 188, 168, 0.28);
}

.landing-preview-card--wide {
  max-width: 36rem;
  margin: 1rem auto 1.25rem;
  text-align: center;
}

.landing-how {
  text-align: center;
}

.landing-how .landing-button {
  margin-inline: auto;
}

.landing-testimonial-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 82%);
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.landing-testimonial-card {
  min-height: 17rem;
  padding: 1.25rem;
  scroll-snap-align: start;
}

.landing-testimonial-card.surface-paper:nth-child(1) {
  transform: var(--tilt-slight-left);
}

.landing-testimonial-card.surface-paper:nth-child(3) {
  transform: var(--tilt-slight-right);
}

.landing-testimonial-card[hidden] {
  display: none;
}

.landing-testimonial-card blockquote {
  margin: 1rem 0;
  color: #0f172a;
  font-family: var(--font-display, "Plus Jakarta Sans", Switzer, system-ui, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.22;
}

.landing-result-badge {
  color: #075985;
  background: rgba(186, 230, 253, 0.88);
}

.stamp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--color-warm);
  border-radius: var(--radius-stamp);
  color: var(--color-warm-ink);
  background: var(--color-warm-light);
  box-shadow: none;
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transform: var(--tilt-slight-left);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.stamp-badge--filled {
  border-color: var(--color-warm);
  color: #ffffff;
  background: var(--color-warm);
}

.landing-plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.landing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.landing-plan-card--recommended {
  border-color: rgba(0, 109, 255, 0.42);
  box-shadow: 0 1.75rem 4.5rem rgba(0, 109, 255, 0.18);
}

.landing-price {
  margin: 0;
}

.landing-price strong {
  color: #07111f;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 2.2rem;
}

.landing-benefit-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.landing-plan-card .landing-button {
  width: 100%;
  margin-top: auto;
}

.landing-empty-state {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 1.4rem;
  color: #475569;
  text-align: center;
}

.landing-final-cta__card {
  position: relative;
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 2rem;
  overflow: hidden;
  text-align: center;
}

.landing-final-cta__card::before {
  position: absolute;
  inset: auto -8rem -9rem auto;
  width: 18rem;
  height: 18rem;
  content: "";
  border-radius: 999px;
  background: rgba(0, 166, 255, 0.18);
  filter: blur(8px);
}

.landing-final-cta__card > * {
  position: relative;
}

.landing-final-cta__card .landing-message-bubble {
  margin: 0 auto 1.25rem;
}

.landing-final-cta__card .landing-button {
  margin-top: 1.5rem;
}

.landing-footer {
  display: grid;
  width: min(72rem, calc(100% - 2rem));
  gap: 1rem;
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: #64748b;
  font-size: 0.9rem;
}

.landing-footer p {
  margin: 0.65rem 0 0;
  line-height: 1.6;
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.landing-footer a {
  color: #334155;
  font-weight: 700;
  text-decoration: none;
}

.landing-nav__link:focus-visible,
.landing-nav__cta:focus-visible,
.landing-button:focus-visible,
.landing-chip--button:focus-visible,
.landing-step-card:focus-visible,
.landing-footer a:focus-visible {
  outline: 3px solid rgba(0, 109, 255, 0.38);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .landing-section {
    padding: 4rem 0;
  }

  .landing-hero,
  .landing-split {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
  }

  .landing-bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .landing-bento-card {
    grid-column: span 2;
  }

  .landing-bento-card:nth-child(1),
  .landing-bento-card:nth-child(6) {
    grid-column: span 3;
  }

  .landing-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-testimonial-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }

  .landing-preview {
    --agenda-card-offset-y: -8rem;
    padding-bottom: 2rem;
  }

  .landing-footer {
    grid-template-columns: 1.2fr auto;
    align-items: end;
  }

  .landing-footer > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .landing-section {
    padding: 4rem 0;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .landing-actions,
  .landing-button {
    width: 100%;
  }

  .landing-preview {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .landing-nav {
    width: min(100% - 1rem, 72rem);
    padding-left: 0.7rem;
  }

  .landing-nav__link {
    display: none;
  }

  .landing-nav__cta {
    padding-inline: 0.82rem;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-preview {
    animation: landing-float 8s ease-in-out infinite;
  }

  .landing-message-bubble {
    animation: landing-soft-rise 700ms ease-out both;
  }

  .landing-agenda-message {
    animation: landing-message-route 8s ease-in-out infinite;
  }

  .landing-agenda-link {
    animation: landing-link-route 8s ease-in-out infinite;
  }

  .landing-agenda-item {
    animation: landing-agenda-sort 8s ease-in-out infinite;
  }

  .landing-agenda-item:nth-child(2) {
    animation-delay: 220ms;
  }

  .landing-agenda-item:nth-child(3) {
    animation-delay: 440ms;
  }

  .landing-agenda-item:nth-child(4) {
    animation-delay: 660ms;
  }

  .landing-button--primary,
  .landing-nav__cta {
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .landing-button--primary:hover,
  .landing-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 1.2rem 3rem rgba(0, 92, 255, 0.34);
  }

  .landing-bento-card:nth-child(1) {
    transform: rotateX(1deg) rotateY(-2.2deg) translateZ(0.2rem);
  }

  .landing-bento-card:nth-child(2),
  .landing-bento-card:nth-child(5) {
    transform: rotateX(-0.8deg) rotateY(1.6deg) translateZ(0);
  }

  .landing-bento-card:nth-child(3),
  .landing-bento-card:nth-child(6) {
    transform: rotateX(0.8deg) rotateY(-1.2deg) translateZ(0.15rem);
  }

  .landing-bento-card:nth-child(4) {
    transform: rotateX(-1deg) rotateY(2deg) translateZ(0.25rem);
  }

  .landing-bento-card.landing-bento-card--active,
  .landing-bento-card:hover {
    transform: translate3d(0, -0.35rem, 1.2rem) rotateX(0) rotateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-preview,
  .landing-message-bubble,
  .landing-agenda-card,
  .landing-agenda-message,
  .landing-agenda-link,
  .landing-agenda-item,
  .landing-bento-card,
  .landing-button--primary,
  .landing-nav__cta,
  .landing-chaos-card {
    animation: none;
    transform: none;
    transition: none;
  }
}

/* Landing illustrations */
.landing-illustration {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.landing-illustration--hero {
  position: absolute;
  bottom: -1.5rem;
  left: -2.5rem;
  z-index: 0;
  width: 260px;
  max-width: 260px;
}

.landing-illustration--card-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 72px;
  height: auto;
}

.landing-bento-card:nth-child(1) .landing-illustration--card-icon,
.landing-bento-card:nth-child(6) .landing-illustration--card-icon {
  width: 88px;
}

.landing-illustration--step-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}

.landing-relief-card {
  position: relative;
}

.landing-illustration--relief-sparkle {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 48px;
  max-width: 12vw;
}

.landing-illustration--sparkle {
  width: 48px;
  height: auto;
}

.landing-illustration--pricing-sparkle {
  position: absolute;
  top: -24px;
  right: 18px;
  width: 56px;
  pointer-events: none;
}

.landing-illustration--pricing-sparkle-secondary {
  width: 44px;
  opacity: 0.72;
}

.landing-pricing-grid-wrapper {
  position: relative;
}

.landing-illustration--pricing-sparkle-secondary {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
}

.landing-final-cta-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-illustration--final-calendar {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 140px;
}

.landing-illustration--final-plane {
  position: absolute;
  right: 12%;
  top: 18%;
  width: 72px;
}

.landing-illustration--final-sparkle {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 42px;
}

@media (max-width: 767px) {
  .landing-illustration--hero {
    position: relative;
    bottom: auto;
    left: auto;
    width: 180px;
    max-width: 180px;
    margin: 1rem auto 0;
  }
}

@media (max-width: 640px) {
  .landing-illustration--card-icon {
    width: 56px;
  }

  .landing-bento-card:nth-child(1) .landing-illustration--card-icon,
  .landing-bento-card:nth-child(6) .landing-illustration--card-icon {
    width: 64px;
  }

  .landing-illustration--step-icon {
    width: 64px;
    height: 64px;
  }

  .landing-illustration--final-calendar {
    width: 104px;
  }

  .landing-illustration--final-plane {
    width: 52px;
  }

  .landing-illustration--final-sparkle {
    width: 32px;
  }

  .landing-illustration--pricing-sparkle-secondary {
    display: none;
  }

  .landing-illustration--pricing-sparkle {
    width: 42px;
  }
}

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

  50% {
    transform: translateY(-0.75rem);
  }
}

@keyframes landing-soft-rise {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

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

@keyframes landing-message-route {
  0%,
  100% {
    transform: translate3d(var(--agenda-message-x), var(--agenda-message-y), 4rem) rotateY(-7deg) rotateZ(1.5deg);
  }

  42% {
    transform: translate3d(calc(var(--agenda-message-x) - 0.5rem), calc(var(--agenda-message-y) - 0.25rem), 4.7rem) rotateY(-3deg) rotateZ(0.4deg);
  }

  52% {
    transform: translate3d(calc(var(--agenda-message-x) - 0.15rem), calc(var(--agenda-message-y) - 0.4rem), 4.2rem) rotateY(-5deg) rotateZ(0.8deg) scale(0.98);
  }
}

@keyframes landing-link-route {
  0%,
  100% {
    transform: translate3d(var(--agenda-link-x), var(--agenda-link-y), 3rem) rotateY(8deg) rotateZ(-2deg);
  }

  46% {
    transform: translate3d(calc(var(--agenda-link-x) + 0.55rem), calc(var(--agenda-link-y) - 0.35rem), 3.8rem) rotateY(3deg) rotateZ(-0.6deg);
  }

  58% {
    transform: translate3d(calc(var(--agenda-link-x) + 0.15rem), calc(var(--agenda-link-y) - 0.1rem), 3.4rem) rotateY(5deg) rotateZ(-1deg);
  }
}

@keyframes landing-agenda-sort {
  0%,
  100% {
    transform: translate3d(0, 0, 1.1rem);
  }

  44% {
    transform: translate3d(0.18rem, -0.08rem, 1.55rem);
  }

  58% {
    transform: translate3d(0, 0, 1.1rem);
  }
}
