:root {
  /* Landing-aligned brand tokens */
  --purple-950: #07071a;
  --purple-900: #0b0b23;
  --purple-800: #12122e;
  --purple-700: #5b54d6;
  --purple-600: #7970ff;
  --purple-500: #8f88ff;
  --purple-400: #a8a3ff;
  --purple-200: #d4d1ff;
  --purple-100: #ebe9ff;
  --purple-50: #f5f4ff;
  --brass: #e8c547;
  --brass-soft: rgba(232, 197, 71, 0.18);
  --lp-teal: #2dd4bf;
  --lp-orange: #f97316;

  --ink: #12122e;
  --ink-muted: #6b6688;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.94);
  --danger: #b42318;
  --danger-bg: #fef3f2;
  --success: #027a48;
  --border: rgba(121, 112, 255, 0.16);
  --shadow:
    0 1px 2px rgba(11, 11, 35, 0.05),
    0 12px 32px rgba(11, 11, 35, 0.1);
  --shadow-lg:
    0 8px 16px rgba(11, 11, 35, 0.08),
    0 24px 48px rgba(11, 11, 35, 0.14);
  --radius: 12px;
  --radius-sm: 9px;
  --font-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Libre Baskerville", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.02rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--purple-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.auth-page {
  height: 100dvh;
  overflow: hidden;
}

/* Long forms (onboarding / pending) need page scroll, not a clipped viewport */
body.auth-page:has(.content-shell) {
  height: auto;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

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

a {
  color: var(--purple-700);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--purple-500);
  text-decoration: underline;
}

.auth-page {
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 0% -5%, rgba(121, 112, 255, 0.1), transparent 55%),
    radial-gradient(700px 420px at 100% 100%, rgba(45, 212, 191, 0.06), transparent 50%),
    linear-gradient(165deg, #f8f7ff 0%, #efedfb 48%, #f5f4ff 100%);
}

.auth-page:has(.content-shell) {
  height: auto;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-shell {
  display: grid;
  grid-template-columns: 1fr;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.auth-brand {
  position: relative;
  display: none;
  overflow: hidden;
  color: #f4f6f9;
  background:
    radial-gradient(900px 520px at 85% 10%, rgba(121, 112, 255, 0.22), transparent 55%),
    linear-gradient(155deg, #07071a 0%, #0b0b23 42%, #12122e 78%, #1a1a3a 100%);
}

.auth-brand__glow {
  position: absolute;
  inset: auto -18% -28% auto;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 112, 255, 0.35), rgba(45, 212, 191, 0.08), transparent 68%);
  animation: glow-drift 14s var(--ease) infinite alternate;
}

.auth-brand__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 4rem);
  max-width: 34rem;
}

.brand-mark {
  width: clamp(4.25rem, 7vw, 5.5rem);
  height: clamp(4.25rem, 7vw, 5.5rem);
  display: grid;
  place-items: center;
  border-radius: 1rem;
  border: 1.5px solid var(--brass);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brass);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  animation: rise-in 0.8s var(--ease-out) both;
}

.brand-mark .justice-icon--hero {
  width: 58%;
  height: auto;
}

.justice-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: inherit;
}

.justice-icon--sm {
  width: 1.1rem;
  height: 1.1rem;
}

.justice-icon--hero {
  width: 100%;
  height: auto;
}

.brand-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 1.5rem + 1.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  animation: rise-in 0.8s var(--ease) 0.08s both;
}

.brand-tagline {
  margin: 0;
  color: rgba(243, 241, 247, 0.82);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  max-width: 28ch;
  animation: rise-in 0.8s var(--ease) 0.16s both;
}

.brand-points {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  animation: rise-in 0.8s var(--ease) 0.24s both;
}

.brand-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(243, 241, 247, 0.88);
  font-size: 0.98rem;
}

.auth-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  scrollbar-gutter: stable;
}

.auth-card {
  width: min(100%, 28rem);
  margin-block: auto;
  background: var(--surface-soft);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  animation: rise-in 0.65s var(--ease-out) both;
}

.auth-card__header {
  margin-bottom: 1.5rem;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: var(--purple-800);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-card__header h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 1.35rem + 0.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.auth-card__header p {
  margin: 0;
  color: var(--ink-muted);
}

.auth-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-width: 0;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.name-with-title {
  display: grid;
  grid-template-columns: minmax(4.75rem, auto) minmax(0, 1fr);
  gap: 0.55rem;
  align-items: stretch;
  min-width: 0;
}

.title-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.title-select:hover {
  border-color: rgba(47, 64, 88, 0.28);
}

.title-select:focus-within {
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(121, 112, 255, 0.2);
}

.form-input--title {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 5.35rem;
  min-width: 4.5rem;
  min-height: 2.85rem;
  margin: 0;
  padding: 0 1.7rem 0 0.7rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}

.form-input--title:hover,
.form-input--title:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}

.form-input--title:invalid {
  color: var(--ink-muted);
}

.form-input--title option {
  color: var(--ink);
  font-weight: 500;
}

.title-select__caret {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--ink-muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.link-btn {
  border: 0;
  background: transparent;
  color: var(--purple-700);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.link-btn:hover {
  color: var(--purple-500);
  text-decoration: underline;
}

.form-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 2.85rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(12, 18, 25, 0.03);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

textarea.form-input {
  min-height: 5.5rem;
  resize: vertical;
}

.input-uppercase {
  text-transform: uppercase;
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}

.country-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  max-width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.country-trigger:hover,
.country-trigger[aria-expanded="true"] {
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(63, 82, 112, 0.16);
}

.country-flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(30, 42, 58, 0.1);
}

.country-dial {
  min-width: 2.8rem;
  font-variant-numeric: tabular-nums;
}

.country-caret {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--ink-muted);
}

.country-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  max-width: min(22rem, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.65rem;
  display: grid;
  gap: 0.5rem;
}

.country-menu[hidden] {
  display: none;
}

.country-search {
  min-height: 2.4rem;
  text-transform: none;
}

.country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 14rem;
  overflow: auto;
  display: grid;
  gap: 0.15rem;
}

.country-option {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  text-align: left;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.country-option:hover,
.country-option.is-active {
  background: var(--purple-50);
}

.country-option__name {
  font-weight: 600;
  font-size: 0.92rem;
}

.country-option__dial {
  color: var(--ink-muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.country-trigger--wide {
  width: 100%;
  justify-content: flex-start;
}

.country-name {
  flex: 1;
  text-align: left;
  font-weight: 600;
}

.id-country-field {
  grid-template-columns: 1fr;
}

.country-menu--full {
  width: 100%;
}

.phone-local-input {
  min-width: 0;
}

.form-input::placeholder {
  color: #8a95a8;
}

.form-input:hover {
  border-color: rgba(47, 64, 88, 0.28);
}

.form-input:focus {
  outline: none;
  border-color: var(--purple-600);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(121, 112, 255, 0.2);
}

.input-icon {
  position: relative;
  display: grid;
}

.input-icon__glyph {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--purple-500);
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0.75;
  transition: color 0.2s var(--ease), transform 0.25s var(--ease), opacity 0.2s var(--ease), filter 0.2s var(--ease);
}

.input-icon > .form-input,
.input-icon .form-input {
  padding-left: 2.65rem;
}

.input-icon:focus-within .input-icon__glyph {
  color: var(--purple-700);
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
  filter: none;
  animation: none;
}

@keyframes auth-icon-live {
  0%,
  100% {
    filter: none;
  }
}

.field-error {
  color: var(--danger);
  font-size: 0.85rem;
}

.form-alert {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(180, 35, 24, 0.18);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn--primary {
  width: 100%;
  margin-top: 0.35rem;
  color: #fff;
  background: var(--purple-600);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(11, 11, 35, 0.1),
    0 10px 24px rgba(121, 112, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--purple-500);
  box-shadow:
    0 4px 12px rgba(11, 11, 35, 0.12),
    0 14px 28px rgba(121, 112, 255, 0.42);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  width: 100%;
  color: var(--purple-700);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.btn--ghost:hover {
  background: var(--purple-50);
  border-color: rgba(121, 112, 255, 0.28);
}

.auth-switch {
  margin: 1.35rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.toast-stack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: grid;
  gap: 0.5rem;
  width: min(calc(100vw - 2rem), 22rem);
}

.toast {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: rise-in 0.45s var(--ease) both;
}

.toast--error {
  border-color: rgba(180, 35, 24, 0.25);
  color: var(--danger);
}

.toast--success {
  border-color: rgba(2, 122, 72, 0.25);
  color: var(--success);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-8%, -6%) scale(1.08);
  }
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .auth-shell {
    grid-template-columns: minmax(280px, 1.05fr) minmax(320px, 0.95fr);
  }

  .auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .mobile-brand {
    display: none;
  }

  .auth-panel {
    height: 100dvh;
    max-height: 100dvh;
    padding: clamp(2rem, 5vw, 4rem);
  }
}

@media (min-width: 1200px) {
  .auth-card {
    width: min(100%, 30rem);
  }

  .auth-card--wide {
    width: min(100%, 36rem);
  }
}

.auth-card--wide {
  width: min(100%, 34rem);
  max-width: 100%;
}

.field-hint {
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.field-hint.is-ok {
  color: var(--success);
}

.field-hint.is-bad {
  color: var(--danger);
}

.form-fieldset {
  margin: 0;
  padding: 0.85rem 0 0;
  border: 0;
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.form-fieldset h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  letter-spacing: -0.02em;
}

.form-fieldset legend {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0;
}

.id-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

.choice-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1 1 calc(50% - 0.55rem);
  min-width: min(100%, 8.5rem);
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.choice-chip input {
  accent-color: var(--purple-700);
  flex-shrink: 0;
}

.is-hidden {
  display: none !important;
}

.photo-uploader {
  display: grid;
  gap: 0.75rem;
}

.photo-preview {
  display: none;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--purple-200);
}

.photo-preview.is-visible {
  display: block;
}

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

.form-input--file {
  padding: 0.55rem;
  font-size: 0.9rem;
  word-break: break-word;
}

.content-shell {
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 3.5vw, 2.5rem);
  padding-bottom: max(clamp(1rem, 3.5vw, 2.5rem), env(safe-area-inset-bottom, 0px));
}

.content-card {
  width: min(100%, 42rem);
  max-width: 100%;
  background: var(--surface-soft);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 3.5vw, 2.5rem);
  animation: rise-in 0.7s var(--ease) both;
  min-width: 0;
}

.content-card--wide {
  width: min(100%, 40rem);
}

.content-card__header {
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--purple-700);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.content-card__header h1,
.content-section h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.content-card__header h1 {
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.2rem);
}

.lede,
.content-section p,
.plain-list {
  color: var(--ink-muted);
}

.content-section {
  margin-bottom: 1.35rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.content-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.content-actions .btn {
  width: 100%;
  min-width: 0;
}

@media (min-width: 480px) {
  .content-actions .btn {
    width: auto;
    min-width: 9rem;
  }
}

.dashboard-hero {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-200);
  flex-shrink: 0;
}

.avatar--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 2rem);
}

.modal::backdrop {
  background: rgba(18, 16, 28, 0.52);
}

.modal__card {
  width: min(100%, 24rem);
  margin: auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(180, 35, 24, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal__icon {
  color: var(--danger);
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.modal__card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  color: var(--danger);
}

.modal__card p {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
}

@media (max-width: 899px) {
  .auth-panel {
    align-items: flex-start;
    padding-top: clamp(1.25rem, 5vw, 3rem);
    padding-bottom: clamp(1.25rem, 5vw, 3rem);
    padding-inline: clamp(0.85rem, 3.5vw, 1.5rem);
  }

  .auth-card,
  .auth-card--wide {
    width: 100%;
    margin-block: 0 auto;
  }
}

@media (max-width: 479px) {
  .phone-field {
    grid-template-columns: 1fr;
  }

  .country-trigger {
    width: 100%;
    justify-content: flex-start;
  }

  .name-with-title {
    grid-template-columns: 1fr;
  }

  .form-input--title {
    max-width: none;
  }

  .choice-chip {
    flex: 1 1 100%;
  }

  .label-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 720px) {
  .content-shell {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
