/* ============================================
   Chrome Browser Download Landing Page
   Shared Styles — Variables, Reset, Layout,
   Components, Animations
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary: #1a73e8;
  --color-primary-hover: #1557b0;
  --color-light-primary: #f8fafd;
  --color-text: #202124;
  --color-secondary-text: #5f6368;
  --color-tertiary-text: #80868b;
  --color-border: #dadce0;
  --color-light-border: #f1f3f4;
  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-dark-surface: #202124;
  --color-success: #34a853;
  --color-warning: #fbbc04;
  --color-danger: #ea4335;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms ease-out;
  --transition-medium: 500ms ease-out;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  font-size: 14px;
  transition: top 200ms;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.section-padding {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 100px 0;
  }
}

.section-padding-sm {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section-padding-sm {
    padding: 60px 0;
  }
}

.text-center {
  text-align: center;
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-white {
  background-color: var(--color-bg);
}

.bg-primary-blue {
  background-color: var(--color-primary);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.page-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .page-title {
    font-size: 56px;
  }
}

.section-heading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 36px;
  }
}

.subsection-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .subsection-heading {
    font-size: 24px;
  }
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .card-title {
    font-size: 20px;
  }
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-secondary-text);
}

.small-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-tertiary-text);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 24px;
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.nav-brand:hover {
  text-decoration: none;
}

.nav-brand svg {
  width: 28px;
  height: 28px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary-text);
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-normal);
}

.nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(32, 33, 36, 0.1);
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}

.nav-dropdown.open {
  display: flex;
}

.nav-dropdown .nav-link {
  padding: 12px 16px;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.nav-dropdown .nav-link:hover {
  background: var(--color-surface);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 24px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-inverted {
  background: #ffffff;
  color: var(--color-primary);
  border: none;
}

.btn-inverted:hover {
  background: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 24px;
  cursor: pointer;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.btn-platform:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
  text-decoration: none;
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

/* Disabled / Loading state */
.btn:disabled {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================
   CARDS
   ============================================ */

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-light-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-secondary-text);
  line-height: 1.65;
}

.download-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.download-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.1);
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

/* ============================================
   SPINNER
   ============================================ */

.spinner-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-bg {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #e8f0fe;
}

.spinner-outer {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  animation: spin 2s linear infinite;
}

.spinner-inner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #8ab4f8;
  animation: spin 2s linear infinite reverse;
}

.spinner-small .spinner-container {
  width: 120px;
  height: 120px;
}

.spinner-small .spinner-bg {
  width: 96px;
  height: 96px;
}

.spinner-small .spinner-outer {
  width: 72px;
  height: 72px;
  border-width: 3px;
}

.spinner-small .spinner-inner {
  width: 48px;
  height: 48px;
  border-width: 2px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  transition: transform var(--transition-normal);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease-out;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--color-secondary-text);
  line-height: 1.7;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }
[data-reveal-delay="4"] { transition-delay: 400ms; }
[data-reveal-delay="5"] { transition-delay: 500ms; }
[data-reveal-delay="6"] { transition-delay: 600ms; }
[data-reveal-delay="7"] { transition-delay: 700ms; }
[data-reveal-delay="8"] { transition-delay: 800ms; }

/* Section divider line */
.section-divider {
  width: 0;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto 48px;
  transition: width 500ms ease-out;
}

.section-divider.revealed {
  width: 60px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--color-primary);
  padding: 60px 24px;
  text-align: center;
}

.cta-banner .container {
  max-width: 600px;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.cta-banner p {
  font-size: 16px;
  color: #e8eaed;
  margin-top: 12px;
  line-height: 1.65;
}

.cta-banner .btn {
  margin-top: 32px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-dark-surface);
  color: #ffffff;
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: #9aa0a6;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #e8eaed;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #9aa0a6;
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #3c4043;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #80868b;
  line-height: 1.7;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal),
              transform var(--transition-normal),
              background var(--transition-fast);
  z-index: 999;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-hover);
  transform: scale(1.1);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   GRIDS
   ============================================ */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-secondary-text);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   STAR RATING
   ============================================ */

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   STATS
   ============================================ */

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 48px;
  }
}

.stat-label {
  font-size: 16px;
  color: var(--color-secondary-text);
  margin-top: 8px;
}

/* ============================================
   SECURITY BADGE ROW
   ============================================ */

.security-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-secondary-text);
}

.security-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   TABLE
   ============================================ */

.table-container {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table thead th {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}

.data-table tbody tr:nth-child(even) {
  background: var(--color-surface);
}

.data-table tbody td {
  padding: 12px 20px;
  color: var(--color-secondary-text);
  border-bottom: 1px solid var(--color-light-border);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table .col-highlight {
  color: var(--color-primary);
  font-weight: 500;
}

/* Check / X marks */
.mark-check {
  color: var(--color-success);
}

.mark-x {
  color: var(--color-danger);
}

/* ============================================
   COMPARE CARDS
   ============================================ */

.compare-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}

.compare-card h4 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-light-border);
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-item {
  font-size: 14px;
  color: var(--color-secondary-text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.compare-item .mark-check,
.compare-item .mark-x {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   VERSION ENTRY
   ============================================ */

.version-entry {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.version-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.version-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.version-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.version-date {
  font-size: 14px;
  color: var(--color-tertiary-text);
}

.version-changes {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.version-changes li {
  font-size: 14px;
  color: var(--color-secondary-text);
  line-height: 1.6;
}

/* ============================================
   STEPS / TIMELINE
   ============================================ */

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-secondary-text);
  line-height: 1.7;
}

.steps-grid .step {
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   TAGS / PILLS
   ============================================ */

.tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-secondary-text);
  background: #ffffff;
}

/* ============================================
   FOCUS VISIBLE
   ============================================ */

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
