/* ===================================================
   JOJO'S BIZARRE BIRTHDAY — Main Stylesheet
   =================================================== */

/* === TOKENS === */
:root {
  --gold: #f59e0b;
  --gold-light: #fde68a;
  --gold-dark: #b45309;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #4c1d95;
  --pink: #ec4899;
  --teal: #10b981;
  --dark: #0f0a1a;
  --dark-2: #1a1028;
  --dark-3: #231740;
  --white: #ffffff;
  --off-white: #f5f0ff;
  --manga-dot: rgba(124, 58, 237, 0.15);

  --font-display: 'Bangers', 'Bebas Neue', cursive;
  --font-heavy: 'Black Han Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.5);
  --shadow-purple: 0 0 40px rgba(124, 58, 237, 0.5);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: crosshair;
}

/* === PARTICLES CANVAS === */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* === STAND CRY OVERLAY === */
#stand-cry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#stand-cry-overlay.hidden { display: none; }
.cry-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow:
    -4px -4px 0 #000,
     4px -4px 0 #000,
    -4px  4px 0 #000,
     4px  4px 0 #000,
    0 0 60px var(--gold),
    0 0 120px rgba(245,158,11,0.5);
  animation: crySplash 0.8s ease-out forwards;
}
@keyframes crySplash {
  0%   { transform: scale(0.3) rotate(-5deg); opacity: 0; }
  50%  { transform: scale(1.15) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #3b1d6e 0%, var(--dark) 70%);
  z-index: 1;
}

/* Manga halftone dots */
.manga-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--manga-dot) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Speed lines */
.speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.speed-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.12), transparent);
  transform-origin: left center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.tag-line {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.title-happy {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  color: var(--white);
  text-shadow:
    -3px -3px 0 var(--purple),
     3px -3px 0 var(--purple),
    -3px  3px 0 var(--purple),
     3px  3px 0 var(--purple);
  letter-spacing: 0.06em;
}

.title-birthday {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 12rem);
  background: linear-gradient(135deg, var(--gold) 0%, #fff176 40%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(245,158,11,0.7));
  letter-spacing: 0.04em;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(245,158,11,0.7)); }
  50%       { filter: drop-shadow(0 0 60px rgba(245,158,11,1)); }
}

.za-warudo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: 3px solid var(--gold);
  border-radius: 999px;
  padding: 0.9rem 2.4rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.8s 0.3s ease both;
  box-shadow: 0 0 20px rgba(124,58,237,0.5), inset 0 0 20px rgba(0,0,0,0.3);
}
.za-warudo-badge > span:first-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.badge-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  text-transform: uppercase;
}
.za-warudo-badge:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 0 50px rgba(245,158,11,0.8), 0 0 80px rgba(124,58,237,0.5);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.8;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.45s ease both;
}

.scroll-hint {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--purple-light);
  animation: bounce 2s ease-in-out infinite, fadeUp 0.8s 0.6s ease both;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Floating roses */
.floating-roses { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.rose {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  animation: floatRose var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes floatRose {
  0%   { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-10vh) rotate(360deg); }
}

/* === ZA WARUDO TIME STOP === */
.time-stop-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 25, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.time-stop-screen.hidden { display: none; }
.time-stop-inner {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: tsEntrance 0.5s ease-out;
}
@keyframes tsEntrance {
  0% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.ts-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 11rem);
  color: var(--purple-light);
  text-shadow: 0 0 60px var(--purple), 0 0 120px rgba(124,58,237,0.6);
  animation: flicker 2s ease-in-out infinite;
  letter-spacing: 0.1em;
}
@keyframes flicker {
  0%, 90%, 100% { opacity: 1; }
  92%, 96% { opacity: 0.6; }
}
.ts-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
.ts-message {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.7;
  margin-bottom: 2rem;
}
.ts-clock {
  font-family: monospace;
  font-size: 2.5rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 20px var(--teal);
}
.ts-resume {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 2.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(245,158,11,0.5);
}
.ts-resume:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(245,158,11,0.9);
}
.ts-particles { position: absolute; inset: 0; pointer-events: none; }
.ts-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--purple-light);
  opacity: 0;
  animation: tsFloat var(--dur) var(--delay) ease-in-out infinite;
}
@keyframes tsFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80%  { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
}

/* === SECTION COMMONS === */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 999px;
  padding: 0.3rem 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.07em;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--off-white);
  opacity: 0.6;
  margin-top: 0.8rem;
  font-size: 1rem;
}

/* === STANDS SECTION === */
.stands-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, var(--dark), var(--dark-2));
}

.stands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stand-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.stand-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245,158,11,0.2);
}
.stand-card.featured {
  border-color: var(--gold);
  background: rgba(245,158,11,0.06);
}

.stand-card-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.15), transparent 70%);
}
.stand-card:hover .stand-card-glow { opacity: 1; }

.crown-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: var(--radius);
  text-transform: uppercase;
}

.stand-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.stand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.stand-stat-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.stand-stat-bar span {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.stand-stat-bar span::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: var(--w);
  background: linear-gradient(to right, var(--purple), var(--gold));
  border-radius: 999px;
  animation: barFill 1.2s ease-out forwards;
}
@keyframes barFill {
  from { width: 0; }
  to   { width: var(--w); }
}
.stand-stat-bar label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  white-space: nowrap;
  width: 80px;
}
.stand-desc {
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.7;
  line-height: 1.6;
}
.stand-btn {
  width: 100%;
  padding: 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.stand-btn:hover {
  background: rgba(245,158,11,0.15);
  border-color: var(--gold);
  transform: scale(1.02);
}
.featured-btn {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-color: var(--gold);
  color: var(--gold-light);
}
.featured-btn:hover {
  background: linear-gradient(135deg, var(--purple), var(--gold-dark));
}

/* === MESSAGE SECTION === */
.message-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  background: var(--dark-3);
  overflow: hidden;
}
.message-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 18rem);
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  user-select: none;
}
.message-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .message-container { grid-template-columns: 1fr; }
}

.jojo-pose-container {
  text-align: center;
  background: rgba(124,58,237,0.1);
  border: 2px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  animation: poseFloat 3s ease-in-out infinite;
}
@keyframes poseFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
.pose-figure {
  font-size: 5rem;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold);
  margin-bottom: 0.5rem;
}
.pose-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
}
.pose-sparkles {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pose-sparkles span {
  color: var(--gold);
  animation: sparkle 1.5s ease-in-out infinite;
}
.pose-sparkles span:nth-child(2) { animation-delay: 0.2s; color: var(--purple-light); }
.pose-sparkles span:nth-child(3) { animation-delay: 0.4s; }
.pose-sparkles span:nth-child(4) { animation-delay: 0.6s; color: var(--purple-light); }
.pose-sparkles span:nth-child(5) { animation-delay: 0.8s; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50%       { transform: scale(1.4) rotate(180deg); opacity: 0.6; }
}

.message-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.birthday-quote {
  font-family: var(--font-heavy), serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: normal;
}
.birthday-quote em {
  color: var(--gold);
  font-style: italic;
}
.message-body {
  color: var(--off-white);
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.message-signature {
  display: flex;
  justify-content: flex-end;
}
.sig-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--purple-light);
}

/* === TIMELINE SECTION === */
.timeline-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--gold), var(--purple));
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .timeline::before { left: 20px; }
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem;
  position: relative;
  animation: fadeUp 0.6s ease both;
}
.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}
@media (max-width: 600px) {
  .timeline-item, .timeline-item.right {
    padding-right: 0;
    padding-left: 60px;
    justify-content: flex-start;
  }
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark);
  box-shadow: 0 0 20px rgba(245,158,11,0.5);
  z-index: 2;
}
@media (max-width: 600px) {
  .timeline-dot { left: 20px; transform: none; }
}

.timeline-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 340px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(124,58,237,0.3);
  border-color: rgba(124,58,237,0.4);
}
.tl-part {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.tl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.timeline-content p {
  font-size: 0.85rem;
  color: var(--off-white);
  opacity: 0.65;
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at center, #2d1b69 0%, var(--dark) 70%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,158,11,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner { position: relative; z-index: 2; }
.cta-pretitle {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(245,158,11,0.5));
  margin-bottom: 1.5rem;
}
.cta-sub {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.7;
  margin-bottom: 3rem;
}
.cta-sub strong { color: var(--gold); }

.cta-btn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1.1rem 3rem;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border: 3px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}
.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 80px rgba(245,158,11,0.7), 0 0 40px rgba(124,58,237,0.7);
}
.cta-btn:active { transform: scale(0.97); }

.muda-muda {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--purple-light);
  min-height: 4rem;
  text-shadow: 0 0 20px var(--purple);
  animation: mudaPulse 1s ease-in-out infinite;
}
@keyframes mudaPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* === FOOTER === */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--dark);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-text {
  color: var(--off-white);
  opacity: 0.4;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-roses {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.5;
}

/* === SHARED ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === CONFETTI PIECES === */
.confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 8000;
  border-radius: 2px;
  animation: confettiFall var(--dur) var(--delay) ease-in forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg) translateX(var(--tx)); opacity: 0; }
}

/* === SCROLL ANIMATIONS === */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
