@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #17251f;
  --ink-soft: #365148;
  --muted: #687b74;
  --brand: #126b50;
  --brand-dark: #0a4f3b;
  --brand-soft: #e3f1eb;
  --gold: #d4a43f;
  --gold-soft: #f7edd2;
  --coral: #dd684c;
  --cream: #f8f6ef;
  --cream-deep: #eee9dc;
  --paper: #fffefa;
  --line: #dfe7e2;
  --shadow: 0 24px 70px -34px rgba(20, 52, 42, .34);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cairo', system-ui, sans-serif;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 10%, rgba(18, 107, 80, .11), transparent 26rem),
    radial-gradient(circle at 10% 36%, rgba(212, 164, 63, .11), transparent 24rem),
    linear-gradient(180deg, #fbfaf5, var(--cream));
}
img { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: rgba(18, 107, 80, .19); }

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-compact { padding: 72px 0; }
.section-tint { background: rgba(227, 241, 235, .55); border-block: 1px solid rgba(18, 107, 80, .08); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 99px; }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head h2, .page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.24;
  letter-spacing: -.035em;
}
.section-head p, .page-hero p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
}
.accent { color: var(--brand); }
.gold { color: #9a7117; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 107, 80, .1);
  background: rgba(248, 246, 239, .84);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow: 0 11px 24px -13px rgba(18, 107, 80, .8);
}
.brand-mark img { width: 29px; height: 29px; }
.brand-name { display: block; font-size: 18px; font-weight: 900; line-height: 1.1; }
.brand-sub { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { width: 100%; }
.nav-links a[aria-current='page'] { color: var(--brand-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-login { font-size: 14px; font-weight: 800; text-decoration: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brand); color: #fff; box-shadow: 0 14px 28px -15px rgba(18, 107, 80, .8); }
.button-primary:hover { background: var(--brand-dark); }
.button-gold { background: var(--gold); color: #2f260f; box-shadow: 0 14px 28px -16px rgba(180, 128, 23, .8); }
.button-ghost { border-color: #cfd9d4; background: rgba(255, 255, 255, .58); color: var(--ink); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 13px; border-radius: 12px; }
.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 42%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .38), transparent);
}
.button:hover::after { animation: sheen .75s ease; }
@keyframes sheen { to { left: 140%; } }

.hero { padding: 86px 0 78px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 66px; }
.hero-copy { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid rgba(18, 107, 80, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 28px -22px rgba(20, 52, 42, .8);
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: #39a46f; box-shadow: 0 0 0 5px rgba(57, 164, 111, .12); }
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(43px, 5.2vw, 70px);
  line-height: 1.16;
  letter-spacing: -.055em;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
  color: var(--brand);
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 100%;
  height: 8px;
  z-index: -1;
  border-radius: 99px;
  background: rgba(212, 164, 63, .43);
  transform: rotate(-1deg);
}
.hero-lead { max-width: 630px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.9; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.trust-row span::before { content: '✓'; margin-left: 6px; color: var(--brand); }

.product-stage { position: relative; min-width: 0; }
.product-stage::before {
  content: '';
  position: absolute;
  inset: 8% 2% -2% 10%;
  z-index: -1;
  border-radius: 45% 55% 48% 52%;
  background: linear-gradient(145deg, rgba(18, 107, 80, .19), rgba(212, 164, 63, .19));
  filter: blur(2px);
  animation: morph 9s ease-in-out infinite alternate;
}
@keyframes morph { to { border-radius: 55% 45% 58% 42%; transform: rotate(3deg) scale(1.02); } }
.window {
  overflow: hidden;
  border: 1px solid rgba(20, 52, 42, .16);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 36px 90px -35px rgba(14, 60, 45, .48);
}
.window-bar { height: 44px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #f2f0e9; }
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: #c7cec9; }
.window-dot:first-child { background: var(--coral); }
.window-dot:nth-child(2) { background: var(--gold); }
.window-dot:nth-child(3) { background: #59a47b; }
.window-label { margin-inline-start: auto; color: var(--muted); font-size: 10px; font-weight: 800; }
.window img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; object-position: top center; }
.float-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(20, 52, 42, .12);
  border-radius: 16px;
  background: rgba(255, 254, 250, .94);
  box-shadow: 0 20px 36px -23px rgba(20, 52, 42, .56);
  backdrop-filter: blur(12px);
  animation: bob 4.8s ease-in-out infinite;
}
.float-note b { display: block; font-size: 13px; }
.float-note small { display: block; color: var(--muted); font-size: 10px; font-weight: 700; }
.float-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-soft); font-size: 18px; }
.note-one { right: -24px; bottom: 14%; }
.note-two { left: -28px; top: 18%; animation-delay: -2.3s; }
@keyframes bob { 50% { transform: translateY(-10px); } }

.signal-strip { padding: 18px 0; border-block: 1px solid rgba(18, 107, 80, .12); background: rgba(255, 254, 250, .55); }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal { padding: 8px 18px; text-align: center; border-left: 1px solid var(--line); }
.signal:last-child { border-left: 0; }
.signal b { display: block; color: var(--brand-dark); font-size: clamp(20px, 2.3vw, 31px); }
.signal span { color: var(--muted); font-size: 12px; font-weight: 700; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card, .feature-card, .price-card, .step-card, .info-card {
  border: 1px solid rgba(20, 52, 42, .11);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, .74);
  box-shadow: 0 20px 55px -42px rgba(20, 52, 42, .65);
}
.benefit-card { padding: 28px; transition: transform .25s ease, border-color .25s ease; }
.benefit-card:hover, .feature-card:hover { transform: translateY(-5px); border-color: rgba(18, 107, 80, .34); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 16px; background: var(--brand-soft); font-size: 23px; }
.benefit-card:nth-child(2) .card-icon, .feature-card:nth-child(3n+2) .card-icon { background: var(--gold-soft); }
.benefit-card h3, .feature-card h3, .step-card h3, .info-card h3 { margin: 0 0 10px; font-size: 19px; }
.benefit-card p, .feature-card p, .step-card p, .info-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split-copy h2 { margin: 0; font-size: clamp(33px, 4.3vw, 54px); line-height: 1.27; letter-spacing: -.035em; }
.split-copy > p { color: var(--muted); font-size: 17px; line-height: 1.9; }
.check-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; color: var(--ink-soft); font-size: 14px; font-weight: 700; line-height: 1.8; }
.check-list li::before { content: '✓'; width: 24px; height: 24px; display: grid; place-items: center; flex: none; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px; }
.image-card { position: relative; padding: 13px; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.image-card img { width: 100%; display: block; border-radius: 18px; aspect-ratio: 16/10; object-fit: cover; object-position: top; }
.image-tag { position: absolute; right: 28px; bottom: 28px; padding: 8px 12px; border-radius: 11px; background: rgba(10, 79, 59, .91); color: #fff; font-size: 12px; font-weight: 900; backdrop-filter: blur(9px); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { position: relative; min-height: 225px; padding: 27px; overflow: hidden; }
.step-card::after { counter-increment: step; content: '0' counter(step); position: absolute; left: 18px; bottom: -15px; color: rgba(18, 107, 80, .09); font-size: 90px; font-weight: 900; line-height: 1; }
.step-kicker { display: inline-flex; margin-bottom: 24px; padding: 5px 9px; border-radius: 8px; background: var(--brand-soft); color: var(--brand-dark); font-size: 11px; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { padding: 30px; transition: transform .25s ease, border-color .25s ease; }
.feature-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.feature-top .card-icon { margin: 0; }
.feature-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 19px 0 0; padding: 17px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature-card li { color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.feature-card li::before { content: '•'; margin-left: 7px; color: var(--gold); font-size: 18px; line-height: 0; }

.gallery { display: grid; gap: 34px; }
.screen-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: center; }
.screen-card:nth-child(even) { grid-template-columns: .75fr 1.25fr; }
.screen-card:nth-child(even) .screen-copy { order: -1; }
.screen-frame { padding: 11px; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow); }
.screen-frame img { width: 100%; display: block; aspect-ratio: 16/10; border-radius: 18px; object-fit: cover; object-position: top center; }
.screen-copy .num { color: var(--gold); font-size: 13px; font-weight: 900; }
.screen-copy h2, .screen-copy h3 { margin: 6px 0 10px; font-size: clamp(25px, 3vw, 38px); line-height: 1.35; }
.screen-copy p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.screen-copy .button { margin-top: 7px; }

.workflow { display: grid; gap: 24px; }
.workflow-item { display: grid; grid-template-columns: 86px 1fr 1.08fr; gap: 28px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 254, 250, .72); }
.workflow-number { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: var(--brand); color: #fff; font-size: 20px; font-weight: 900; box-shadow: 0 14px 28px -16px rgba(18, 107, 80, .75); }
.workflow-item h2 { margin: 0 0 8px; font-size: 25px; }
.workflow-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.workflow-visual { overflow: hidden; border-radius: 18px; background: var(--cream-deep); }
.workflow-visual img { width: 100%; display: block; aspect-ratio: 16/8.5; object-fit: cover; object-position: top; }

.pricing-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { position: relative; padding: 31px; }
.price-card.featured { margin-top: -12px; border-color: var(--gold); background: var(--ink); color: #fff; box-shadow: 0 30px 70px -35px rgba(20, 52, 42, .8); }
.price-pill { position: absolute; top: -13px; right: 25px; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: #312710; font-size: 11px; font-weight: 900; }
.price-name { margin: 0; font-size: 20px; }
.price { display: flex; align-items: baseline; gap: 7px; margin: 15px 0 5px; }
.price strong { font-size: 42px; line-height: 1; }
.price span { color: var(--muted); font-size: 12px; font-weight: 700; }
.featured .price span, .featured .price-copy { color: #bcc9c3; }
.price-copy { min-height: 56px; margin: 10px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.price-list { display: grid; gap: 9px; margin: 23px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(104, 123, 116, .22); list-style: none; }
.price-list li { display: flex; gap: 9px; font-size: 13px; font-weight: 700; line-height: 1.7; }
.price-list li::before { content: '✓'; color: var(--gold); font-weight: 900; }
.price-card .button { width: 100%; }
.pricing-note { max-width: 760px; margin: 24px auto 0; color: var(--muted); text-align: center; font-size: 13px; line-height: 1.8; }

.faq-list { max-width: 850px; display: grid; gap: 12px; margin-inline: auto; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 254, 250, .76); }
.faq-list summary { position: relative; padding: 20px 58px 20px 22px; cursor: pointer; color: var(--ink); font-size: 16px; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: '+'; position: absolute; right: 20px; top: 16px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary::before { transform: rotate(45deg); }
.faq-answer { padding: 0 58px 20px 22px; color: var(--muted); font-size: 14px; line-height: 1.9; }

.page-hero { padding: 78px 0 64px; text-align: center; }
.page-hero .hero-badge { margin-bottom: 18px; }
.page-hero p { max-width: 760px; }
.page-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; color: var(--muted); font-size: 12px; font-weight: 700; }
.breadcrumb a { color: var(--brand); text-decoration: none; }

.cta-band { padding: 78px 0; }
.cta-box { position: relative; overflow: hidden; padding: 55px; border-radius: 34px; background: var(--ink); color: #fff; text-align: center; box-shadow: 0 32px 80px -36px rgba(20, 52, 42, .9); }
.cta-box::before, .cta-box::after { content: ''; position: absolute; width: 230px; height: 230px; border-radius: 50%; filter: blur(2px); }
.cta-box::before { right: -100px; top: -120px; background: rgba(18, 107, 80, .9); }
.cta-box::after { left: -100px; bottom: -140px; background: rgba(212, 164, 63, .45); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.3; }
.cta-box p { max-width: 680px; margin: 14px auto 25px; color: #c9d3cf; font-size: 16px; line-height: 1.85; }
.cta-box .hero-actions { justify-content: center; margin-top: 0; }

.site-footer { padding: 58px 0 26px; background: #10231d; color: #d6dfdb; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; }
.footer-about p { max-width: 360px; color: #9fb0a9; font-size: 13px; line-height: 1.9; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: 14px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #afbeb8; font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); color: #8fa29a; font-size: 11px; }
.footer-bottom a { color: inherit; text-decoration: none; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links { gap: 15px; }
  .hero-grid { gap: 38px; }
  .float-note { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-item { grid-template-columns: 72px 1fr; }
  .workflow-visual { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-actions .nav-login { display: none; }
  .hero-grid, .split, .screen-card, .screen-card:nth-child(even) { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .product-stage { max-width: 700px; margin-inline: auto; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .signal:nth-child(2) { border-left: 0; }
  .signal:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .screen-card:nth-child(even) .screen-copy { order: initial; }
  .pricing-wrap { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .price-card.featured { margin-top: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  .site-header .nav { min-height: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 16px; }
  .brand-sub { display: none; }
  .nav-actions .button { display: none; }
  .hero { padding: 62px 0 55px; }
  .hero h1 { font-size: clamp(38px, 11.5vw, 54px); }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px; }
  .window { border-radius: 18px; }
  .signal { padding: 10px 7px; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .feature-card { padding: 24px; }
  .feature-card ul { grid-template-columns: 1fr; }
  .screen-card { gap: 20px; }
  .screen-copy { text-align: center; }
  .workflow-item { grid-template-columns: 1fr; gap: 16px; }
  .workflow-number { width: 52px; height: 52px; border-radius: 16px; }
  .workflow-visual { grid-column: auto; }
  .price-card { padding: 26px; }
  .cta-box { padding: 42px 22px; border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
