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

:root {
  --cream:       #F3EDE3;
  --cream-dark:  #EBE3D6;
  --blue:        #6B9FEA;
  --blue-dark:   #3A72D4;
  --blue-faint:  rgba(107, 159, 234, 0.12);
  --orange:      #E8823A;
  --teal:        #45C0C0;
  --dark:        #141414;
  --dark-2:      #1E1E1E;
  --dark-3:      #262626;
  --white:       #FFFFFF;
  --text-muted:  rgba(255, 255, 255, 0.45);
  --text-gray:   #7A756F;
  --radius:      22px;
  --radius-sm:   14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 66px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.wordmark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -1.2px;
  line-height: 1;
  color: #fff;
  font-style: normal;
}

.wordmark em {
  font-style: normal;
  color: var(--blue);
}

.wordmark-sm {
  font-size: 22px;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  padding: 120px 6% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(107,159,234,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(69,192,192,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,159,234,0.14);
  border: 1px solid rgba(107,159,234,0.28);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 40px;
}

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

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 16px;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}

.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(255,255,255,0.14);
}

.btn-appstore svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-appstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-appstore-text small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 2px;
}

.btn-appstore-text strong {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.hero-secondary-link {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-secondary-link:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-mascot {
  width: 100%;
  max-width: 500px;
  height: auto;
  animation: levitate 4.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(107,159,234,0.18));
}

@keyframes levitate {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1deg); }
  66%       { transform: translateY(-8px) rotate(-0.5deg); }
}

.hero-taunt {
  position: absolute;
  top: 8%;
  right: -5%;
  background: #fff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
  animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) 1s both;
}

.hero-taunt::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  border: 5px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ─────────────────────────────────────────
   SHARED SECTION STYLES
───────────────────────────────────────── */
section {
  padding: 110px 6%;
}

.max-w {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.06;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.65;
  max-width: 520px;
}

.section-header {
  margin-bottom: 64px;
}

/* ─────────────────────────────────────────
   WHY UPSTER
───────────────────────────────────────── */
.why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.stat-chip {
  display: inline-block;
  background: var(--cream);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 13px;
  color: var(--dark);
  letter-spacing: -0.2px;
}

/* ─────────────────────────────────────────
   VILLAIN PARADE
───────────────────────────────────────── */
.villains {
  background: var(--dark-2);
  padding: 90px 0;
  overflow: hidden;
}

.villains-header {
  text-align: center;
  padding: 0 6%;
  margin-bottom: 60px;
}

.villains-header .section-tag {
  color: var(--orange);
}

.villains-header .section-heading {
  color: #fff;
}

.villains-header .section-sub {
  color: rgba(255,255,255,0.45);
  margin: 0 auto;
}

.villain-track-wrapper {
  overflow: hidden;
  position: relative;
}

.villain-track-wrapper::before,
.villain-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.villain-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-2), transparent);
}

.villain-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-2), transparent);
}

.villain-track {
  display: flex;
  width: max-content;
  animation: scrollVillains 28s linear infinite;
}

.villain-track:hover {
  animation-play-state: paused;
}

@keyframes scrollVillains {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.villain-card {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  cursor: default;
}

.villain-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.villain-card:hover img {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 16px 32px rgba(107,159,234,0.3));
}

.villain-name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how {
  background: var(--dark);
}

.how .section-tag  { color: var(--teal); }
.how .section-heading { color: #fff; }
.how .section-sub  { color: rgba(255,255,255,0.45); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.how-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.how-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(107,159,234,0.2);
}

.step-number {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 4px;
}

.step-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.how-step h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.how-step .step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  opacity: 0.8;
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats {
  background: var(--blue);
  padding: 80px 6%;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.stat-block {
  text-align: center;
  padding: 28px 20px;
}

.stat-block + .stat-block {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

@media (max-width: 600px) {
  .stat-block + .stat-block {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}

/* ─────────────────────────────────────────
   SCREENSHOTS
───────────────────────────────────────── */
.screenshots {
  background: var(--cream-dark);
}

.screenshots .section-heading,
.screenshots .section-tag {
  text-align: center;
}

.screenshots .section-sub {
  text-align: center;
  margin: 0 auto;
}

.screens-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.screen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone {
  width: 240px;
  background: #111;
  border-radius: 50px;
  padding: 14px;
  box-shadow:
    0 0 0 3px #2A2A2A,
    0 0 0 4px #333,
    0 40px 80px rgba(0,0,0,0.22);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  border-radius: 36px;
  overflow: hidden;
  background: #F3EDE3;
  aspect-ratio: 9/19.5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 0.2px;
}

.screen-item.hero-screen .phone {
  width: 260px;
  transform: translateY(-28px);
}

/* ─────────────────────────────────────────
   QUOTE STRIP
───────────────────────────────────────── */
.quote-strip {
  background: var(--orange);
  padding: 0 6%;
  overflow: hidden;
}

.quote-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.quote-text {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.quote-text em {
  font-style: normal;
  opacity: 0.65;
}

.quote-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-top: 16px;
}

.quote-villain-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-left: auto;
  animation: wobble 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(-3deg) scale(1.02); }
  75%       { transform: rotate(3deg) scale(0.98); }
}

/* ─────────────────────────────────────────
   WAITLIST
───────────────────────────────────────── */
.waitlist {
  background: var(--dark);
}

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

.waitlist .section-tag  { color: var(--teal); }
.waitlist .section-heading { color: #fff; }

.waitlist-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 44px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 15px 22px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.28);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--blue);
  background: rgba(107,159,234,0.08);
}

.waitlist-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.waitlist-form button:hover {
  background: var(--blue-dark);
  transform: scale(1.04);
}

.waitlist-fine-print {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.waitlist-success {
  display: none;
  background: rgba(69, 192, 192, 0.12);
  border: 1.5px solid rgba(69, 192, 192, 0.3);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #0C0C0C;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 6% 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

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

.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ─────────────────────────────────────────
   LANDING PAGE / ARTICLE STYLES
───────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 140px 6% 80px;
  color: #fff;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs span {
  margin: 0 8px;
  opacity: 0.4;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.page-hero .lede {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 700px;
}

.article {
  background: var(--cream);
  padding: 80px 6%;
}

.article-inner {
  max-width: 740px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
}

.article-inner h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 56px 0 18px;
}

.article-inner h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 36px 0 12px;
}

.article-inner p {
  margin-bottom: 18px;
  color: #2A2825;
}

.article-inner ul,
.article-inner ol {
  margin: 0 0 22px 22px;
  color: #2A2825;
}

.article-inner li {
  margin-bottom: 8px;
}

.article-inner a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-inner a:hover {
  color: var(--dark);
}

.article-inner blockquote {
  border-left: 4px solid var(--blue);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
}

.faq {
  background: var(--cream-dark);
  padding: 80px 6%;
}

.faq-inner {
  max-width: 740px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
}

.cta-strip {
  background: var(--blue);
  padding: 70px 6%;
  text-align: center;
  color: #fff;
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.cta-strip p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
}

.cta-strip .btn {
  display: inline-block;
  background: #fff;
  color: var(--blue-dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s;
}

.cta-strip .btn:hover {
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-mascot,
  .quote-villain-img,
  .villain-track,
  .hero-eyebrow-dot,
  .hero-taunt {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { order: -1; }
  .hero-mascot { max-width: 320px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-taunt { display: none; }

  .quote-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .quote-villain-img { display: none; }
}

@media (max-width: 640px) {
  section { padding: 80px 5%; }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form button {
    width: 100%;
    padding: 16px;
  }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .screens-row { flex-direction: column; align-items: center; }
  .screen-item.hero-screen .phone { transform: none; }

  .stat-block + .stat-block {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}
