:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --accent: #ff6b4a;
  --accent-soft: rgba(255, 107, 74, 0.15);
  --text: #f5f5f5;
  --muted: #9ca3af;
  --card-bg: rgba(15, 23, 42, 0.9);
  --border: rgba(148, 163, 184, 0.25);
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-soft-sm: 0 10px 30px rgba(0, 0, 0, 0.45);
  --nav-height: 72px;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ====== NAVBAR ====== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.15));
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ff9770, #ff6b4a 40%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-weight: 600;
  font-size: 1rem;
}

.logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: all 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b4a, #fb923c);
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta span {
  font-size: 0.75rem;
  color: var(--muted);
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.82rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b4a, #fb923c);
  border-color: transparent;
  color: #0b1020;
  font-weight: 600;
  box-shadow: 0 14px 38px rgba(251, 146, 60, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.7);
}

.btn-ghost:hover {
  border-color: rgba(248, 250, 252, 0.7);
  color: var(--text);
  background: rgba(15, 23, 42, 0.95);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.72);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.98));
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1rem 1.25rem 1.25rem;
  z-index: 45;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 180ms ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-menu .m-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.mobile-menu .m-links a {
  padding: 0.65rem 0.6rem;
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 500;
}

.mobile-menu .m-ctas {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mobile-menu .m-ctas .btn-primary,
.mobile-menu .m-ctas .btn-ghost {
  padding: 0.55rem 0.85rem;
  font-size: 0.86rem;
}

.mobile-menu .m-contact {
  margin-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta span {
    display: none;
  }

  .nav-cta {
    gap: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ====== LAYOUT ====== */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

section {
  padding: 4rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.section-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.8);
}

.section-title {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 460px;
}

/* ====== HERO ====== */
.hero {
  min-height: calc(100vh - var(--nav-height) - 1rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 0.9rem;
}

.hero-tag-pill {
  font-size: 0.64rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #fee2e2, #fed7aa);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 1.4rem;
}

.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
  font-size: 0.8rem;
}

.hero-quick span {
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-note {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 240px;
}

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

.hero-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-2xl);
  padding: 1.4rem;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-photo-frame {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.hero-photo {
  aspect-ratio: 4/5;
  background-image: linear-gradient(135deg, #020617, #111827);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("mohit.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-photo-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.hero-meta-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.hero-meta-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-meta-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 0.6rem;
}

.hero-stat span:first-child {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-orbit {
  position: absolute;
  inset: -10%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  opacity: 0.45;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  right: -4px;
  top: 14%;
  transform: translateY(-50%);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  box-shadow: var(--shadow-soft-sm);
}

.hero-badge strong {
  color: #f97316;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.3rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-right {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note {
    max-width: 100%;
  }
}

/* ====== ABOUT ====== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  margin-top: 1.5rem;
}

.about-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.about-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.chip {
  font-size: 0.74rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e5e7eb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.7rem;
}

.tag-soft {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.09);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.about-card {
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
}

.about-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.about-card-title h3 {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-pill {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.about-list {
  list-style: none;
  margin: 0.4rem 0 0.6rem;
  padding: 0;
}

.about-list li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.about-list li span:first-child {
  font-size: 0.8rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ====== SERVICES ====== */
.services-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.service-card {
  border-radius: var(--radius-xl);
  padding: 1rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft-sm);
  position: relative;
  overflow: hidden;
  font-size: 0.82rem;
}

.service-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-size: 0.65rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.service-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.service-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.4);
  padding-top: 0.5rem;
}

.service-meta span strong {
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ====== PROJECTS ====== */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.75rem;
}

.filter-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
  cursor: pointer;
  background: rgba(15, 23, 42, 0.8);
}

.filter-pill.active {
  background: rgba(248, 250, 252, 0.1);
  border-color: var(--accent);
  color: #e5e7eb;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-soft-sm);
  transform-origin: center;
}

.project-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 50%);
}

.project-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem 0.85rem;
  font-size: 0.78rem;
}

.project-title-row {
  display: flex;
  justify-content: space-between;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}

.project-title {
  font-size: 0.86rem;
  font-weight: 500;
}

.project-tag {
  font-size: 0.65rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
}

.project-card:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Video wrapper to match thumbnails */
.project-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}

.project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  will-change: transform;
  outline: none;
  border: 0;
}

/* ====== CONTACT ====== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.3rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}

.contact-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.contact-key {
  font-size: 0.78rem;
  color: var(--muted);
  min-width: 80px;
}

.contact-value {
  font-size: 0.82rem;
}

.contact-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.social-pill {
  font-size: 0.72rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--muted);
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.3rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft-sm);
  font-size: 0.84rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

label {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.82rem;
  resize: vertical;
  min-height: 40px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

textarea {
  min-height: 90px;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

/* ====== FOOTER ====== */
.footer {
  background: linear-gradient(135deg, #000000, #000000);
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.footer-logo h2 {
  margin-bottom: 0.25rem;
}

.footer-contact h3,
.footer-social h3 {
  margin-bottom: 10px;
  color: #00bcd4;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #00bcd4;
}

.footer-social a {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.footer-bottom {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}

.footer-bottom p + p {
  margin-top: 4px;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ====== SCROLL ANIMATION ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.26s;
}
