:root {
  color-scheme: light;
  --navy: #0b1b2b;
  --deep-navy: #07121d;
  --slate: #425466;
  --muted: #6d7a8b;
  --surface: #f5f7fb;
  --card: #ffffff;
  --accent: #2f6bff;
  --accent-dark: #1f4fe0;
  --accent-light: rgba(47, 107, 255, 0.12);
  --gold: #d4b16a;
  --border: rgba(11, 27, 43, 0.1);
  --shadow: 0 24px 60px rgba(11, 27, 43, 0.12);
  --shadow-strong: 0 32px 70px rgba(11, 27, 43, 0.18);
  font-family: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  background: radial-gradient(circle at top, #f3f6ff 0%, #ffffff 45%);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.35);
  outline-offset: 3px;
}


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

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

.site-header {
  position: relative;
  background: linear-gradient(140deg, #f6f8ff 0%, #ffffff 55%, #eef2ff 100%);
  padding: clamp(24px, 4vw, 40px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.2), transparent 70%);
  filter: blur(0px);
  z-index: 0;
}

.site-header::after {
  opacity: 0.7;
}

.site-header::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
}

.site-header::after {
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -120px;
}

.container,
.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(11, 27, 43, 0.08);
}

.nav-toggle {
  display: none;
  border: none;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(11, 27, 43, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  font-size: 15px;
}

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


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  background: linear-gradient(135deg, #2f6bff 0%, #1f4fe0 100%);
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(47, 107, 255, 0.18);
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(11, 27, 43, 0.22);
  }

  .service-card:hover {
    border-color: rgba(47, 107, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.12);
  }

  .insight:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 27, 43, 0.14);
  }

  .button-outline:hover {
    background: rgba(47, 107, 255, 0.08);
    box-shadow: none;
  }

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

  .footer-col a:hover {
    color: var(--accent-dark);
  }

  .footer-top-link:hover {
    transform: translateY(-2px);
    display: inline-block;
  }

  .trust-link:hover::after {
    transform: translateX(4px);
  }
}

.button-ghost {
  border-color: rgba(11, 27, 43, 0.15);
  background: #ffffff;
  color: var(--navy);
}

.button-outline {
  border-color: rgba(47, 107, 255, 0.4);
  color: var(--accent-dark);
  background: #ffffff;
}

.button-solid {
  background: linear-gradient(135deg, #2f6bff 0%, #1f4fe0 100%);
  color: #ffffff;
}


.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 72px);
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 16px 0 20px;
}

.accent-text {
  color: var(--accent-dark);
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.15), rgba(212, 177, 106, 0.25));
  padding: 4px 16px 6px;
  border-radius: 26px;
  line-height: 1.05;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lead {
  color: var(--slate);
  font-size: 18px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
}

.trust-link::after {
  content: "→";
  transition: transform 0.2s ease;
}


.hero-trust span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 27, 43, 0.08);
}

.metric {
  font-size: 26px;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  width: min(420px, 100%);
  margin: 0 auto;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-strong);
  width: min(420px, 100%);
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-title {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.card-highlight {
  font-weight: 600;
  color: var(--navy);
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 12px 0 14px;
}

.section-heading p {
  color: var(--slate);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  border: 1px solid transparent;
  transition: 0.2s ease;
  position: relative;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: var(--slate);
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section-muted {
  background: var(--surface);
}

.expertise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  background: #ffffff;
  border: 1px solid rgba(11, 27, 43, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(11, 27, 43, 0.06);
}

.insight-card {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.insight-card ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.insight {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insight-featured {
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.12), rgba(212, 177, 106, 0.12));
  border: 1px solid rgba(47, 107, 255, 0.2);
}

.insight-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-dark {
  background: linear-gradient(135deg, #061222 0%, #0b1b2b 50%, #13263d 100%);
  color: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.process-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step span {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 14px;
  letter-spacing: 1px;
}

.process-step h3 {
  margin: 12px 0 8px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--slate);
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case-study-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  display: grid;
  gap: 12px;
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study-card span {
  font-size: 13px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(11, 27, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.featured {
  border: 1px solid rgba(47, 107, 255, 0.4);
  box-shadow: 0 26px 60px rgba(47, 107, 255, 0.2);
  transform: scale(1.02);
  background: linear-gradient(135deg, #ffffff, rgba(47, 107, 255, 0.08));
}

.pricing-meta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.price {
  font-size: 32px;
  font-weight: 700;
}

.price span {
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(11, 27, 43, 0.08);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
  color: var(--slate);
}

.cta-band {
  background: linear-gradient(120deg, rgba(47, 107, 255, 0.12), rgba(212, 177, 106, 0.12));
  padding-bottom: clamp(30px, 5vw, 50px);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-band {
  background: #ffffff;
  padding-top: clamp(30px, 5vw, 50px);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background: #f7f9ff;
  border: 1px solid rgba(11, 27, 43, 0.08);
  box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.quote p {
  color: rgba(255, 255, 255, 0.7);
}

.quote h2 {
  margin: 12px 0 20px;
  font-size: clamp(26px, 3vw, 38px);
}

.quote-details {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.detail-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.quote-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(47, 107, 255, 0.15);
}

.form-header {
  margin-bottom: 20px;
}

.form-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.form-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 27, 43, 0.15);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(47, 107, 255, 0.25);
  border-color: var(--accent);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.form-steps {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.form-divider {
  height: 1px;
  background: rgba(11, 27, 43, 0.12);
  margin: 18px 0;
}

.form-steps div {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
}

.form-steps span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.form-success {
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 600;
  min-height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: clamp(48px, 7vw, 72px) 0 clamp(24px, 3vw, 36px);
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.footer-brand .logo-title {
  margin-bottom: 8px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: var(--slate);
}

.footer-col li {
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-col a {
  color: var(--slate);
  transition: color 0.2s ease;
  padding: 6px 0;
  display: inline-block;
}

.footer-col a:focus-visible {
  color: var(--accent-dark);
}

.footer-note {
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 28ch;
}

.footer-meta {
  color: var(--slate);
  font-size: 13px;
}

.footer-disclosures {
  color: var(--slate);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer-copy {
  color: var(--slate);
  font-size: 13px;
}

.footer-top-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}

.footer-top-link:focus-visible {
  transform: translateY(-2px);
  display: inline-block;
}

@media (min-width: 1000px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-card {
    align-items: flex-end;
  }
}

@media (max-width: 1024px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    padding: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 12px;
    gap: 4px;
  }

  .nav-links a {
    padding: 12px 4px;
    border-radius: 10px;
  }

  .nav.nav-open .nav-links {
    display: flex;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }

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

@media (max-width: 900px) {
  .quote {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-content {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    padding: 10px 18px;
  }
}

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

  .metric {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .card,
  .quote-form {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .service-grid,
  .insight-grid,
  .process-grid,
  .testimonial-grid,
  .case-study-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .card,
  .quote-form {
    padding: 20px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
