/* ═══════════════════════════════════════════
   DISABILITY DRIVEN — STYLES
   ═══════════════════════════════════════════ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --text: #F5F5F5;
  --text-muted: #9A9A9A;
  --accent: #3B82F6;
  --accent-light: #60A5FA;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --live-green: #22C55E;
  --soon-blue: #6B8AFF;
  --radius: 16px;
  --radius-sm: 8px;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 20px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn--waitlist {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 12px;
}

.btn--waitlist:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.btn--submit {
  background: var(--accent);
  color: #FFFFFF;
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1.2rem;
}

.btn--submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--live {
  background: rgba(34, 197, 94, 0.15);
  color: var(--live-green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.3), 0 0 24px rgba(34, 197, 94, 0.1);
  animation: live-glow 2.5s ease-in-out infinite;
}

.badge--live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live-green);
  box-shadow: 0 0 6px var(--live-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes live-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(34, 197, 94, 0.3), 0 0 24px rgba(34, 197, 94, 0.1); }
  50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.2); }
}

.badge--soon {
  background: rgba(107, 138, 255, 0.12);
  color: var(--soon-blue);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-logo {
  opacity: 0;
}

.dd-mark {
  width: 120px;
  height: 120px;
}

.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 100px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 16px;
  opacity: 0;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--accent);
  font-weight: 600;
  margin-top: 20px;
  opacity: 0;
  letter-spacing: 0.02em;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════
   THE PROBLEM
   ═══════════════════════════════════════════ */
.problem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
}

.problem-inner {
  max-width: 1000px;
  text-align: center;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 48px;
  opacity: 0;
  color: var(--text);
}

.problem-stat:last-child {
  margin-bottom: 0;
}

.problem-stat--accent {
  color: var(--accent);
  font-size: clamp(3.5rem, 8vw, 72px);
}

.count-number {
  font-variant-numeric: tabular-nums;
}


/* ═══════════════════════════════════════════
   APHASIAGPT — LIVE PRODUCT
   ═══════════════════════════════════════════ */
.product-live {
  padding: 80px 24px;
}

.product-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  flex: 1;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 48px;
  opacity: 0;
  transform: translateY(60px);
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

/* --- Phone Mockup --- */
.phone-mockup {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(40px);
}

.phone-frame {
  width: 320px;
  height: 640px;
  background: #1A1A1A;
  border-radius: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-notch {
  width: 110px;
  height: 30px;
  background: #1A1A1A;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0F0F0F;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: -14px;
}

.screen-header {
  padding: 44px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.screen-chat {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--accent);
}

.chat-bubble--ai {
  background: rgba(59, 130, 246, 0.1);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble--user {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.screen-input {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-placeholder {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.input-mic {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.input-mic svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .product-layout {
    flex-direction: column;
    gap: 40px;
  }

  .phone-frame {
    width: 260px;
    height: 520px;
  }
}

.product-header {
  margin-bottom: 24px;
}

.product-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
}

.product-oneliner {
  color: var(--text-muted);
  font-size: 1.35rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════
   COMING SOON GRID
   ═══════════════════════════════════════════ */
.coming-soon {
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 64px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 64px;
}

.section-title--left {
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card:hover .card-visual {
  opacity: 0.15;
  transform: scale(1.05);
}

.card-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  transition: all 0.5s ease;
  z-index: 0;
}

.card--stroke .card-visual {
  background: radial-gradient(ellipse at 50% 20%, #F97316 0%, transparent 60%),
              radial-gradient(ellipse at 40% 80%, #DC2626 0%, transparent 50%);
}

.card--apraxia .card-visual {
  background: radial-gradient(ellipse at 50% 30%, #6B8AFF 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, #4F46E5 0%, transparent 50%);
}

.card--dementia .card-visual {
  background: radial-gradient(ellipse at 30% 20%, #F59E0B 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, #D97706 0%, transparent 50%);
}

.card--als .card-visual {
  background: radial-gradient(ellipse at 60% 40%, #22C55E 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, #059669 0%, transparent 50%);
}

.card--autism .card-visual {
  background: radial-gradient(ellipse at 40% 30%, #14B8A6 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, #0D9488 0%, transparent 50%);
}

.card--pediatrics .card-visual {
  background: radial-gradient(ellipse at 40% 30%, #8B5CF6 0%, transparent 60%),
              radial-gradient(ellipse at 60% 70%, #6366F1 0%, transparent 50%);
}

.card--more .card-visual {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.card--more {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
}

.card-body--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: var(--accent);
}

.card-icon--animated .icon-ring {
  animation: icon-rotate 8s linear infinite;
  transform-origin: center;
}

.card-icon--animated .icon-pulse {
  animation: icon-glow 2.5s ease-in-out infinite;
}

@keyframes icon-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes icon-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.card-icon--plus {
  color: var(--text-muted);
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 8px;
  flex-grow: 1;
}

.card-for {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════
   THE PLATFORM
   ═══════════════════════════════════════════ */
.platform {
  padding: 80px 24px;
}

.platform-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.platform-text {
  flex: 1;
}

.platform-desc {
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.platform-desc--accent {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.4rem;
}

.platform-diagram {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  position: relative;
}

.diagram-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
  z-index: 2;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.diagram-spokes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.diagram-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  margin-top: -18px;
  transform-origin: center center;
  transform: rotate(var(--angle)) translateY(-130px);
}

.diagram-spoke span {
  display: block;
  transform: rotate(calc(-1 * var(--angle)));
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .platform-layout {
    flex-direction: column;
    gap: 48px;
  }

  .platform-diagram {
    width: 280px;
    height: 280px;
  }

  .diagram-spoke {
    transform: rotate(var(--angle)) translateY(-110px);
  }
}

/* ═══════════════════════════════════════════
   ABOUT / FOUNDER
   ═══════════════════════════════════════════ */
.about {
  padding: 80px 24px;
}

.about-content {
  max-width: 680px;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text--accent {
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  margin-top: 8px;
}

/* --- Inline Credential Tags (in founder section) --- */
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(15px);
}

.about-cred-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   BUILT DIFFERENT
   ═══════════════════════════════════════════ */
.built-different {
  padding: 80px 24px;
}

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

.diff-item {
  opacity: 0;
  transform: translateY(30px);
}

.diff-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.diff-heading {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.diff-text {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 560px;
  }
}

/* ═══════════════════════════════════════════
   WAITLIST
   ═══════════════════════════════════════════ */
.waitlist {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 24px;
}

.waitlist-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
}

.waitlist-sub {
  color: var(--text-muted);
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.waitlist-form input::placeholder {
  color: var(--text-muted);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.waitlist-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.waitlist-form select option {
  background: var(--bg-card);
  color: var(--text);
}

/* --- Feedback Follow-up --- */
.feedback-followup {
  margin-top: 32px;
  text-align: center;
}

.feedback-prompt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.feedback-textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
}

.feedback-textarea::placeholder {
  color: var(--text-muted);
}

.feedback-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.feedback-btn {
  margin-top: 12px;
}

.form-message {
  font-size: 0.95rem;
  min-height: 24px;
}

.form-message--success {
  color: var(--live-green);
}

.form-message--error {
  color: #EF4444;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-mark {
  width: 60px;
  height: 30px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    padding: 32px 24px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .problem-stat {
    margin-bottom: 32px;
  }

  .about-content {
    max-width: 100%;
  }

  .section-title--left {
    text-align: center;
  }
}

/* --- Focus styles for accessibility --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #FFFFFF;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2);
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: none;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-indicator {
    animation: none;
  }
}
