/* ==========================================================================
   Orqava — shared stylesheet
   ========================================================================== */

:root {
  --color-ink: #1d1d1f;
  --color-ink-soft: #6e6e73;
  --color-paper: #ffffff;
  --color-paper-soft: #f5f5f7;
  --color-void: #000000;
  --color-void-soft: #0a0a0c;
  --color-mist: #f5f5f7;
  --color-mist-ink: #a1a1a6;
  --color-line: rgba(0, 0, 0, 0.08);
  --color-line-dark: rgba(255, 255, 255, 0.14);
  --color-accent: #3461ff;
  --color-accent-ink: #ffffff;

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --max-width: 1152px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--color-accent);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s var(--ease-out-quart);
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 2.5rem;
  }
}

/* ---------------------------------------------------------------------- */
/* Header / nav                                                           */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-line-dark);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header nav {
  max-width: 1280px;
  margin-inline: auto;
  height: 56px;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-header nav {
    padding-inline: 2.5rem;
  }
}

.brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    gap: 2rem;
  }
}

.nav-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.btn-pill-light {
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 0.4rem 1rem;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-pill-light:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--color-line-dark);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu ul {
  padding: 1rem 1.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-menu a[aria-current="page"] {
  color: var(--color-accent);
}

.mobile-menu li:last-child {
  padding-top: 0.5rem;
}

.mobile-menu .btn-pill-light {
  padding: 0.6rem 1rem;
}

body.menu-open {
  overflow: hidden;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s, border-color 0.2s, background-color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  opacity: 0.85;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ink {
  background: var(--color-ink);
  color: #fff;
}

.btn-ink:hover {
  opacity: 0.85;
}

.btn-outline-ink {
  border-color: var(--color-line);
  color: var(--color-ink);
}

.btn-outline-ink:hover {
  border-color: rgba(29, 29, 31, 0.3);
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-void);
  padding-inline: 1.5rem;
  text-align: center;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.drift {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.drift-a {
  left: 25%;
  top: 25%;
  width: 32rem;
  height: 32rem;
  background: rgba(52, 97, 255, 0.25);
  animation: drift-a 22s ease-in-out infinite;
}

.drift-b {
  right: 25%;
  bottom: 0;
  width: 28rem;
  height: 28rem;
  background: rgba(129, 140, 248, 0.15);
  animation: drift-b 26s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate3d(-4%, -6%, 0) scale(1); }
  50% { transform: translate3d(4%, 4%, 0) scale(1.08); }
}

@keyframes drift-b {
  0%, 100% { transform: translate3d(6%, 4%, 0) scale(1.05); }
  50% { transform: translate3d(-5%, -3%, 0) scale(1); }
}

.hero-inner {
  position: relative;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 56px; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 72px; }
}

.hero p.lede {
  margin: 2rem auto 0;
  max-width: 36rem;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .hero p.lede { font-size: 20px; }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ---------------------------------------------------------------------- */
/* Page hero (sub-pages)                                                  */
/* ---------------------------------------------------------------------- */

.page-hero {
  background: var(--color-void);
  padding: 160px 1.5rem 80px;
  text-align: center;
  color: #fff;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 180px 2.5rem 96px;
  }
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero h1 {
  margin: 1rem auto 0;
  max-width: 44rem;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 52px; }
}

.page-hero p {
  margin: 1.25rem auto 0;
  max-width: 38rem;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

nav.breadcrumb {
  margin-top: 1.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

nav.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

nav.breadcrumb a:hover {
  color: #fff;
}

nav.breadcrumb ol {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

nav.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------------------------------------------- */
/* Sections                                                                */
/* ---------------------------------------------------------------------- */

section {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  section { padding-block: 7rem; }
}

.section-void {
  background: var(--color-void-soft);
  color: #fff;
}

.section-mist {
  background: var(--color-mist);
}

.section-paper {
  background: var(--color-paper);
}

.kicker {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-ink-soft);
}

.section-void .kicker {
  color: rgba(255, 255, 255, 0.5);
}

.section-title {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .section-title { font-size: 44px; }
}

/* ---------------------------------------------------------------------- */
/* Value strip                                                             */
/* ---------------------------------------------------------------------- */

.value-strip {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-mist);
  padding-block: 3.5rem;
}

.value-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .value-item {
    justify-content: flex-start;
  }
}

.value-item .icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.value-item p {
  font-size: 15px;
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* Cards grid                                                              */
/* ---------------------------------------------------------------------- */

.card-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-line);
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--color-paper);
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .card { padding: 3rem; }
}

.card .icon {
  color: var(--color-accent);
  width: 28px;
  height: 28px;
}

.card h3 {
  margin-top: 1.5rem;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin-top: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.card .card-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
}

.card .card-link .icon {
  width: 14px;
  height: 14px;
}

/* ---------------------------------------------------------------------- */
/* Steps                                                                   */
/* ---------------------------------------------------------------------- */

.step-grid {
  margin-top: 4rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .step-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-number {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.2);
}

.step-grid h3 {
  margin-top: 1rem;
  font-size: 17px;
  font-weight: 600;
}

.step-grid p {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------------------- */
/* Philosophy / centered statement                                        */
/* ---------------------------------------------------------------------- */

.statement {
  padding-block: 8rem;
  text-align: center;
}

@media (min-width: 768px) {
  .statement { padding-block: 11rem; }
}

.statement .wrap {
  max-width: 52rem;
}

.statement h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .statement h2 { font-size: 56px; }
}

.statement p {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

@media (min-width: 768px) {
  .statement p { font-size: 20px; }
}

/* ---------------------------------------------------------------------- */
/* CTA section                                                             */
/* ---------------------------------------------------------------------- */

.cta-section {
  background: var(--color-mist);
  padding-block: 7rem;
  text-align: center;
}

.cta-section .wrap {
  max-width: 42rem;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 44px; }
}

.cta-section p {
  margin-top: 1.25rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.cta-section .btn {
  margin-top: 2.25rem;
}

/* ---------------------------------------------------------------------- */
/* Service detail blocks (diensten.html)                                  */
/* ---------------------------------------------------------------------- */

.service-detail {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
  border-top: 1px solid var(--color-line);
}

.service-detail:first-of-type {
  border-top: none;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    padding-block: 4.5rem;
  }
}

.service-detail .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--color-mist);
  color: var(--color-accent);
}

.service-detail h2 {
  margin-top: 1.25rem;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-detail .lede {
  margin-top: 0.75rem;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 500px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-ink);
}

.feature-list .icon {
  color: var(--color-accent);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.plan {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
}

.plan.featured {
  background: var(--color-ink);
  color: #fff;
  border-color: transparent;
}

.plan-badge {
  margin-bottom: 1.5rem;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 12px;
  font-weight: 500;
}

.plan h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.plan .tagline {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.plan.featured .tagline {
  color: rgba(255, 255, 255, 0.6);
}

.plan .price-row {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan .price {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.plan .cadence {
  font-size: 13px;
  color: var(--color-ink-soft);
}

.plan.featured .cadence {
  color: rgba(255, 255, 255, 0.5);
}

.plan ul.feature-list {
  display: block;
  margin-top: 2rem;
  flex: 1;
}

.plan ul.feature-list li {
  padding-block: 0.5rem;
  color: var(--color-ink-soft);
}

.plan.featured ul.feature-list li {
  color: rgba(255, 255, 255, 0.8);
}

.plan .btn {
  margin-top: 2.5rem;
  width: 100%;
}

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

.faq-list {
  margin-top: 3rem;
  border-top: 1px solid var(--color-line);
}

.faq-item {
  padding-block: 2rem;
  border-bottom: 1px solid var(--color-line);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

/* ---------------------------------------------------------------------- */
/* Story / two-column                                                     */
/* ---------------------------------------------------------------------- */

.two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }
}

.two-col .prose p {
  margin-top: 1.25rem;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-ink-soft);
}

.two-col .prose p:first-child {
  margin-top: 0;
}

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-card {
  border-radius: 24px;
  border: 1px solid var(--color-line);
  padding: 2.5rem;
  background: var(--color-paper);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-card p {
  margin-top: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-ink-soft);
}

.contact-method {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
}

.contact-method .icon {
  width: 18px;
  height: 18px;
}

#contact-form {
  margin-top: 2rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-line);
  background: var(--color-paper);
  padding: 0.75rem 1rem;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-ink);
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 1rem;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-soft);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--color-void-soft);
  color: #fff;
}

.footer-inner {
  padding-block: 6rem;
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .footer-inner {
    padding-block: 8rem;
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand p.name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-brand p.blurb {
  margin-top: 1rem;
  max-width: 22rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col p.heading {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.footer-col ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .email-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col .email-link:hover {
  color: #fff;
}

.footer-col .email-link .icon {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 2rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* ---------------------------------------------------------------------- */
/* Icons                                                                   */
/* ---------------------------------------------------------------------- */

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Scroll reveal — pure CSS, zero JavaScript.                             */
/* Content is fully visible by default. Browsers that support             */
/* scroll-driven animations fade elements up as they enter view.          */
/* ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 18%;
    }
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .drift {
    animation: none !important;
  }
}
