/* ============================================================
   P Square Developers — Editorial Studio Theme
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #07070a;
  --bg-2: #0b0b10;
  --panel: #101017;
  --ink: #f4f2ee;
  --ink-soft: #b6b4b0;
  --ink-dim: #6d6b68;
  --line: rgba(244, 242, 238, 0.10);
  --line-soft: rgba(244, 242, 238, 0.06);

  --accent: #3b82f6;
  --accent-bright: #5b9dff;
  --accent-ink: #eaf1ff;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --shell: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 40px; }
.ital { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0.5px; }
.muted { color: var(--ink-dim); }

/* ---------- Grain texture ---------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, 3%); }
  80% { transform: translate(3%, -1%); }
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border 0.3s var(--ease);
}
.cursor-dot { width: 5px; height: 5px; background: #fff; transform: translate(-50%, -50%); }
.cursor.is-hover { width: 60px; height: 60px; background: rgba(255,255,255,0.9); border-color: transparent; }
.cursor.is-view { width: 84px; height: 84px; background: var(--accent); border-color: transparent; }
.cursor.is-view::after { content: "View"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; mix-blend-mode: normal; }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 10000; background: var(--bg); display: grid; place-items: center; transition: opacity 0.6s var(--ease), visibility 0.6s; }
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-mark { font-family: var(--font-display); font-weight: 700; font-size: 2rem; letter-spacing: -1px; }
.loader-bar { width: 180px; height: 2px; background: var(--line); overflow: hidden; }
.loader-fill { display: block; height: 100%; width: 0; background: var(--accent-bright); transition: width 0.2s linear; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 26px 0; transition: padding 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s var(--ease); }
.nav.scrolled { padding: 16px 0; background: rgba(7,7,10,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { height: 40px; width: auto; }

.nav-menu { display: flex; gap: 40px; margin-left: auto; margin-right: 40px; }
.nav-link { font-family: var(--font-display); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); position: relative; padding-bottom: 3px; transition: color 0.3s var(--ease); }
.nav-link span { display: inline-block; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--accent-bright); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; padding: 11px 20px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease); }
.nav-cta svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.nav-cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 160px 0 80px; overflow: hidden; }
.hero-glow { position: absolute; top: 20%; left: 50%; width: 900px; height: 900px; transform: translate(-50%,-30%); background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 60%); filter: blur(40px); pointer-events: none; }
.hero-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; flex-wrap: wrap; gap: 12px; }
.tagline { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.5px; color: var(--ink-soft); text-transform: uppercase; }
.tagline .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 12px var(--accent-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-loc { font-family: var(--font-display); font-size: 0.82rem; color: var(--ink-dim); letter-spacing: 0.5px; }

.hero-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 9vw, 8.2rem); line-height: 0.98; letter-spacing: -0.04em; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease-out); }
.hero-title .word.ital { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent-bright); }
.loaded .hero-title .word { transform: translateY(0); }
.loaded .hero-title .line:nth-child(1) .word { transition-delay: 0.05s; }
.loaded .hero-title .line:nth-child(2) .word { transition-delay: 0.14s; }
.loaded .hero-title .line:nth-child(3) .word { transition-delay: 0.22s; }

.hero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-lead { max-width: 440px; color: var(--ink-soft); font-size: 1.05rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

.scroll-hint { display: flex; align-items: center; gap: 12px; margin-top: 60px; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-dim); }
.scroll-track { width: 40px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.scroll-thumb { position: absolute; left: 0; top: 0; height: 100%; width: 40%; background: var(--ink); animation: scrollmove 2s var(--ease) infinite; }
@keyframes scrollmove { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* ---------- Buttons ---------- */
.btn-solid { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; padding: 15px 30px; border-radius: 100px; background: var(--ink); color: var(--bg); border: 1px solid var(--ink); transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.btn-solid:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-full { width: 100%; }
.btn-line { font-family: var(--font-display); font-weight: 500; font-size: 0.95rem; color: var(--ink); position: relative; padding-bottom: 3px; }
.btn-line::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(1); transform-origin: right; transition: transform 0.4s var(--ease); }
.btn-line:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 34px; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.01em; }
.marquee-track .sep { color: var(--accent-bright); }

/* ---------- Sections ---------- */
.section { padding: 130px 0; position: relative; }
.index { display: block; font-family: var(--font-display); font-size: 0.85rem; color: var(--accent-bright); letter-spacing: 1px; margin-bottom: 26px; }
.section-head { margin-bottom: 70px; }
.section-heading { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.03em; }
.section-note { margin-top: 20px; color: var(--ink-soft); max-width: 420px; }

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 60px 1.4fr 1fr 40px; align-items: center; gap: 30px; padding: 38px 12px; border-bottom: 1px solid var(--line); position: relative; transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.svc-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(59,130,246,0.10), transparent); opacity: 0; transition: opacity 0.4s var(--ease); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row:hover { padding-left: 26px; padding-right: 26px; }
.svc-row:hover::before { opacity: 1; }
.svc-no { font-family: var(--font-display); font-size: 0.85rem; color: var(--ink-dim); }
.svc-main { min-width: 0; }
.svc-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.02em; transition: transform 0.4s var(--ease); }
.svc-row:hover .svc-title { transform: translateX(8px); }
.svc-desc { color: var(--ink-soft); font-size: 0.98rem; margin-top: 8px; max-width: 420px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tags li { font-family: var(--font-display); font-size: 0.76rem; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }
.svc-arrow { font-size: 1.5rem; color: var(--ink-dim); text-align: right; transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.svc-row:hover .svc-arrow { transform: translate(4px,-4px); color: var(--accent-bright); }

/* ---------- Work ---------- */
.work-list { border-top: 1px solid var(--line); }
.work-row { display: grid; grid-template-columns: 64px 1.7fr 0.9fr 40px; align-items: start; gap: 30px; padding: 40px 12px; border-bottom: 1px solid var(--line); position: relative; transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.work-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(59,130,246,0.10), transparent); opacity: 0; transition: opacity 0.4s var(--ease); }
.work-row > * { position: relative; z-index: 1; }
.work-row:hover { padding-left: 26px; padding-right: 26px; }
.work-row:hover::before { opacity: 1; }
.work-no { font-family: var(--font-display); font-size: 0.9rem; color: var(--accent-bright); padding-top: 6px; }
.work-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.02em; transition: transform 0.4s var(--ease); }
.work-row:hover .work-title { transform: translateX(8px); }
.work-desc { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; max-width: 620px; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start; padding-top: 10px; }
.work-tags li { font-family: var(--font-display); font-size: 0.76rem; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }
.work-arrow { font-size: 1.5rem; color: var(--ink-dim); text-align: right; padding-top: 6px; transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.work-row:hover .work-arrow { transform: translate(4px,-4px); color: var(--accent-bright); }

/* ---------- About ---------- */
.about .statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 4.5vw, 3.6rem); line-height: 1.18; letter-spacing: -0.02em; max-width: 15ch; max-width: 1000px; }
.about-lower { display: flex; justify-content: space-between; gap: 60px; margin-top: 90px; flex-wrap: wrap; }
.about-points { display: flex; flex-direction: column; gap: 16px; }
.about-points .pt { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-soft); }
.about-points .pt span { color: var(--accent-bright); margin-right: 10px; }
.stats { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 40px 60px; }
.stat strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -0.03em; }
.stat span { display: block; margin-top: 8px; color: var(--ink-dim); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left { min-width: 0; }
.contact-heading { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: 22px; }
.contact-sub { color: var(--ink-soft); max-width: 340px; margin-bottom: 44px; }
.contact-lines { display: flex; flex-direction: column; }
.c-line { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line); align-items: baseline; }
.c-line:last-child { border-bottom: 1px solid var(--line); }
.c-label { font-family: var(--font-display); font-size: 0.78rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 1px; min-width: 70px; }
.c-val { font-family: var(--font-display); font-size: 1.1rem; transition: color 0.3s var(--ease); }
a.c-line:hover .c-val { color: var(--accent-bright); }
.c-val.socials { display: flex; gap: 18px; flex-wrap: wrap; font-size: 1rem; }
.c-val.socials a { color: var(--ink-soft); transition: color 0.3s var(--ease); }
.c-val.socials a:hover { color: var(--ink); }

/* Form with floating labels */
.contact-form { display: flex; flex-direction: column; gap: 8px; }
.field { position: relative; padding-top: 8px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 22px 0 12px; color: var(--ink); font-family: var(--font-body); font-size: 1.05rem;
  transition: border-color 0.35s var(--ease);
}
.field textarea { resize: vertical; }
.field select { color: var(--ink); }
.field select option { background: var(--panel); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent-bright); }
.field label { position: absolute; left: 0; top: 30px; color: var(--ink-dim); font-size: 1.05rem; pointer-events: none; transition: transform 0.3s var(--ease), color 0.3s var(--ease), font-size 0.3s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-26px); font-size: 0.78rem; color: var(--accent-bright);
}
.field .label-static { position: absolute; left: 0; top: 4px; font-size: 0.78rem; color: var(--ink-dim); }
.field:has(select) { padding-top: 26px; }
.error { display: block; min-height: 1.1em; color: #ff7a7a; font-size: 0.78rem; margin-top: 6px; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-bottom-color: #ff7a7a; }
.contact-form .btn-solid { margin-top: 20px; }
.form-success { margin-top: 16px; color: #6ee7a8; font-family: var(--font-display); font-weight: 600; }
.form-error { margin-top: 16px; color: #ff7a7a; font-family: var(--font-display); font-weight: 600; }
.contact-form button[disabled] { opacity: 0.6; cursor: default; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 90px 0 40px; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-bottom: 80px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.footer-cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 5rem); letter-spacing: -0.03em; }
.footer-row { display: flex; justify-content: space-between; align-items: center; padding: 44px 0; gap: 30px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; }
.footer-logo { height: 42px; }
.footer-nav { display: flex; gap: 30px; }
.footer-nav a { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink-soft); transition: color 0.3s var(--ease); }
.footer-nav a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; color: var(--ink-dim); font-family: var(--font-display); font-size: 0.82rem; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line-soft); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Cinematic scroll choreography ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Line-mask reveal: each line clipped, slides up */
[data-lines] .ln-mask { display: block; overflow: hidden; }
[data-lines] .ln-inner { display: block; transform: translateY(105%); transition: transform 1s var(--ease-out); }
[data-lines].in .ln-inner { transform: translateY(0); }
[data-lines].in .ln-mask:nth-child(1) .ln-inner { transition-delay: 0.02s; }
[data-lines].in .ln-mask:nth-child(2) .ln-inner { transition-delay: 0.10s; }
[data-lines].in .ln-mask:nth-child(3) .ln-inner { transition-delay: 0.18s; }
[data-lines].in .ln-mask:nth-child(4) .ln-inner { transition-delay: 0.26s; }
[data-lines].in .ln-mask:nth-child(5) .ln-inner { transition-delay: 0.34s; }
[data-lines].in .ln-mask:nth-child(6) .ln-inner { transition-delay: 0.42s; }

/* Word-level stagger reveal */
[data-words] .wd { display: inline-block; overflow: hidden; vertical-align: top; }
[data-words] .wd > span { display: inline-block; transform: translateY(105%); transition: transform 0.85s var(--ease-out); }
[data-words].in .wd > span { transform: translateY(0); }

/* Clip-path media reveal (work tiles) */
[data-clip] { clip-path: inset(100% 0 0 0); transition: clip-path 1.1s var(--ease-out); }
[data-clip].in { clip-path: inset(0% 0 0 0); }

/* Parallax layers set via --py by JS */
[data-parallax] { will-change: transform; transform: translate3d(0, var(--py, 0px), 0); }

/* Scale-in media on scroll (JS sets --sc). The tile itself zooms
   slightly as it rises through the viewport; overflow:hidden clips it. */
[data-scale] { will-change: transform; transform: scale(var(--sc, 1)); }

/* Sticky section labels */
.section-head.sticky-head { position: sticky; top: 90px; }

/* Scroll progress bar */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--accent-bright); z-index: 950; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .work-row { grid-template-columns: 56px 1.4fr 0.8fr 40px; gap: 24px; }
}
@media (max-width: 820px) {
  .shell { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; position: fixed; inset: 0; z-index: 890;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 40px; margin: 0; background: var(--bg);
  }
  .nav-menu.open .nav-link { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); height: auto; }
  .section { padding: 90px 0; }
  .svc-row { grid-template-columns: 40px 1fr; gap: 6px 18px; padding: 28px 0; }
  .svc-tags { grid-column: 2; margin-top: 14px; }
  .svc-arrow { display: none; }
  .work-row { grid-template-columns: 40px 1fr; gap: 6px 18px; padding: 28px 0; }
  .work-tags { grid-column: 2; margin-top: 14px; padding-top: 0; }
  .work-arrow { display: none; }
  .about-lower { flex-direction: column; gap: 50px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .word { transform: none; }
  [data-lines] .ln-inner, [data-words] .wd > span { transform: none; }
  [data-clip] { clip-path: none; }
  [data-parallax] { transform: none !important; }
  [data-scale] { transform: none !important; }
  .grain { display: none; }
}
