/* ==========================================================================
   Learn Kannada Akshara — marketing site
   Design language: "chunky toy" — pastel flashcards, hard offset shadows,
   dotted tracing-canvas texture, rounded Baloo typography (Latin + Kannada).
   ========================================================================== */

:root {
  --paper: #FFF8F0;
  --paper-deep: #FBEFDF;
  --card: #FFFFFF;
  --ink: #2E3147;
  --ink-soft: #5C6079;
  --ink-faint: #8B8FA8;

  --indigo: #6C5CE7;
  --indigo-deep: #4F41C8;
  --indigo-ink: #3B2FA3;
  --coral: #FF6B6B;
  --coral-deep: #E14F55;
  --rose: #F2547D;
  --teal: #1FBFAD;
  --teal-deep: #149C8D;
  --sun: #FFC53D;
  --sun-deep: #E8A612;

  --p-pink: #FFE4EE;
  --p-pink-edge: #F6C4D8;
  --p-mint: #DCF6E8;
  --p-mint-edge: #B8E4CD;
  --p-sky: #E1F1FF;
  --p-sky-edge: #BFDDF5;
  --p-butter: #FFF3C9;
  --p-butter-edge: #F0DC9B;
  --p-lilac: #EAE5FF;
  --p-lilac-edge: #CFC5F2;
  --p-peach: #FFE8D9;
  --p-peach-edge: #F5CBAF;

  --font-display: "Baloo 2", "Baloo Tamma 2", cursive;
  --font-kn: "Baloo Tamma 2", "Noto Sans Kannada", "Kannada MN", sans-serif;
  --font-body: "Nunito", "Trebuchet MS", sans-serif;

  --radius: 24px;
  --radius-sm: 14px;
  --shadow-card: 0 6px 0 rgba(46, 49, 71, 0.08);
  --wrap: 1120px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* dotted tracing-canvas texture, like the app's tracing screen */
  background-image: radial-gradient(rgba(46, 49, 71, 0.075) 1.2px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.kn { font-family: var(--font-kn); font-weight: 600; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { max-width: 68ch; }

a { color: var(--indigo-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--coral-deep); }

/* crayon-squiggle underline for hero keywords */
.squiggle {
  position: relative;
  white-space: nowrap;
}
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: 0.32em;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 14" preserveAspectRatio="none"><path d="M3 10 Q 18 3 33 8 T 63 8 T 93 8 T 117 7" fill="none" stroke="%23FFC53D" stroke-width="6" stroke-linecap="round"/></svg>') center / 100% 100% no-repeat;
  z-index: -1;
}
.squiggle--coral::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 14" preserveAspectRatio="none"><path d="M3 10 Q 18 3 33 8 T 63 8 T 93 8 T 117 7" fill="none" stroke="%23FF8FA3" stroke-width="6" stroke-linecap="round"/></svg>');
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  background: var(--p-lilac);
  border: 2px solid var(--p-lilac-edge);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  margin-bottom: 1.1rem;
}
.eyebrow--mint { color: var(--teal-deep); background: var(--p-mint); border-color: var(--p-mint-edge); }
.eyebrow--pink { color: var(--coral-deep); background: var(--p-pink); border-color: var(--p-pink-edge); }
.eyebrow--butter { color: var(--sun-deep); background: var(--p-butter); border-color: var(--p-butter-edge); }

.lede { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- layout ---------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 780px; }

section { padding: 5.5rem 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.2rem; }
.section-head p { margin: 0.9rem auto 0; color: var(--ink-soft); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn--teal {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 5px 0 var(--teal-deep);
}
.btn--indigo {
  color: #fff;
  background: var(--indigo);
  box-shadow: 0 5px 0 var(--indigo-deep);
}
.btn--ghost {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 5px 0 rgba(46, 49, 71, 0.16);
  border: 2px solid rgba(46, 49, 71, 0.12);
}
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn--ghost:hover { color: var(--ink); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(0,0,0,0.25); }

.play-badge img { height: 64px; width: auto; }
.play-badge:hover { opacity: 0.92; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(46, 49, 71, 0.07);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  margin-right: auto;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: 0 3px 0 rgba(46,49,71,0.15); }
.brand .kn { color: var(--coral-deep); }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.site-nav a:hover { color: var(--indigo-deep); }
.site-nav .btn { padding: 0.55rem 1.3rem; font-size: 0.98rem; }

@media (max-width: 760px) {
  .site-nav a:not(.btn) { display: none; }
}

/* ---------- hero ---------- */

.hero { padding: 4.5rem 0 5rem; position: relative; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-copy .lede { margin: 1.3rem 0 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.hero-note { margin-top: 1rem; font-size: 0.95rem; color: var(--ink-faint); font-weight: 700; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; padding: 0; list-style: none; }
.trust-chips li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.1);
  box-shadow: 0 3px 0 rgba(46, 49, 71, 0.07);
}

/* hero visual: phone + floating flashcard tiles */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone {
  width: min(300px, 78vw);
  border: 10px solid var(--ink);
  border-radius: 44px;
  box-shadow: 0 14px 0 rgba(46, 49, 71, 0.14);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  z-index: 2;
}
.phone img { border-radius: 32px; }

.tile {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  font-family: var(--font-kn);
  font-size: 2.5rem;
  line-height: 1;
  animation: float 5.2s ease-in-out infinite;
}
.tile small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin-top: 0.2rem;
}
.tile--pink  { background: var(--p-pink);   color: var(--rose);        box-shadow: 0 6px 0 var(--p-pink-edge); }
.tile--mint  { background: var(--p-mint);   color: var(--teal-deep);   box-shadow: 0 6px 0 var(--p-mint-edge); }
.tile--sky   { background: var(--p-sky);    color: #2f7fc4;            box-shadow: 0 6px 0 var(--p-sky-edge); }
.tile--butter{ background: var(--p-butter); color: var(--sun-deep);    box-shadow: 0 6px 0 var(--p-butter-edge); }
.tile--lilac { background: var(--p-lilac);  color: var(--indigo-deep); box-shadow: 0 6px 0 var(--p-lilac-edge); }

.tile:nth-of-type(1) { top: 4%;  left: -6%;  animation-delay: 0s; }
.tile:nth-of-type(2) { top: 22%; right: -8%; animation-delay: 1.2s; }
.tile:nth-of-type(3) { bottom: 20%; left: -12%; animation-delay: 2.1s; }
.tile:nth-of-type(4) { bottom: 2%;  right: -4%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2.5deg); }
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-ctas, .trust-chips { justify-content: center; }
  .tile { width: 74px; height: 74px; font-size: 2rem; }
  .tile:nth-of-type(1) { left: 2%; }
  .tile:nth-of-type(3) { left: 0; }
}

/* ---------- stats band ---------- */

.stats-band { padding: 0 0 1rem; }
.stats-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.stat {
  text-align: center;
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.4rem 1rem 1.2rem;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--indigo-deep);
}
.stat span { font-size: 0.92rem; font-weight: 800; color: var(--ink-soft); }
@media (max-width: 760px) { .stats-band .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- feature cards ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  border: 2px solid transparent;
}
.feature-card .emoji { font-size: 2.1rem; line-height: 1; display: block; margin-bottom: 0.9rem; }
.feature-card h3 { margin-bottom: 0.55rem; }
.feature-card p { font-size: 0.99rem; color: var(--ink-soft); }
.feature-card--pink   { background: var(--p-pink);   border-color: var(--p-pink-edge);   box-shadow: 0 6px 0 var(--p-pink-edge); }
.feature-card--mint   { background: var(--p-mint);   border-color: var(--p-mint-edge);   box-shadow: 0 6px 0 var(--p-mint-edge); }
.feature-card--sky    { background: var(--p-sky);    border-color: var(--p-sky-edge);    box-shadow: 0 6px 0 var(--p-sky-edge); }
.feature-card--butter { background: var(--p-butter); border-color: var(--p-butter-edge); box-shadow: 0 6px 0 var(--p-butter-edge); }
.feature-card--lilac  { background: var(--p-lilac);  border-color: var(--p-lilac-edge);  box-shadow: 0 6px 0 var(--p-lilac-edge); }
.feature-card--peach  { background: var(--p-peach);  border-color: var(--p-peach-edge);  box-shadow: 0 6px 0 var(--p-peach-edge); }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; } }

/* ---------- screenshots ---------- */

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.shot { text-align: center; }
.shot .phone {
  width: 100%;
  border-width: 7px;
  border-radius: 34px;
  box-shadow: 0 9px 0 rgba(46, 49, 71, 0.13);
}
.shot .phone img { border-radius: 26px; }
.shot:nth-child(even) { transform: translateY(1.6rem); }
.shot figcaption {
  margin-top: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .shots { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.4rem 1.7rem 1.8rem;
  margin-top: 1.4rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1.4rem;
  left: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 4px 0 var(--coral-deep);
}
.step:nth-child(2)::before { background: var(--indigo); box-shadow: 0 4px 0 var(--indigo-deep); }
.step:nth-child(3)::before { background: var(--teal); box-shadow: 0 4px 0 var(--teal-deep); }
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.99rem; color: var(--ink-soft); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------- guides ---------- */

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.7rem 1.6rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 rgba(46, 49, 71, 0.1);
  color: var(--ink);
}
.guide-card .guide-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
}
.guide-card h3 { font-size: 1.16rem; }
.guide-card p { font-size: 0.95rem; color: var(--ink-soft); flex-grow: 1; }
.guide-card .more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--indigo-deep);
}
.guide-card:hover .more { color: var(--coral-deep); }
.tag--pink   { background: var(--p-pink);   color: var(--coral-deep); }
.tag--mint   { background: var(--p-mint);   color: var(--teal-deep); }
.tag--sky    { background: var(--p-sky);    color: #2f7fc4; }
.tag--butter { background: var(--p-butter); color: var(--sun-deep); }
.tag--lilac  { background: var(--p-lilac);  color: var(--indigo-deep); }
.tag--peach  { background: var(--p-peach);  color: #c96c2f; }
@media (max-width: 900px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .guides-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item {
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+";
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--indigo-deep);
  background: var(--p-lilac);
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::before { content: "–"; transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem 4.2rem; color: var(--ink-soft); font-size: 1rem; }
.faq-item .faq-body a { font-weight: 800; }
@media (max-width: 620px) { .faq-item .faq-body { padding-left: 1.4rem; } }

/* ---------- CTA band ---------- */

.cta-band { padding: 5.5rem 0; }
.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--indigo);
  border-radius: 36px;
  box-shadow: 0 10px 0 var(--indigo-deep);
  padding: 4rem 2rem 4.2rem;
  color: #fff;
}
.cta-card h2 { color: #fff; }
.cta-card p { margin: 1rem auto 2rem; color: #E4E0FF; font-size: 1.13rem; }
.cta-card .watermark {
  position: absolute;
  font-family: var(--font-kn);
  font-size: 13rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
}
.cta-card .watermark--left { top: -2.5rem; left: -1.5rem; transform: rotate(-12deg); }
.cta-card .watermark--right { bottom: -3.5rem; right: -1rem; transform: rotate(10deg); }
.cta-card .hero-note { color: #C9C2FF; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #C7CADF;
  padding: 3.8rem 0 2.4rem;
  font-size: 0.97rem;
}
.site-footer a { color: #fff; text-decoration: none; font-weight: 700; }
.site-footer a:hover { color: var(--sun); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.94rem; color: #9DA1BC; }
.footer-grid h3 {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8B8FA8;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #8B8FA8;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- guide article pages ---------- */

.article-hero { padding: 3.6rem 0 2.6rem; }
.breadcrumb {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--indigo-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.article-hero .lede { margin-top: 1.1rem; }
.article-meta { margin-top: 1rem; font-size: 0.9rem; font-weight: 800; color: var(--ink-faint); }

.article {
  background: #fff;
  border: 2px solid rgba(46, 49, 71, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.8rem, 4.5vw, 3.2rem);
  margin-bottom: 3rem;
}
.article > * + * { margin-top: 1.15rem; }
.article h2 { margin-top: 2.6rem; font-size: 1.7rem; }
.article h3 { margin-top: 1.9rem; }
.article ul, .article ol { padding-left: 1.4rem; }
.article li { margin-bottom: 0.45rem; }
.article li::marker { color: var(--coral); font-weight: 800; }

.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  margin-top: 1.3rem;
}
.article th {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  background: var(--p-lilac);
  color: var(--indigo-ink);
  padding: 0.65rem 0.9rem;
}
.article th:first-child { border-radius: 12px 0 0 12px; }
.article th:last-child { border-radius: 0 12px 12px 0; }
.article td { padding: 0.6rem 0.9rem; border-bottom: 2px solid var(--paper-deep); }
.article td.kn { font-size: 1.45rem; color: var(--indigo-deep); }
.table-scroll { overflow-x: auto; }

/* "Try it in the app" callout */
.app-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--p-mint);
  border: 2px solid var(--p-mint-edge);
  box-shadow: 0 5px 0 var(--p-mint-edge);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.4rem;
  margin-top: 2rem;
}
.app-callout img { width: 54px; height: 54px; border-radius: 14px; box-shadow: 0 3px 0 rgba(46,49,71,0.14); }
.app-callout strong { font-family: var(--font-display); font-size: 1.06rem; display: block; margin-bottom: 0.2rem; }
.app-callout p { font-size: 0.97rem; color: var(--ink-soft); }
.app-callout a { font-weight: 800; }

.related { padding: 0 0 4.5rem; }
.related h2 { text-align: center; margin-bottom: 2rem; }

/* ---------- reveal-on-scroll (JS adds .js to <html>) ---------- */

html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .tile { animation: none; }
  html { scroll-behavior: auto; }
}
