:root {
  --bg: #07111f;
  --bg-deep: #030914;
  --panel: rgba(13, 26, 43, 0.5);
  --panel-strong: rgba(16, 30, 49, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5fbff;
  --muted: #92a9c2;
  --muted-soft: #b8c7d9;
  --blue: #5ca4ff;
  --blue-strong: #2f7df6;
  --green: #34d27a;
  --green-strong: #16aa57;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.16);
  --blur: blur(18px);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(52, 110, 255, 0.22), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(30, 208, 126, 0.14), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(79, 114, 255, 0.18), transparent 25%),
    linear-gradient(180deg, #091221 0%, var(--bg) 40%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0, rgba(2, 7, 14, 0.08) 45%, rgba(2, 7, 14, 0.36) 100%);
  pointer-events: none;
  z-index: 0;
}

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

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

button,
input {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.spotlight,
.cursor-glow,
.stage-orb {
  border-radius: 999px;
  filter: blur(20px);
}

.spotlight {
  position: absolute;
  opacity: 0.7;
}

.spotlight-a {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -80px;
  background: rgba(72, 123, 255, 0.22);
}

.spotlight-b {
  width: 420px;
  height: 420px;
  top: 45%;
  right: -120px;
  background: rgba(51, 212, 122, 0.14);
}

.spotlight-c {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: 32%;
  background: rgba(79, 164, 255, 0.15);
}

.cursor-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(92, 164, 255, 0.18), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glass-panel {
  background: linear-gradient(180deg, rgba(18, 33, 53, 0.62), rgba(8, 18, 31, 0.5));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.topbar {
  padding: 18px 0 0;
  position: relative;
  z-index: 11;
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 18px;
}

.topbar-copy {
  color: var(--muted-soft);
  font-size: 0.94rem;
}

.topbar-copy strong {
  color: var(--text);
}

.topbar-link {
  color: #a9d2ff;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 0 0;
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-radius: 20px;
}

.header-shell {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #98c8ff);
  color: #021120;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.96rem;
}

.brand-copy small,
.main-nav a,
.footer-links a,
.section-label,
.payment-note,
.field-wrap span,
.selected-row span,
.panel-eyebrow,
.kicker,
.floating-card span,
.mini-stat span,
.card-tag,
.cause-index {
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.main-nav a,
.footer-links a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a.is-current,
.footer-links a.is-current {
  color: var(--text);
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.main-nav a.is-current {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    opacity 0.3s ease;
  cursor: pointer;
}

.pill-button:hover,
.pill-button:focus-visible {
  transform: translateY(-2px);
}

.pill-button-primary {
  color: #04121d;
  background: linear-gradient(135deg, #61ffaa, var(--green));
  box-shadow: 0 18px 30px rgba(52, 210, 122, 0.22);
}

.pill-button-primary:hover,
.pill-button-primary:focus-visible {
  background: linear-gradient(135deg, #73ffb6, var(--green-strong));
}

.pill-button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero {
  padding: 78px 0 50px;
}

.page-hero {
  padding: 94px 0 34px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.kicker,
.section-label,
.panel-eyebrow,
.card-tag {
  display: inline-block;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted-soft);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #93ffc1);
  box-shadow: 0 0 18px rgba(52, 210, 122, 0.4);
}

.hero-copy h1,
.page-copy h1,
.section-heading h2,
.story-intro h2,
.donation-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 6.6vw, 6.1rem);
}

.page-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}

.gradient-word {
  display: block;
  background: linear-gradient(135deg, #ffffff, #76b4ff 48%, #53e494 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(114, 180, 255, 0.08);
}

.hero-text,
.page-copy p,
.story-card p,
.metric-card p,
.cause-card p,
.donation-copy p,
.payment-note,
.floating-card p,
.selected-row,
.footer-shell p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin-top: 24px;
  font-size: 1.06rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-stat span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.page-copy p {
  max-width: 58ch;
  margin-top: 18px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.stage-orb {
  position: absolute;
  opacity: 0.9;
}

.orb-one {
  width: 240px;
  height: 240px;
  top: 10%;
  left: 8%;
  background: radial-gradient(circle, rgba(62, 117, 255, 0.75), rgba(62, 117, 255, 0));
  animation: drift 8s ease-in-out infinite;
}

.orb-two {
  width: 300px;
  height: 300px;
  top: 26%;
  right: 8%;
  background: radial-gradient(circle, rgba(58, 226, 142, 0.32), rgba(58, 226, 142, 0));
  animation: drift 10s ease-in-out infinite reverse;
}

.orb-three {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 24%;
  background: radial-gradient(circle, rgba(164, 214, 255, 0.32), rgba(164, 214, 255, 0));
  animation: drift 12s ease-in-out infinite;
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  padding: 18px;
  border-radius: var(--radius-xl);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-media img {
  min-height: 620px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.floating-card {
  position: absolute;
  width: min(300px, calc(100% - 36px));
  padding: 18px 20px;
  border-radius: 22px;
}

.hero-credit-row {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
}

.floating-credit {
  position: relative;
  min-width: 240px;
  padding: 18px 22px;
  border-radius: 22px;
  text-align: left;
  background: linear-gradient(180deg, rgba(22, 38, 61, 0.88), rgba(10, 22, 36, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.floating-credit span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-credit strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.floating-card strong,
.mini-stat strong,
.selected-row strong,
.metric-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.card-impact {
  left: 0;
  bottom: 88px;
}

.card-rate {
  right: 0;
  top: 92px;
}

.story-section,
.impact-section,
.causes-section,
.donation-section {
  padding: 36px 0 96px;
}

.spotlight-section {
  padding: 0 0 96px;
}

.story-shell {
  display: grid;
  gap: 26px;
}

.story-intro,
.section-heading {
  max-width: 760px;
}

.story-intro h2,
.section-heading h2,
.donation-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.story-card,
.metric-card,
.cause-card,
.mini-stat,
.donation-panel,
.page-side,
.feature-panel {
  border-radius: 26px;
}

.story-card {
  min-height: 280px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.story-large {
  background:
    radial-gradient(circle at top right, rgba(80, 131, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(20, 35, 57, 0.7), rgba(10, 20, 32, 0.58));
}

.story-card::after,
.metric-card::after,
.cause-card::after,
.mini-stat::after,
.page-side::after,
.donation-panel::after,
.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
  pointer-events: none;
}

.story-card h3,
.cause-card h3,
.panel-heading h3 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.metric-card,
.cause-card {
  padding: 24px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.impact-grid,
.causes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-card i,
.cause-topline i {
  display: none;
}

.metric-card strong {
  margin-bottom: 10px;
}

.metric-card::before,
.cause-card::before,
.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.cause-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cause-index {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.donation-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.donation-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.mini-stat {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.donation-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.page-side {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.page-side strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.page-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: #8ec2ff;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: #c8e2ff;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.feature-panel-highlight {
  min-height: 360px;
  background:
    radial-gradient(circle at top right, rgba(74, 128, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(18, 31, 52, 0.78), rgba(9, 20, 33, 0.72));
}

.feature-panel-stack {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at bottom left, rgba(52, 210, 122, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(18, 31, 52, 0.68), rgba(9, 20, 33, 0.64));
}

.feature-panel h3,
.feature-subcard h4 {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.feature-panel h3 {
  font-size: 2rem;
}

.feature-panel p,
.feature-subcard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-panel li {
  padding-left: 18px;
  position: relative;
  color: var(--muted-soft);
}

.feature-panel li + li {
  margin-top: 10px;
}

.feature-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #8de5ff);
}

.feature-subcard {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-subcard h4 {
  font-size: 1.14rem;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cde2ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.panel-heading {
  margin-bottom: 22px;
}

.donation-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid-tight {
  align-items: end;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.amount-btn {
  min-height: 68px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.amount-btn:hover,
.amount-btn:focus-visible,
.amount-btn.is-active {
  transform: translateY(-1px);
  background: rgba(92, 164, 255, 0.12);
  border-color: rgba(92, 164, 255, 0.4);
  box-shadow: 0 16px 28px rgba(24, 63, 140, 0.2);
}

.field-wrap {
  display: block;
}

.field-wrap input {
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.field-wrap input:focus {
  border-color: rgba(92, 164, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(92, 164, 255, 0.08);
}

.otp-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: end;
}

.otp-button,
.verify-button {
  min-height: 58px;
}

.otp-field {
  min-width: 0;
}

.verification-status {
  min-height: 24px;
  color: var(--muted-soft);
  font-weight: 600;
}

.verification-status.is-verified {
  color: #7dffb1;
}

.verification-status.is-error {
  color: #ff9ea7;
}

.selected-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.donate-button {
  width: 100%;
}

.pill-button:disabled {
  cursor: wait;
  opacity: 0.88;
}

.payment-note {
  margin-top: 14px;
}

.success-message {
  min-height: 28px;
  margin-top: 16px;
  color: #7dffb1;
  font-weight: 600;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-shell p {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  padding: 8px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@media (max-width: 1120px) {
  .topbar-shell,
  .hero-shell,
  .page-hero-shell,
  .donation-shell,
  .story-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .causes-grid,
  .donation-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-media {
    transform: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding-top: 12px;
  }

  .topbar-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(8, 18, 31, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .pill-large,
  .pill-button-primary {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-media {
    width: 100%;
    padding: 14px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-credit-row {
    position: static;
    display: block;
    width: 100%;
    margin-bottom: 14px;
  }

  .floating-credit {
    position: static;
    width: 100%;
    min-width: 0;
    margin-bottom: 14px;
  }

  .impact-grid,
  .causes-grid,
  .amount-grid,
  .donation-bullets,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .otp-row {
    grid-template-columns: 1fr;
  }

  .header-shell,
  .footer-shell,
  .selected-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-shell > .pill-button {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
