@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #281fa9;
  --cream: #fffaf0;
  --dark: #2b2b2b;
  --grey: #6b6b6b;
  --border: #e8e0d0;
  --bg: #fffaf0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Archivo', sans-serif; background: var(--bg); color: var(--dark); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled { background: #000; box-shadow: 0 2px 20px rgba(0,0,0,.35); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 110px;
}
.nav-logo { display: flex; align-items: center; gap: 32px; color: var(--cream); font-weight: 900; font-size: 1.25rem; letter-spacing: .05em; }
/* ── NAV LINKS ARCHITECTURE ── */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { position: relative; color: rgba(255,250,240,.8); font-size: 1.1rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; text-decoration: none; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 4px; background-color: var(--blue); transform: scaleX(0); transform-origin: center; transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1); }
/* ── HOVER & ACTIVE STATES ── */
.nav-links a:hover, .nav-links a.active { color: var(--bg); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ── MOBILE MENU (CONDENSED) ── */
.mobile-menu { position: fixed; top: 0; right: 0; width: 65vw; height: 100vh; background: rgba(10, 10, 26, 0.9); backdrop-filter: blur(12px); z-index: 2000; display: flex; flex-direction: column; gap: 32px; padding: 100px 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--cream); font-size: 1.75rem; font-weight: 900; line-height: 2; letter-spacing: -.02em; transition: opacity .2s; text-decoration: none; }
.mobile-menu a:hover { opacity: .7; }
.mobile-close { position: absolute; top: 24px; right: 24px; color: var(--cream); font-size: 2rem; background: none; border: none; cursor: pointer; }
.mobile-cta { background: var(--blue) !important; color: var(--cream) !important; padding: 14px 32px; border-radius: 2px; font-weight: 700 !important; font-size: 1.1rem !important; margin-top: 8px; text-align: center; width: fit-content; text-transform: uppercase; letter-spacing: 0.05em; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all .3s; }
/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px; position: relative;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #0a0a1a; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.75) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-line { width: 64px; height: 2px; background: var(--blue); margin-bottom: 32px; }
.hero h1 { color: var(--cream); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; line-height: .95; letter-spacing: -.02em; margin-bottom: 24px; }
.hero h1 span { color: var(--blue); -webkit-text-stroke: 1.25px #000000; /* Creates a clean, crisp 1.5px off-white outline */}
.hero p { color: rgba(255,250,240,.7); font-size: 1.15rem; line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary { background: var(--blue); color: var(--cream); font-weight: 700; padding: 14px 28px; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px; transition: opacity .2s; }
.btn-primary:hover { opacity: .88; }
.btn-outline { border: 1px solid rgba(255,250,240,.3); color: var(--cream); font-weight: 500; padding: 14px 28px; border-radius: 2px; transition: background .2s; }
.btn-outline:hover { background: rgba(255,250,240,.1); }

/* ── TICKER ── */
.ticker { backdrop-filter: blur(80px); padding: 12px 0; overflow: hidden; background: rgba(0, 0, 0, 0.2); }
/* Using gap: 0 ensures the ONLY spacing comes from your defined item margins */
.ticker-inner { display: flex; white-space: nowrap; width: fit-content; animation: ticker-scroll 50s linear infinite; gap: 0; }
/* display: flex + align-items: center keeps text and dots on the same horizontal axis */
.ticker-item { display: flex; align-items: center; font-size: 2rem; font-weight: 700; letter-spacing: .2em; color: var(--bg); margin: 0 30px; }
/* Fixed margin-left on the dot creates identical spacing regardless of the word length */
.ticker-dot { color: var(--bg); margin-left: 60px; line-height: 0; display: inline-block; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 96px 24px; }
.section-inner, .divider { max-width: 1100px; margin: 0 auto; }
.section-line { width: 48px; height: 2px; background: var(--blue); margin-bottom: 24px; }
.section-line.center { margin: 0 auto 24px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; color: var(--dark); }
.section-sub { color: var(--grey); font-size: 1.05rem; line-height: 1.7; }
.divider { height: 1px; background: var(--border); }
.text-center { text-align: center; }

/* ── VISION SECTION ── */
.vision-section { display: flex; flex-wrap: wrap; gap: clamp(40px, 8vw, 100px); align-items: center; justify-content: center; padding: 80px 40px; }
/* ── VISION IMAGE (SMALL BOX) ── */
.vision-image { flex: 0 1 400px; aspect-ratio: 1/1; position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.15); background: #000; }
.vision-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.vision-image:hover img { transform: scale(1.05); }
/* Vision Content */
.vision-content { flex: 1 1 400px; }
.vision-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1; margin-bottom: 32px; }
.vision-statements { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
.statement-item h4 { font-size: 1.2rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; letter-spacing: 0.05em; }
.statement-item p { font-size: 1rem; line-height: 1.6; color: var(--muted-text); }

/* ── SERVICES SECTION ── */
/* ── SERVICES SECTION (HORIZONTAL → VERTICAL) ── */
.services-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.main-header { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1; margin-bottom: 80px; letter-spacing: -.02em; text-align: center; }
.services-grid { display: flex; flex-direction: row; gap: 32px; justify-content: space-between; }
.service-card { flex: 1; display: flex; flex-direction: column; gap: 8px; border-left: 2px solid var(--blue); padding-left: 20px; padding-right: 40px;}
.service-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--blue); letter-spacing: 0.05em; }
.service-card p { font-size: 1rem; line-height: 1.5; color: var(--muted-text); margin-bottom: 20px; }
.service-card .primary-btn { width: fit-content; font-size: 0.85rem; margin-top: auto; }

/* ── MOBILE OVERRIDE ── */
@media (max-width: 900px) {
  .services-grid { flex-direction: column; gap: 48px; }
  .service-card { flex: none; width: 100%; }
}
/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.team-card { text-align: center; }
.team-img { width: 180px; height: 180px; border-radius: 2px; overflow: hidden; margin: 0 auto 20px; }
.team-img img { width: 100%; height: 100%; object-fit: cover;}
.team-card:hover .team-img img { filter: grayscale(0%); }
.team-name { font-weight: 700; font-size: 1.05rem; }
.team-role { color: var(--grey); font-size: .875rem; margin-top: 4px; }

/* ── PAGE HERO ── */
.page-hero { background: #000; padding: 140px 24px 80px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; text-shadow: 2px 2px 0px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.4); }
.page-hero p { color: rgba(255,250,240,.6); font-size: 1.05rem; line-height: 1.7; max-width: 520px; }

/* ── PRICING ── */
.pricing-header { margin-bottom: 64px; text-align: left; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card { border-radius: 2px; overflow: hidden; transition: transform .3s; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-starter { background: var(--cream); border: 4px solid var(--blue); }
.pricing-smart { background: var(--cream); border: 4px solid var(--blue); animation: pulse-border 2.5s ease-in-out infinite; }
.pricing-auto { background: #000; color: var(--cream); border: 4px solid var(--blue); }
.pricing-badge { background: var(--blue); color: var(--cream); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; text-align: center; padding: 8px; }
.pricing-body { padding: 32px; }
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-desc { font-size: .875rem; margin-bottom: 24px; opacity: .6; }
.pricing-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.pricing-period { font-size: .875rem; opacity: .5; margin-left: 8px; }
.pricing-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; opacity: .85; }
.pricing-check { color: var(--blue); flex-shrink: 0; font-weight: 700; }
.pricing-cta-blue { display: block; text-align: center; background: var(--blue); color: var(--cream); font-weight: 700; padding: 12px; border-radius: 2px; transition: opacity .2s; }
.pricing-cta-blue:hover { opacity: .88; }
.pricing-cta-outline { display: block; text-align: center; border: 1px solid var(--blue); color: var(--blue); font-weight: 700; padding: 12px; border-radius: 2px; transition: all .2s; }
.pricing-cta-outline:hover { background: var(--blue); color: var(--cream); }
.pricing-cta-cream { display: block; text-align: center; background: var(--cream); color: #000; font-weight: 700; padding: 12px; border-radius: 2px; transition: opacity .2s; }
.pricing-cta-cream:hover { opacity: .88; }
@keyframes pulse-border { 0%,100% { box-shadow: 0 0 0 0 rgba(40,31,169,.4); } 50% { box-shadow: 0 0 0 8px rgba(40,31,169,0); } }

/* ── EXTRA SERVICES GRID (3x2) ── */
.services-header { margin-bottom: 64px; text-align: left; }
.section-desc { font-size: 1.1rem; line-height: 1.6; color: var(--muted-text); max-width: 700px; margin-top: 16px; }
.extra-services { padding: 40px 24px 120px; max-width: 1200px; margin: 0 auto; }
.services-grid-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 60px; }
.extra-card { border-left: 2px solid var(--blue); padding-left: 24px; transition: transform 0.3s ease; }
.extra-card:hover { transform: translateX(5px); }
.extra-card h4 { font-size: 1.2rem; font-weight: 800; color: var(--blue); letter-spacing: 0.05em; margin-bottom: 12px; }
.extra-card ul { list-style: none; padding: 0; }
.extra-card li { font-size: 0.95rem; line-height: 1.6; color: var(--muted-text); position: relative; padding-left: 15px; }
.extra-card li::before { content: "·"; position: absolute; left: 0; color: var(--blue); font-weight: bold; }
.service-highlight-box { width: 90%; max-width: 1600px; margin: 0 auto; position: relative; border-radius: 4px; overflow: hidden; height: 400px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; border: 2px solid var(--blue); }
.service-highlight-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 1; transition: transform 0.3s ease; }
.service-highlight-box:hover img { transform: scale(1.05); }

/* ── PORTFOLIO ── */
.portfolio-row { display: grid; grid-template-columns: 3fr 2fr; gap: 24px; margin-bottom: 24px; }
.portfolio-row.reverse { grid-template-columns: 2fr 3fr; }
.portfolio-card { border-radius: 2px; overflow: hidden; background: var(--cream); border: 1px solid var(--border); transition: transform .3s; cursor: pointer; }
.portfolio-card:hover { transform: translateY(-2px); }
.portfolio-img { aspect-ratio: 3/2; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-card:hover .portfolio-img img { transform: scale(.97); }
.portfolio-info { padding: 24px; }
.portfolio-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.portfolio-desc { font-size: .875rem; color: var(--grey); line-height: 1.6; margin-bottom: 16px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-tag { background: rgba(40,31,169,.1); color: var(--blue); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; transition: all .3s; }
.portfolio-card:hover .portfolio-tag { background: var(--blue); color: var(--cream); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 60px; height: 60px; min-width: 60px; background: rgba(40,31,169,.1); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.contact-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.contact-value { font-weight: 600; margin-top: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 2px; font-family: inherit; font-size: .95rem;
  background: #fff; transition: border-color .2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--blue); color: var(--cream);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  padding: 14px; border: none; border-radius: 2px; cursor: pointer; transition: opacity .2s;
}
.form-submit:hover { opacity: .88; }
.form-success { text-align: center; padding: 48px 0; }
.form-success .check { font-size: 3rem; color: var(--blue); display: block; margin-bottom: 16px; }

.image-divider {
  height: 30vh; min-height: 400px; position: relative;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.divider-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #0a0a1a; }
.divider-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.75) 100%); }
.divider-content {z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;}
.image-divider h1 { color: var(--cream); font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 900; line-height: .95; letter-spacing: -.01em; margin-bottom: 24px; }
.divider-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* ── FOOTER ── */
.footer { background: #000; color: var(--cream); border-top: 1px solid rgba(40,31,169,.3);}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 24px 24px 24px 24px; }
.footer-copy { color: rgba(255,250,240,.4); font-size: .8rem; margin: 0; /* Prevents hidden browser styles from forcing extra space at the base */}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-brand-name { font-weight: 900; font-size: 1.1rem; letter-spacing: .05em; margin-left: 10px; }
.footer-tagline { color: rgba(255,250,240,.5); font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,250,240,.4); margin-bottom: 16px; }
.footer-link { display: block; color: rgba(255,250,240,.6); font-size: .875rem; margin-bottom: 12px; transition: color .2s; }
.footer-link:hover { color: var(--blue); }
.footer-socials { display: flex; justify-content: flex-start; /* Aligns with the 'Connect' header */align-items: center; gap: 1rem; margin-top: 1rem;}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; /* Slightly larger for easier mobile tapping */
  height: 20px;
  color: rgba(255, 250, 240, 0.6); /* Cream color with opacity */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--color-accent); /* Your signature blue */
  transform: translateY(-3px); /* Subtle modern lift */
}

.footer-socials svg {
  width: 100%;
  height: 100%;
  fill: currentColor; /* The icon takes the color of the <a> tag */
}
.footer-bottom { border-top: 1px solid rgba(255,250,240,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: rgba(255,250,240,.4); font-size: .8rem; }

/* ── CHATBOT ── */
.chat-fab { position: fixed; bottom: 20px; right: 20px; width: 80px; height: 80px; border-radius: 50%; padding: 0; overflow: hidden; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; background: none; z-index: 999999;  animation: shadowPulse 3s infinite ease-in-out; } 
.chat-fab-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; } 
@keyframes shadowPulse { 0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.65); } 70% { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }
.chat-fab:hover { transform: scale(1.05); } 
.chat-window { display: none; position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 360px; max-width: calc(100vw - 48px); height: 500px; max-height: calc(100vh - 120px); background: #000; border: 1px solid rgba(255,250,240,.1); border-radius: 12px; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.5); overflow: hidden; }
.chat-window.open { display: flex; }
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,250,240,.1); }
.chat-status { display: flex; align-items: center; gap: 10px; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; }
.chat-title { color: var(--cream); font-weight: 700; font-size: .875rem; }
.chat-close-btn { color: rgba(255,250,240,.5); background: none; border: none; cursor: pointer; font-size: 1.2rem; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 80%; padding: 10px 14px; border-radius: 8px; font-size: .875rem; line-height: 1.5; }
.chat-msg.user { background: var(--blue); color: var(--cream); align-self: flex-end; }
.chat-msg.bot { background: rgba(255, 255, 255, 0.08); color: var(--cream); align-self: flex-start; }
.chat-input-row { display: flex; gap: 8px; padding: 16px; border-top: 1px solid rgba(255,250,240,.1); }
.chat-input { flex: 1; background: rgba(255,250,240,.05); border: 1px solid rgba(255,250,240,.1); border-radius: 4px; padding: 10px 14px; color: var(--cream); font-family: inherit; font-size: .875rem; outline: none; }
.chat-input::placeholder { color: rgba(255,250,240,.3); }
.chat-send { background: var(--blue); color: var(--cream); border: none; border-radius: 4px; padding: 10px 16px; cursor: pointer; font-size: .9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vision-section { flex-direction: column; text-align: left; gap: 40px; }
  .vision-image { max-width: 100%; height: auto; flex: none; }
    .vision-content, .hero-line { display: flex; flex-direction: column; align-items: center; margin-left: auto; margin-right: auto; }  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-extra { grid-template-columns: 1fr; gap: 80px;}
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* JS Failsafe */
.reveal {
  /* Reduced shift so it doesn't look broken if JS fails */
  opacity: 0;
  transform: translateY(15px); 
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Fallback for users with adblockers or disabled JS */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* If the script fails, this makes things visible after a delay */
.no-js .reveal {
  opacity: 1;
  transform: none;
}