/* ============================================================
   Drop It · Friends & Family — editorial design system
   Pure monochrome · white as the single accent on near-black
   Type: Inter Tight (display) · Inter (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #0e0e0e;
  --surface: #121212;
  --card: #151515;
  --card-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f4f4f4;
  --text-2: #b4b4b4;
  --text-3: #767676;
  --accent: #ffffff;
  --accent-ink: #0a0a0a;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 20px;
  --radius-lg: 28px;

  --step: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 260ms;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- film grain over everything (subtle) ---- */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.display { font-family: 'Inter Tight', 'Inter', sans-serif; letter-spacing: -0.03em; }
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500;
}

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------------- type scale ---------------- */
h1, h2, h3 { font-family: 'Inter Tight', sans-serif; font-weight: 700; letter-spacing: -0.04em; line-height: 0.98; }
.h-display { font-size: clamp(52px, 11vw, 168px); font-weight: 800; line-height: 0.9; }
h1 { font-size: clamp(44px, 8vw, 104px); }
h2 { font-size: clamp(32px, 5.2vw, 68px); }
h3 { font-size: clamp(19px, 2vw, 23px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.lead { color: var(--text-2); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; max-width: 60ch; }
.small { color: var(--text-3); font-size: 13px; line-height: 1.6; }

.accent { color: var(--accent); }
.stroke-text { -webkit-text-stroke: 1.5px var(--text); color: transparent; }
@supports not (-webkit-text-stroke: 1px black) { .stroke-text { color: var(--text); } }

/* ---------------- layout atoms ---------------- */
section { position: relative; z-index: 2; padding-block: clamp(72px, 11vw, 150px); }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 6vw, 72px); }
.eyebrow { color: var(--accent); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--accent); display: inline-block; }
.rule { height: 1px; background: var(--line); border: 0; }

/* ---------------- nav ---------------- */
nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--text-3); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: 14px; padding: 8px 14px; border-radius: 999px; transition: color var(--dur), background var(--dur); }
.nav-links a:not(.btn):hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 66px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,10,0.97); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity var(--dur), transform var(--dur); }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 4px; font-size: 16px; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links a.btn { margin-top: 12px; text-align: center; }
  .nav-toggle { display: inline-flex; }
}

/* ---------------- buttons ---------------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform var(--dur) var(--step), background var(--dur), color var(--dur), border-color var(--dur);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(255, 255, 255,0.5); }
.btn-outline { color: var(--text); border-color: rgba(255,255,255,0.24); }
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.btn .arw { transition: transform var(--dur) var(--step); }
.btn:hover .arw { transform: translate(3px, -3px); }

/* focus visibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------------- hero ---------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-top: 120px; padding-bottom: clamp(48px, 7vw, 96px); overflow: clip; }
.hero-bg { position: absolute; inset: -14% 0 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 132%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.4); }
.hero-bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.55) 72%, var(--bg) 100%); }
.hero .container { position: relative; z-index: 3; width: 100%; }
.hero h1 { max-width: 15ch; margin-bottom: clamp(24px, 3vw, 38px); }
.hero h1 .accent { text-decoration: underline; text-decoration-thickness: 0.05em; text-underline-offset: 0.14em; text-decoration-color: rgba(255,255,255,0.7); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.03); color: var(--text-2); }
.chip strong { color: var(--text); font-weight: 600; }
.chip.mono { font-size: 12px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 24px; z-index: 3; color: var(--text-3); text-align: center; }
.scroll-cue .dot { display: block; width: 1px; height: 42px; margin: 10px auto 0; background: linear-gradient(var(--accent), transparent); }
@media (max-width: 820px) { .scroll-cue { display: none; } }

/* ---------------- marquee ---------------- */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding-block: 22px; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 40px); letter-spacing: -0.02em; color: var(--text); padding-inline: 28px; white-space: nowrap; }
.marquee-track span::after { content: '✳'; color: var(--accent); margin-left: 56px; font-size: 0.6em; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------------- stats ---------------- */
.stats { border-bottom: 1px solid var(--line); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(32px, 4vw, 52px) clamp(20px, 2.4vw, 34px); border-left: 1px solid var(--line-soft); }
.stat:first-child { border-left: 0; }
.stat .num { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: clamp(34px, 4.6vw, 58px); letter-spacing: -0.04em; line-height: 1; }
.stat .lab { color: var(--text-3); font-size: 13px; margin-top: 10px; line-height: 1.4; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(3) { border-left: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); } }

/* ---------------- worlds (bento) ---------------- */
.worlds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .worlds { grid-template-columns: 1fr; } }
.world { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.world img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: grayscale(1) brightness(0.62); transition: transform 700ms var(--step), filter 700ms var(--step); }
.world::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.9) 100%); }
.world:hover img { transform: scale(1.06); filter: grayscale(0.55) brightness(0.72); }
.world .idx { position: absolute; top: 20px; left: 22px; z-index: 2; }
.world .wbody { padding: 26px; }
.world .tag { color: var(--accent); }
.world h3 { margin: 12px 0 8px; font-size: 26px; }
.world p { color: var(--text-2); font-size: 15px; }
.world .zlist { margin-top: 16px; color: var(--text-3); font-size: 13px; line-height: 1.9; border-top: 1px solid var(--line-soft); padding-top: 14px; min-height: 90px;}

/* ---------------- zone rows ---------------- */
.zones-list { border-top: 1px solid var(--line); }
.zrow { display: grid; grid-template-columns: 90px 1.1fr 1.4fr 40px; gap: 24px; align-items: center;
  padding: clamp(20px, 2.4vw, 30px) 6px; border-bottom: 1px solid var(--line); position: relative;
  transition: padding-left var(--dur) var(--step), background var(--dur); }
.zrow:hover { padding-left: 22px; background: linear-gradient(90deg, rgba(255, 255, 255,0.05), transparent 60%); }
.zrow .znum { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 15px; }
.zrow .zname { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: clamp(17px, 2vw, 22px); letter-spacing: 0.01em; }
.zrow .zdesc { color: var(--text-2); font-size: 15px; }
.zrow .zarw { color: var(--text-3); opacity: 0; transform: translateX(-6px); transition: all var(--dur) var(--step); }
.zrow:hover .zarw { opacity: 1; transform: none; color: var(--accent); }
@media (max-width: 780px) { .zrow { grid-template-columns: 54px 1fr; } .zrow .zdesc, .zrow .zarw { display: none; } }

/* ---------------- split ---------------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.rev > .media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.rev > .media { order: 0; } }
.media { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.media img { width: 100%; display: block; filter: grayscale(1) brightness(0.86); transition: transform 700ms var(--step), filter 700ms var(--step); }
.media:hover img { transform: scale(1.04); filter: grayscale(0.4) brightness(0.95); }

/* ---------------- cards / generic ---------------- */
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.4vw, 30px); transition: border-color var(--dur), background var(--dur), transform var(--dur) var(--step); }
.card:hover { border-color: rgba(255,255,255,0.22); background: var(--card-2); }
.card .tag { color: var(--accent); display: block; margin-bottom: 14px; }
.card p { color: var(--text-2); font-size: 15px; }
.card .big { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 10px; }

/* numbered blocks */
.numblk .n { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 13px; display: block; margin-bottom: 12px; }
.numblk h3 { margin-bottom: 8px; }
.numblk p { color: var(--text-2); font-size: 15px; }

/* history waves */
.waves { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 780px) { .waves { grid-template-columns: 1fr; } }
.wave { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,36px); display: flex; flex-direction: column; gap: 6px; transition: border-color var(--dur), background var(--dur); }
.wave:hover { border-color: rgba(255,255,255,0.22); background: var(--card); }
.wave.now { border-color: rgba(255, 255, 255,0.45); background: radial-gradient(120% 100% at 20% 0%, rgba(255, 255, 255,0.06), transparent 60%); }
.wave .big { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: clamp(40px, 6vw, 76px); letter-spacing: -0.04em; line-height: 1; margin: 10px 0 6px; }
.wave.now .big { color: var(--accent); }

/* poster statement band */
.poster { border-block: 1px solid var(--line); background: var(--bg-2); text-align: center; overflow: hidden; }
.poster .kicker { color: var(--text-3); margin-bottom: 26px; }
.poster .line { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: clamp(40px, 9vw, 132px); line-height: 0.92; letter-spacing: -0.04em; }
.poster .line .lo { color: var(--text-3); }

/* 3D WebGL stage (behind the statement) */
.stage3d { position: relative; padding-block: clamp(110px, 18vw, 220px); background: #060606; }
.stage3d-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.stage3d-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 50%, transparent 0%, rgba(6,6,6,0.35) 55%, rgba(6,6,6,0.85) 100%); }
.stage3d .container { position: relative; z-index: 2; }
.stage3d .line { text-shadow: 0 2px 40px rgba(6,6,6,0.9); }
.stage3d.webgl-on .line .lo { color: var(--text-2); }
.stage3d .afisha { display: block; width: min(92%, 960px); height: auto; margin: 0 auto; filter: drop-shadow(0 14px 50px rgba(0,0,0,0.7)); }
@media (max-width: 600px) { .stage3d .afisha { width: 100%; } }
.stage3d[data-3d="loading"] .stage3d-canvas { opacity: 0; }
.stage3d-canvas { opacity: 1; transition: opacity 700ms var(--step); }

/* photo strip — full-bleed horizontal scroller */
.pstrip { display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; scroll-padding-inline: var(--gutter);
  padding: 4px var(--gutter) 18px; -webkit-overflow-scrolling: touch; }
.pstrip::-webkit-scrollbar { height: 6px; }
.pstrip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 999px; }
.pstrip::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.32); }
.pstrip::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 999px; }
.pstrip figure { flex: 0 0 auto; width: clamp(230px, 26vw, 320px); aspect-ratio: 4 / 5; margin: 0;
  overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); scroll-snap-align: start; }
.pstrip img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.9);
  transition: transform 700ms var(--step), filter 500ms; }
.pstrip figure:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }

/* packages */
.pkg { display: flex; flex-direction: column; }
.pkg .price { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.02em; color: var(--accent); margin: 8px 0 18px; }
.pkg ul { list-style: none; margin-top: auto; }
.pkg li { color: var(--text-2); font-size: 14.5px; padding: 10px 0 10px 22px; border-top: 1px solid var(--line-soft); position: relative; }
.pkg li::before { content: ''; position: absolute; left: 0; top: 18px; width: 8px; height: 1px; background: var(--accent); }
.pkg.featured { border-color: rgba(255, 255, 255,0.45); background: radial-gradient(120% 90% at 15% 0%, rgba(255, 255, 255,0.06), transparent 55%); }
.pkg .ribbon { align-self: flex-start; margin-bottom: 12px; color: var(--accent-ink); background: var(--accent); border-radius: 999px; padding: 5px 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; }

/* comparison table */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.cmp { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 680px; }
.cmp th, .cmp td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line-soft); }
.cmp thead th { font-family: 'JetBrains Mono', monospace; color: var(--text-3); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; background: var(--surface); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr:hover td { background: rgba(255,255,255,0.02); }
.cmp td:first-child { color: var(--text-2); }
.cmp th.acc, .cmp td.acc { color: var(--accent); font-weight: 600; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.cmp thead th.acc { color: var(--accent); background: rgba(255, 255, 255,0.06); }

/* ambassador roster (people) */
.roster { display: flex; flex-wrap: wrap; gap: 10px; }
.roster span { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; white-space: nowrap;
  transition: color var(--dur), border-color var(--dur), background var(--dur); }
.roster span:hover { color: var(--text); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }

/* subnav (partners) */
.subnav { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.subnav a { color: var(--text-2); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 13px; text-decoration: none; transition: all var(--dur); }
.subnav a:hover { color: var(--text); border-color: var(--text); background: rgba(255,255,255,0.04); }

/* CTA block */
.cta-block { position: relative; overflow: hidden; isolation: isolate; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 96px); text-align: center;
  background: radial-gradient(90% 120% at 50% 0%, rgba(255, 255, 255,0.08), transparent 55%), var(--card); }
.cta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  filter: grayscale(1) brightness(0.5) contrast(1.05); }
.cta-block::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(85% 110% at 50% 45%, rgba(6,6,6,0.4), rgba(6,6,6,0.86)); }
.cta-block > :not(.cta-video) { position: relative; z-index: 2; }
.cta-block .lead { margin: 18px auto 30px; }
.cta-block .hero-cta { justify-content: center; }
@media (prefers-reduced-motion: reduce) { .cta-video { display: none; } }

/* contacts */
.contact { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.contact .name { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 18px; }
.contact a { color: var(--accent); text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.contact a:hover { text-decoration: underline; }

/* footer */
footer { border-top: 1px solid var(--line); padding-block: 40px 52px; position: relative; z-index: 2; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-inner .mono { color: var(--text-3); }
.footer-inner a { color: var(--text-2); text-decoration: none; }
.footer-inner a:hover { color: var(--text); }

/* ---------------- reveal (JS-gated) ---------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--step), transform 0.7s var(--step); }
.js .reveal.on { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.06s; }
.js .reveal.d2 { transition-delay: 0.12s; }
.js .reveal.d3 { transition-delay: 0.18s; }
.js .reveal.d4 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-bg { transform: none !important; }
  .world img, .media img, .pgrid img { transition: none; }
}

/* hero load-in */
.js .hero .anim { opacity: 0; transform: translateY(26px); animation: rise 0.9s var(--step) forwards; }
.js .hero .anim.a1 { animation-delay: 0.05s; }
.js .hero .anim.a2 { animation-delay: 0.18s; }
.js .hero .anim.a3 { animation-delay: 0.31s; }
.js .hero .anim.a4 { animation-delay: 0.44s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js .hero .anim { opacity: 1; transform: none; animation: none; } }
