/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2B;
  --orange-light: #FF8C55;
  --orange-pale: #FFF3ED;
  --navy: #0F1523;
  --dark: #1A1F2E;
  --mid: #4A5568;
  --muted: #718096;
  --border: #E8ECF0;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FB;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15,21,35,0.08);
  --shadow-lg: 0 12px 48px rgba(15,21,35,0.14);
  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section-pad { padding: 100px 0; }

.highlight { color: var(--orange); }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 52px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

.btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.full-width { width: 100%; justify-content: center; }

/* =============================================
   NAV
   ============================================= */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  margin-right: auto;
}
.logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}
.social-chip:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-photo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A6C 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: morph 8s ease-in-out infinite;
  opacity: 0.15;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  25% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
  50% { border-radius: 50% 50% 60% 40% / 50% 60% 40% 50%; }
  75% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
}

.hero-photo-placeholder {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
}

.hero-stats {
  display: flex;
  gap: 16px;
}

.stat-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 90px;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover { border-color: var(--orange); transform: translateY(-3px); }

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-plus { font-size: 1.2rem; font-weight: 800; color: var(--orange); }
.stat-card p { font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--bg-alt); }

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

.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--orange);
  background: var(--orange-pale);
}
.service-card.featured:hover { background: #FFEADE; }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   SKILLS
   ============================================= */
.skills { background: var(--bg); }

.skills-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 60px;
}

.skill-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 14px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tags span {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}
.skill-tags span:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

.ai-tags span {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}

/* =============================================
   EXPERIENCE
   ============================================= */
.experience { background: var(--bg-alt); }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
  padding-left: 4px;
}

/* Animated growing line */
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--border) 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 36px;
  position: relative;
  padding-bottom: 36px;
  cursor: pointer;
}
.timeline-item:last-child { padding-bottom: 0; }

/* Dot */
.timeline-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--border);
  margin-top: 18px;
  z-index: 1;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease;
}
.timeline-dot.current {
  border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 43, 0.12);
}
.timeline-dot.current::after { background: var(--orange); }
.timeline-item:hover .timeline-dot,
.timeline-item.open .timeline-dot {
  border-color: var(--orange);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(255, 107, 43, 0.12);
}
.timeline-item:hover .timeline-dot::after,
.timeline-item.open .timeline-dot::after { background: var(--orange); }

/* Card */
.timeline-card {
  flex: 1;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.timeline-item:hover .timeline-card,
.timeline-item.open .timeline-card {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

/* Header — always visible */
.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.timeline-header-left { flex: 1; }
.timeline-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.timeline-company {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-parttime {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B46C1;
  background: #F3EEFF;
  border: 1.5px solid #D6BCFA;
  padding: 2px 8px;
  border-radius: 50px;
}
.timeline-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.timeline-toggle {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
  user-select: none;
}
.timeline-toggle .chevron {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal;
}
.timeline-item.open .timeline-toggle .chevron { transform: rotate(180deg); }
.timeline-item:hover .timeline-toggle { color: var(--orange); }

/* Expandable body */
.timeline-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}
.timeline-item.open .timeline-body {
  max-height: 400px;
  opacity: 1;
  margin-top: 20px;
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.timeline-bullets li {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.timeline-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
  top: 2px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.timeline-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(255,107,43,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  transition: background var(--transition);
}
.timeline-tags span:hover { background: #FFE5D5; }

/* Education row */
.education-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 32px;
  flex-wrap: wrap;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.education-row:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.education-card {
  display: flex;
  align-items: center;
  gap: 18px;
}
.edu-icon {
  font-size: 2.2rem;
  background: var(--orange-pale);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.education-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.education-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* =============================================
   PROJECTS
   ============================================= */
.projects { background: var(--bg-alt); }

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

.project-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.project-preview {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-preview-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.project-preview-img iframe {
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: 0 0;
  border: none;
  pointer-events: none;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 35, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(3px);
}
.project-card:hover .project-overlay { opacity: 1; }

.project-info { padding: 22px 22px 24px; }

.project-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

.project-tag-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6B46C1;
  background: #F3EEFF;
  border: 1.5px solid #D6BCFA;
  padding: 3px 10px;
  border-radius: 50px;
}

/* keep standalone .project-tag still spaced when not in a row */
.project-info > .project-tag { margin-bottom: 10px; }

.project-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* More card */
.project-more {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #FFEADE 100%);
  border-color: var(--orange) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-more-inner {
  padding: 36px 28px;
  text-align: center;
}
.more-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--orange);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 16px;
  font-weight: 300;
}
.project-more-inner h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.project-more-inner p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.contact-left p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
}

.hire-btn { margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details p {
  font-size: 0.9rem;
  color: var(--mid);
  margin: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0AEC0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding: 32px 0;
}

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

.footer .logo { color: #fff; }

.footer-copy {
  font-size: 0.875rem;
  color: #718096;
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #718096;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .timeline-item { gap: 20px; }
  .timeline::before { left: 14px; }
  .timeline-dot { width: 28px; height: 28px; margin-top: 22px; }
  .timeline-card { padding: 20px; }
  .timeline-header-right { align-items: flex-start; }
  .education-row { flex-direction: column; align-items: flex-start; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-socials { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-badge { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .skills-wrap { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-heading { font-size: 2.5rem; }

  .hero-stats { justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-pad { padding: 64px 0; }
  .hero { padding: 60px 0 72px; }
}

/* =============================================
   MOBILE NAV (open state)
   ============================================= */
.nav-header.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  gap: 16px;
  z-index: 99;
}
.nav-header.nav-open .nav-actions {
  display: flex;
  position: absolute;
  top: 68px; left: 0; right: 0;
  margin-top: 130px;
  background: rgba(255,255,255,0.98);
  padding: 0 24px 20px;
  z-index: 99;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
