/* VOID PIZZA LAB — static build */
@font-face { font-family: "Space Grotesk"; font-weight: 400; font-display: swap; src: url("./fonts/sg-400.ttf") format("truetype"); }
@font-face { font-family: "Space Grotesk"; font-weight: 500; font-display: swap; src: url("./fonts/sg-500.ttf") format("truetype"); }
@font-face { font-family: "Space Grotesk"; font-weight: 700; font-display: swap; src: url("./fonts/sg-700.ttf") format("truetype"); }
@font-face { font-family: "JetBrains Mono"; font-weight: 400; font-display: swap; src: url("./fonts/jb-400.ttf") format("truetype"); }
@font-face { font-family: "JetBrains Mono"; font-weight: 700; font-display: swap; src: url("./fonts/jb-700.ttf") format("truetype"); }

:root {
  --bg: #0e0d12;
  --fg: #f5f4ef;
  --muted: #8b8b96;
  --graphite: #1a1922;
  --graphite-2: #25242f;
  --border: rgba(255,255,255,0.08);
  --primary: #ff6a1f;
  --primary-2: #ff3b2e;
  --cyan: #4fd4ff;
  --green: #5cffa0;
  --yellow: #ffe23a;
  --red: #ff3b2e;
  --shadow-orange: 0 0 32px rgba(255,106,31,0.45), 0 0 80px rgba(255,59,46,0.25);
  --shadow-cyan: 0 0 32px rgba(79,212,255,0.45);
  --grad-fire: linear-gradient(135deg, #ff6a1f, #ff3b2e);
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-display); color: var(--fg); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,106,31,0.15), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(79,212,255,0.12), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.font-mono { font-family: var(--font-mono); }

.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.7rem; font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.03);
  color: var(--cyan); border-radius: 2px;
}
.chip.chip-fg { color: var(--fg); }
.chip.chip-orange { color: var(--primary); border-color: rgba(255,106,31,0.4); }
.chip.chip-green { color: var(--green); }
.chip.chip-yellow { color: var(--yellow); border-color: rgba(255,226,58,0.4); }

.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.btn-neon, .btn-ghost {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.82rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border: 0; cursor: pointer; transition: transform .2s, filter .2s, color .2s, box-shadow .2s, border-color .2s;
}
.btn-neon { background: var(--grad-fire); color: #14121a; box-shadow: var(--shadow-orange); }
.btn-neon:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--shadow-cyan); }

.holo-card {
  position: relative;
  background: linear-gradient(180deg, #1a1922, #14131a);
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.holo-card:hover {
  border-color: rgba(255,106,31,0.5);
  box-shadow: 0 0 0 1px rgba(255,106,31,0.2), 0 20px 60px -10px rgba(255,106,31,0.25);
  transform: translateY(-4px);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.text-glow-orange { text-shadow: 0 0 24px rgba(255,106,31,0.6); }
.text-glow-cyan { text-shadow: 0 0 24px rgba(79,212,255,0.6); }
.text-primary { color: var(--primary); }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }

@keyframes flicker { 0%,100%{opacity:1} 45%{opacity:.85} 50%{opacity:.4} 55%{opacity:.95} }
.flicker { animation: flicker 4s infinite; }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.float-anim { animation: float-y 6s ease-in-out infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.spin-slow { animation: spin-slow 20s linear infinite; }
.spin-rev { animation: spin-slow 30s linear infinite reverse; }
@keyframes ticker-anim { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-track { animation: ticker-anim 40s linear infinite; }
@keyframes scan-anim { 0%{transform:translateY(-100%)} 100%{transform:translateY(100%)} }
.scan { animation: scan-anim 4s linear infinite; }

/* NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 1rem; backdrop-filter: blur(20px); background: rgba(14,13,18,0.6);
  border: 1px solid var(--border); border-radius: 4px; margin: 1rem 0 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.brand-mark { width: 32px; height: 32px; display: grid; place-items: center; background: var(--primary); color: #14121a;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%); }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.55rem 0.85rem; font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); transition: color .2s; }
.nav-link:hover { color: var(--fg); }
.nav-link.active { color: var(--primary); text-shadow: 0 0 24px rgba(255,106,31,0.6); }
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.cart-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 0.85rem;
  background: rgba(255,106,31,0.1); border: 1px solid rgba(255,106,31,0.4); color: var(--primary);
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  cursor: pointer; transition: background .2s; }
.cart-btn:hover { background: rgba(255,106,31,0.2); }
.menu-toggle { padding: 0.55rem; background: transparent; border: 1px solid var(--border); cursor: pointer; }
.nav-mobile { display: none; margin-top: 0.5rem; padding: 0.5rem; backdrop-filter: blur(20px);
  background: rgba(14,13,18,0.95); border: 1px solid var(--border); border-radius: 4px; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 0.85rem 1rem; font-family: var(--font-mono); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); transition: color .2s, background .2s; }
.nav-mobile a:hover { color: var(--primary); background: rgba(255,106,31,0.05); }
@media (min-width: 1024px) { .nav-links { display: flex; } .menu-toggle { display: none; } }

/* HERO */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.025) 3px 4px);
  mix-blend-mode: overlay; z-index: 1;
}
.hero-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120vh; height: 120vh; border-radius: 50%; opacity: 0.3; filter: blur(80px);
  background: radial-gradient(circle, rgba(255,106,31,0.4), transparent 60%); }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 3rem; align-items: center;
  padding: 5rem 0 8rem; min-height: 100vh; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 0.88; margin: 1.5rem 0 0;
  text-transform: uppercase; font-weight: 900; letter-spacing: -0.02em; }
.hero-sub { margin-top: 2rem; max-width: 32rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.hero-sub strong { color: var(--fg); font-weight: 500; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 28rem; }
.hero-stat { border-left: 1px solid var(--border); padding-left: 0.75rem; }
.hero-stat-v { font-weight: 700; font-size: 1.25rem; }
.hero-stat-l { font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted); margin-top: 0.25rem; }

.hero-disc { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin: 0 auto; }
.hero-ring { position: absolute; border-radius: 50%; }
.hero-ring.r1 { inset: 16px; border: 1px solid rgba(255,106,31,0.3); }
.hero-ring.r2 { inset: 48px; border: 1px solid rgba(79,212,255,0.2); }
.hero-glow { position: absolute; inset: -32px; border-radius: 50%; opacity: 0.6; filter: blur(40px);
  background: radial-gradient(circle, rgba(255,106,31,0.5), transparent 60%); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-tag { position: absolute; backdrop-filter: blur(10px); background: rgba(14,13,18,0.6); }
.hero-tag.t1 { top: 1.5rem; right: 1.5rem; }
.hero-tag.t2 { bottom: 2rem; left: 0.5rem; color: var(--primary); }
.hero-tag.t3 { top: 50%; left: -1rem; color: var(--green); }

/* TICKER */
.ticker { position: absolute; inset: auto 0 0 0; z-index: 3; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(26,25,34,0.5); backdrop-filter: blur(10px); }
.ticker-track { display: flex; padding: 0.75rem 0; white-space: nowrap; will-change: transform; }
.ticker-item { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted); padding: 0 1.5rem; display: inline-flex; align-items: center; gap: 1.5rem; }
.ticker-item span { color: var(--primary); }

/* SECTIONS */
section.block { padding: 8rem 0; border-top: 1px solid var(--border); position: relative; }
.section-head { margin-bottom: 3rem; max-width: 50rem; }
.kicker { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--primary); margin-bottom: 1rem; }
.section-head h2 { margin: 0; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 0.9;
  text-transform: uppercase; font-weight: 900; letter-spacing: -0.02em; }
.section-desc { margin-top: 1.25rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 36rem; }

/* MENU */
.cat-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.cat-btn { padding: 0.6rem 1rem; font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted);
  background: transparent; border: 1px solid var(--border); cursor: pointer; transition: all .2s; }
.cat-btn:hover { color: var(--fg); border-color: var(--fg); }
.cat-btn.active { background: var(--primary); color: #14121a; border-color: var(--primary); }
.menu-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: 1fr 1fr 1fr; } }
.item-card { padding: 1rem; display: flex; flex-direction: column; }
.item-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1rem; background: var(--graphite); }
.item-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s; }
.item-card:hover .item-img { transform: scale(1.1); }
.item-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--graphite) 0%, transparent 50%); opacity: .85; }
.item-meta-top { position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem; display: flex; justify-content: space-between; gap: 0.5rem; }
.item-meta-bot { position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; display: flex; justify-content: space-between; align-items: center; }
.spice { display: inline-flex; gap: 2px; }
.flame { width: 14px; height: 14px; display: inline-block; }
.flame svg { width: 100%; height: 100%; }
.flame.on { color: var(--red); } .flame.off { color: rgba(255,255,255,0.18); }
.item-kcal { font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--muted); background: rgba(14,13,18,0.6); backdrop-filter: blur(8px); padding: 0.25rem 0.5rem; }
.item-title { font-weight: 700; font-size: 1.1rem; text-transform: uppercase; margin: 0; letter-spacing: -0.01em; }
.item-desc { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.55; flex: 1; }
.item-footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.item-price { font-weight: 900; font-size: 1.5rem; color: var(--primary); text-shadow: 0 0 24px rgba(255,106,31,0.6); }
.add-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 0.9rem;
  background: rgba(255,106,31,0.1); border: 1px solid rgba(255,106,31,0.4); color: var(--primary);
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  cursor: pointer; transition: all .2s; }
.add-btn:hover { background: var(--primary); color: #14121a; }

/* DELIVERY */
.delivery-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .delivery-grid { grid-template-columns: 1.3fr 1fr; } }
.map-wrap { position: relative; aspect-ratio: 4/3; border: 1px solid var(--border); overflow: hidden; }
.map-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.node-card { padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.node-icon { width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(255,106,31,0.1); border: 1px solid rgba(255,106,31,0.3); color: var(--primary); flex-shrink: 0; }
.node-bar { margin-top: 0.75rem; height: 4px; background: var(--graphite-2); overflow: hidden; }
.node-bar > div { height: 100%; background: linear-gradient(90deg, var(--primary), var(--red)); }
.node-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.node-time { font-family: var(--font-mono); font-size: 0.75rem; color: var(--cyan); }
.node-cities { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted); }

/* DEALS */
.deals-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.deals-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .deals-grid { grid-template-columns: 1fr 1fr; } }
.deal-card { padding: 2rem; position: relative; overflow: hidden; }
.deal-blob { position: absolute; right: -64px; top: -64px; width: 192px; height: 192px;
  border-radius: 50%; filter: blur(60px); opacity: 0.3; }
.deal-card.alt .deal-blob { background: var(--cyan); }
.deal-card .deal-blob { background: var(--primary); }
.deal-title { margin: 0.85rem 0 0; font-weight: 900; font-size: 1.85rem; line-height: 1; text-transform: uppercase; }
.deal-desc { margin: 0.75rem 0 0; color: var(--muted); max-width: 28rem; }
.deal-footer { margin-top: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.deal-price { font-weight: 900; font-size: 2.25rem; color: var(--primary); text-shadow: 0 0 24px rgba(255,106,31,0.6); }
.countdown { display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border: 1px solid rgba(255,106,31,0.4); font-family: var(--font-mono); font-size: 0.95rem; }

/* REVIEWS */
.review-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .review-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { padding: 1.5rem; }
.review-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { width: 40px; height: 40px; display: grid; place-items: center; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--red)); color: #14121a; }
.review-name { font-weight: 700; font-size: 0.875rem; }
.review-city { font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; margin-bottom: 0.75rem; }
.star { width: 14px; height: 14px; color: var(--yellow); }
.star.off { color: rgba(255,255,255,0.18); }
.review-text { margin: 0; font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

/* REWARDS */
.xp-bar-card { padding: 2rem; margin-bottom: 2.5rem; }
.xp-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1rem; }
.xp-bar { height: 12px; background: var(--graphite-2); overflow: hidden; position: relative; }
.xp-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--red), var(--yellow));
  width: 0; transition: width 1.2s ease-out; position: relative; overflow: hidden; }
.xp-fill::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.2); animation: scan-anim 4s linear infinite; }
.xp-labels { margin-top: 0.5rem; display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.tiers { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tiers { grid-template-columns: 1fr 1fr 1fr; } }
.tier-card { padding: 1.5rem; position: relative; }
.tier-icon { width: 32px; height: 32px; margin-bottom: 1rem; }
.tier-name { margin: 0; font-weight: 700; font-size: 1.2rem; text-transform: uppercase; }
.tier-xp { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.tier-perks { margin: 1rem 0 0; padding: 0; list-style: none; }
.tier-perks li { padding: 0.25rem 0; font-size: 0.875rem; color: var(--muted); }
.tier-perks li::before { content: "+"; color: var(--primary); margin-right: 0.5rem; }
.lock { position: absolute; top: 1rem; right: 1rem; color: var(--muted); }

/* LOCATIONS */
.loc-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .loc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.loc-card { padding: 1.5rem; }
.loc-card h3 { margin: 0; font-weight: 700; font-size: 1.25rem; text-transform: uppercase; }
.loc-card ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.loc-card li { display: flex; justify-content: space-between; padding: 0.55rem 0;
  border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.loc-card li span:last-child { font-family: var(--font-mono); font-size: 0.625rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--green); }

/* FOOTER */
footer { position: relative; margin-top: 8rem; border-top: 1px solid var(--border); }
footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.foot-grid { padding: 4rem 0; display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.foot-col h4 { margin: 0 0 1rem; font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.foot-col ul { margin: 0; padding: 0; list-style: none; }
.foot-col li { padding: 0.25rem 0; font-size: 0.875rem; color: var(--muted); }
.foot-col li a:hover { color: var(--fg); }
.foot-news { display: flex; border: 1px solid var(--border); margin-top: 1.5rem; }
.foot-news input { flex: 1; background: transparent; border: 0; padding: 0.85rem 1rem;
  font-family: var(--font-mono); font-size: 0.875rem; outline: none; color: var(--fg); }
.foot-news button { padding: 0 1rem; background: var(--primary); color: #14121a; border: 0;
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; cursor: pointer; }
.foot-social { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.foot-social a { padding: 0.5rem; border: 1px solid var(--border); display: inline-flex;
  transition: color .2s, border-color .2s; }
.foot-social a:hover { color: var(--primary); border-color: var(--primary); }
.foot-bar { border-top: 1px solid var(--border); padding: 1rem 0; display: flex;
  flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.in { opacity: 1; transform: none; }
