/* ============================================================
   11ELEVEN — Design System
   Dark canvas + phosphorescent green. Premium, technical, sharp.
   ============================================================ */

:root {
  --bg: #07100b;
  --bg-alt: #0b1712;
  --surface: #101c16;
  --surface-2: #142218;
  --border: rgba(65, 255, 150, 0.14);
  --border-strong: rgba(65, 255, 150, 0.32);
  --text: #eef4f0;
  --text-dim: #9fb3a8;
  --text-faint: #6d8579;
  --accent: #3dffa0;
  --accent-2: #9dffce;
  --accent-deep: #12a15f;
  --danger: #ff6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow-glow: 0 0 40px rgba(61, 255, 160, 0.14);
  --ff-head: "Space Grotesk", "Inter", sans-serif;
  --ff-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* Background texture: soft glow orbs + grid */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(65,255,150,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65,255,150,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 75%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}
.orb-1 { width: 520px; height: 520px; background: #24e884; top: -180px; left: -120px; }
.orb-2 { width: 460px; height: 460px; background: #0fae6b; top: 30%; right: -160px; opacity: 0.18; }
.orb-3 { width: 380px; height: 380px; background: #1fd97e; bottom: -160px; left: 30%; opacity: 0.16; }

section, header, footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #04160c;
  box-shadow: 0 0 0 0 rgba(61,255,160,0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 255, 160, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 11, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.brand .logo-11 { color: var(--accent); }
.brand-logo-img { height: 24px; width: auto; display: block; }
.footer-brand .brand-logo-img { height: 46px; margin-bottom: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 21px; margin-bottom: 10px; }
.section-head p { color: var(--text-dim); font-size: 17px; }
.accent-text { color: var(--accent); }

section { padding: 108px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* ---------- Hero ---------- */
.hero {
  padding-top: 96px;
  padding-bottom: 96px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.85fr; gap: 60px; align-items: center; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--ff-head); font-size: 24px; color: var(--accent); }
.hero-trust span { font-size: 12.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-glow);
}
.hero-visual video, .hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,16,11,0) 40%, rgba(7,16,11,0.9) 100%);
}
.hero-visual-badge {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  background: rgba(9, 20, 14, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--text-dim);
}
.hero-visual-badge strong { color: var(--accent); font-family: var(--ff-head); }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; order: -1; }
}

/* ---------- Problem / pains ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.pain-card .num {
  font-family: var(--ff-head);
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.pain-card p { color: var(--text-dim); font-size: 15px; }
.pain-card h4 { font-size: 17px; margin-bottom: 8px; color: var(--text); }
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(61,255,160,0.1);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
}
.service-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 18px; flex-grow: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-tags span {
  font-size: 12px;
  color: var(--accent-2);
  background: rgba(61,255,160,0.08);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}
.service-card .link {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.why-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 26px; margin-top: 32px; }
.why-item { display: flex; gap: 18px; }
.why-item .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 { font-size: 16.5px; margin-bottom: 4px; }
.why-item p { color: var(--text-dim); font-size: 14.5px; }

.why-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: "“";
  position: absolute;
  top: -20px; left: 24px;
  font-size: 140px;
  font-family: var(--ff-head);
  color: rgba(61,255,160,0.12);
  line-height: 1;
}
.why-panel blockquote {
  font-family: var(--ff-head);
  font-size: 23px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.why-panel .who { color: var(--text-dim); font-size: 14px; }
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.why-stats strong { display: block; font-family: var(--ff-head); font-size: 26px; color: var(--accent); }
.why-stats span { font-size: 12px; color: var(--text-faint); }

@media (max-width: 900px) {
  .why-wrap { grid-template-columns: 1fr; }
  .why-panel { padding: 30px; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: var(--surface);
  position: relative;
}
.process-card .step-num {
  font-family: var(--ff-head);
  font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-strong);
  margin-bottom: 14px;
}
.process-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.process-card p { font-size: 14px; color: var(--text-dim); }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .wrap {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-label-group { display: flex; flex-direction: column; gap: 4px; }
.trust-label {
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.trust-sub {
  font-size: 12.5px;
  color: var(--text-faint);
  opacity: 0.8;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logos span {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.trust-logos span:hover { opacity: 1; color: var(--text); }
@media (max-width: 700px) {
  .trust-strip .wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .trust-logos { gap: 26px; }
  .trust-logos span { font-size: 15px; }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.avatar-initials {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(61,255,160,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-person strong { font-size: 14.5px; display: block; }
.testi-person span { font-size: 12.5px; color: var(--text-faint); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Resultados (video bg) ---------- */
.results-section {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.results-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.results-media { position: relative; overflow: hidden; height: 460px; }
.results-media video, .results-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.results-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,16,11,0.2) 0%, rgba(7,16,11,0.85) 100%);
}
.results-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.results-copy blockquote {
  font-family: var(--ff-head);
  font-size: 26px;
  line-height: 1.35;
  margin: 18px 0 22px;
}
.results-copy .who { color: var(--text-faint); font-size: 13.5px; margin-bottom: 30px; }
.results-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.results-stats strong { display: block; font-family: var(--ff-head); font-size: 30px; color: var(--accent); }
.results-stats span { font-size: 12.5px; color: var(--text-faint); }
@media (max-width: 900px) {
  .results-inner { grid-template-columns: 1fr; }
  .results-media { height: 220px; }
  .results-copy { padding: 40px 28px; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--ff-head);
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus { color: var(--accent); font-size: 20px; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-dim);
  font-size: 14.5px;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 22px; }

/* ---------- CTA / Contact ---------- */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--text-dim); margin-bottom: 30px; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(61,255,160,0.08);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method span { display: block; font-size: 12.5px; color: var(--text-faint); }
.contact-method strong { font-size: 15px; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--text-dim); }
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 14px; text-align: center; }
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 30px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 34ch; margin-top: 12px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Page header (Servicios) ---------- */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 18px; }
.page-hero p { color: var(--text-dim); font-size: 17px; max-width: 56ch; margin: 0 auto; }

/* ---------- Service detail rows ---------- */
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-row.reverse .detail-media { order: 2; }
.detail-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-glow);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-index { font-family: var(--ff-head); color: var(--text-faint); font-size: 13px; letter-spacing: 0.1em; margin-bottom: 16px; }
.detail-body h3 { font-size: 27px; margin-bottom: 14px; }
.detail-body p { color: var(--text-dim); margin-bottom: 22px; }
.detail-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.detail-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-dim); align-items: flex-start; }
.detail-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) {
  .detail-row, .detail-row.reverse { grid-template-columns: 1fr; }
  .detail-row.reverse .detail-media { order: 0; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px;
    gap: 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
