/* ============================================================================
   DropSet — shared design system
   Dark, editorial, poster/ticket language. No generic SaaS template.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            #131313;
  --ticket:        #151515;
  --sheet:         #161616;
  --raised:        #1C1C1C;
  --border:        #454545;

  /* Text */
  --text:          #E5E2E1;
  --muted:         #8E8B8A;

  /* Brand */
  --fire:          #FF5637;
  --fire-deep:     #D8421F;
  --on-fire:       #131313;
  --peach:         #FFB4A5;
  --gold:          #EAC349;
  --success:       #22C55E;

  /* Type */
  --poster: "Anybody", system-ui, sans-serif;
  --ui:     "Archivo Narrow", system-ui, sans-serif;
  --mono:   "Space Mono", ui-monospace, monospace;

  /* Rhythm */
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(64px, 11vw, 132px);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--fire); color: var(--on-fire); }

:focus-visible {
  outline: 2px solid var(--fire);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- layout ----- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }

/* ----- typography ----- */
.poster {
  font-family: var(--poster);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--text);
}
h1.poster { font-size: clamp(3rem, 12vw, 7.5rem); }
h2.poster { font-size: clamp(2.2rem, 6vw, 4rem); }
h3.poster { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }

.mono { font-family: var(--mono); }

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
}
.tag--muted { color: var(--muted); }
.tag--fire  { color: var(--fire); }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.fire { color: var(--fire); }
.gold { color: var(--gold); }

/* editorial meta: dotted/mid-dot separated, never chips */
.meta {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* eyebrow above section titles */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 18px;
  display: inline-block;
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--fire);
  color: var(--on-fire);
  background-image: linear-gradient(180deg, var(--fire), var(--fire-deep));
}
.btn--primary:hover { background-image: linear-gradient(180deg, var(--fire-deep), var(--fire-deep)); }
.btn--ghost { border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.btn--disabled { background: var(--raised); color: var(--muted); border-color: var(--border); cursor: not-allowed; }

/* App Store badge (CSS-built, official-style) */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: 12px;
  transition: transform .15s ease, opacity .2s ease;
}
.appstore:hover { transform: translateY(-1px); }
.appstore svg { width: 26px; height: 26px; fill: var(--bg); }
.appstore__top { display: block; font-family: var(--ui); font-size: 0.68rem; letter-spacing: 0.04em; line-height: 1.15; opacity: .8; }
.appstore__bot { display: block; font-family: var(--ui); font-weight: 700; font-size: 1.18rem; line-height: 1.1; letter-spacing: -0.01em; }
.appstore--soon { background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: 12px; }
.appstore--soon svg { fill: var(--text); }

/* ============================================================================
   THE TICKET — signature motif
   ========================================================================== */
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ticket);
  border: 1px solid var(--border);
  border-radius: 4px;
}
/* horizontal split with a tearable stub */
.ticket--stub { grid-template-columns: 1fr 132px; }
@media (max-width: 620px) { .ticket--stub { grid-template-columns: 1fr; } }

.ticket__body { padding: clamp(22px, 4vw, 38px); }
.ticket__stub {
  position: relative;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: center;
}
/* vertical perforation between body and stub */
.ticket__stub::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  border-left: 2px dotted var(--border);
}
/* notches at top & bottom of the perforation */
.ticket__stub::after {
  content: "";
  position: absolute;
  left: -9px; top: -9px;
  width: 18px; height: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 calc(100% + 16px) 0 -1px var(--bg);
}
@media (max-width: 620px) {
  .ticket__stub::before { display: none; }
  .ticket__stub::after  { display: none; }
}

.serial { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--muted); writing-mode: vertical-rl; }
@media (max-width: 620px) { .serial { writing-mode: horizontal-tb; } }

/* barcode (decorative) */
.barcode {
  height: 46px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg,
    var(--text) 0 2px, transparent 2px 4px,
    var(--text) 4px 7px, transparent 7px 8px,
    var(--text) 8px 9px, transparent 9px 12px,
    var(--text) 12px 16px, transparent 16px 17px,
    var(--text) 17px 19px, transparent 19px 22px);
  opacity: .85;
}
.barcode--sm { height: 30px; }

/* perforation divider (replaces solid <hr>) */
.perf {
  position: relative;
  height: 1px;
  border: 0;
  border-top: 2px dotted var(--border);
  margin-block: 0;
}
.perf::before, .perf::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 18px; height: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.perf::before { left: -9px; }
.perf::after  { right: -9px; }

/* ============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; border-radius: 7px; }
.brand__name {
  font-family: var(--poster);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.32rem;
}
.brand__name span { color: var(--fire); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }

.nav__toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 6px; background: transparent; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 18px; height: 2px; background: var(--text); }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (max-width: 820px) {
  .nav__toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--sheet);
    border-bottom: 1px solid var(--border);
    padding: 8px var(--gutter) 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav .btn, .nav .appstore { margin-top: 14px; }
}

/* ============================================================================
   HERO
   ========================================================================== */
.hero { padding-top: clamp(40px, 7vw, 80px); padding-bottom: var(--section); position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 18px 0 0; }
.hero h1 .fire { color: var(--fire); -webkit-text-stroke: 0; }
.hero__sub { margin-top: 26px; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.appstore { max-width: 100%; }
@media (max-width: 560px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .hero__cta .appstore { width: 100%; justify-content: center; }
}
.hero__note { margin-top: 20px; font-family: var(--mono); font-size: 0.76rem; color: var(--muted); letter-spacing: 0.03em; }
.hero__note b { color: var(--peach); font-weight: 400; }

/* iPhone mockup */
.phone {
  position: relative;
  width: min(310px, 78vw);
  margin-inline: auto;
  aspect-ratio: 1320 / 2868;
  background: #000;
  border: 2px solid #2a2a2a;
  border-radius: 46px;
  padding: 11px;
  box-shadow: 0 0 0 2px #000, 0 40px 80px -30px rgba(0,0,0,.9), inset 0 0 0 1px #3a3a3a;
}
.phone::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.phone__screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--bg); }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }

/* small decorative serial under phone */
.phone__tag { text-align: center; margin-top: 18px; }

/* ============================================================================
   HOW IT WORKS — editorial steps, no boxes
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); margin-top: 40px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 36px; } }
.step__num { font-family: var(--poster); font-style: italic; font-weight: 900; font-size: 3.4rem; color: var(--fire); line-height: 1; }
.step h3 { font-family: var(--poster); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 1.5rem; margin: 10px 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted); max-width: 32ch; }
.step + .step { position: relative; }
@media (min-width: 761px) {
  .step + .step::before { content: ""; position: absolute; left: -26px; top: 8px; bottom: 8px; border-left: 2px dotted var(--border); }
}

/* ============================================================================
   FEATURES — editorial list
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 54px); margin-top: 44px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; gap: 34px; } }
.feature__k { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fire); }
.feature h3 { font-family: var(--poster); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 1.55rem; margin: 8px 0 8px; letter-spacing: -0.01em; }
.feature p { color: var(--muted); }

/* ============================================================================
   FAIR BY DESIGN — odds as big editorial numerals
   ========================================================================== */
.fair { background: var(--sheet); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 40px); margin: 48px 0; }
@media (max-width: 640px) { .odds { grid-template-columns: 1fr; gap: 8px; } }
.odd { padding-block: 18px; }
.odd + .odd { border-top: none; }
.odd__n { font-family: var(--poster); font-style: italic; font-weight: 900; font-size: clamp(4rem, 12vw, 7rem); line-height: 0.9; }
.odd__n.common { color: var(--text); }
.odd__n.rare   { color: var(--peach); }
.odd__n.epic   { color: var(--gold); }
.odd__l { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 9px; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--common { background: var(--text); }
.dot--rare   { background: var(--peach); }
.dot--epic   { background: var(--gold); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 18%, transparent); }
.odd__pct { font-size: 0.5em; vertical-align: super; color: var(--muted); -webkit-text-stroke: 0; }

.fair-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 44px; margin-top: 40px; }
@media (max-width: 720px) { .fair-points { grid-template-columns: 1fr; } }
.fair-point { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.fair-point__mark { color: var(--success); font-family: var(--mono); margin-top: 2px; }
.fair-point b { display: block; font-weight: 700; }
.fair-point p { color: var(--muted); margin-top: 5px; }

/* ============================================================================
   GALLERY
   ========================================================================== */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 240px);
  gap: 20px;
  margin-top: 44px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.shot {
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background: var(--ticket);
  aspect-ratio: 1320 / 2868;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================================
   PRICING
   ========================================================================== */
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
@media (max-width: 720px) { .pricing__grid { grid-template-columns: 1fr; } }
.plan { position: relative; background: var(--ticket); border: 1px solid var(--border); border-radius: 4px; padding: clamp(24px, 4vw, 36px); }
.plan--best { border-color: var(--fire); }
.plan__flag { position: absolute; top: -1px; right: -1px; background: var(--fire); color: var(--on-fire); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-bottom-left-radius: 4px; }
.plan__name { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.plan__price { font-family: var(--poster); font-style: italic; font-weight: 900; font-size: clamp(2.6rem, 7vw, 3.6rem); line-height: 1; margin: 12px 0 2px; }
.plan__price small { font-family: var(--ui); font-style: normal; font-weight: 400; font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.plan__save { color: var(--success); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.04em; }
.plan__list { list-style: none; padding: 0; margin: 22px 0 26px; }
.plan__list li { padding: 9px 0; border-top: 1px dotted var(--border); color: var(--text); display: flex; gap: 12px; }
.plan__list li::before { content: "+"; color: var(--fire); font-family: var(--mono); }

/* free-trial timeline — mirrors the in-app paywall */
.trial { margin-top: 44px; }
.trial__rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 48px); margin-top: 22px; }
@media (max-width: 640px) { .trial__rows { grid-template-columns: 1fr; gap: 0; } }
.trial__step { position: relative; padding-block: 4px; }
@media (min-width: 641px) {
  .trial__step + .trial__step::before { content: ""; position: absolute; left: calc(-1 * clamp(11px, 2vw, 24px)); top: 4px; bottom: 4px; border-left: 2px dotted var(--border); }
}
@media (max-width: 640px) {
  .trial__step { padding: 18px 0; border-top: 2px dotted var(--border); }
  .trial__step:last-child { border-bottom: 2px dotted var(--border); }
}
.trial__day { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fire); }
.trial__txt { margin-top: 7px; font-weight: 700; color: var(--text); }
.trial__txt small { display: block; font-weight: 400; color: var(--muted); font-size: 0.92rem; margin-top: 3px; }

.disclosure { margin-top: 36px; background: var(--raised); border: 1px solid var(--border); border-radius: 4px; padding: clamp(20px, 3vw, 28px); }
.disclosure h4 { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--peach); margin-bottom: 12px; }
.disclosure p { color: var(--muted); font-size: 0.92rem; }
.disclosure p + p { margin-top: 10px; }
.disclosure a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { margin-top: 40px; border-top: 2px dotted var(--border); }
.faq details { border-bottom: 2px dotted var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--poster);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--mono); color: var(--fire); font-size: 1.6rem; font-style: normal; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 44px 24px 0; max-width: 70ch; }
.faq details a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================================
   FINAL CTA
   ========================================================================== */
.finalcta { text-align: center; }
.finalcta .ticket { max-width: 760px; margin-inline: auto; text-align: left; }
.finalcta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }

/* ============================================================================
   LEGAL / DOC PAGES
   ========================================================================== */
.doc { padding-block: clamp(48px, 7vw, 88px); }
.doc__head { max-width: var(--maxw); }
.doc__title { margin: 14px 0 10px; }
.doc__date { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.doc__body { max-width: 74ch; margin-top: 40px; }
.doc__body h2 { font-family: var(--poster); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 44px 0 14px; letter-spacing: -0.01em; }
.doc__body h3 { font-family: var(--ui); font-weight: 700; font-size: 1.12rem; margin: 26px 0 8px; color: var(--text); }
.doc__body p, .doc__body li { color: var(--muted); }
.doc__body p { margin: 12px 0; }
.doc__body ul { margin: 12px 0; padding-left: 22px; }
.doc__body li { margin: 7px 0; }
.doc__body a { color: var(--fire); text-decoration: underline; text-underline-offset: 3px; }
.doc__body strong { color: var(--text); font-weight: 700; }
.doc__body .perf { margin: 40px 0; }
.callout { background: var(--sheet); border: 1px solid var(--border); border-left: 3px solid var(--fire); border-radius: 4px; padding: 18px 22px; margin: 22px 0; }
.callout p { color: var(--text); }
.toc { font-family: var(--mono); font-size: 0.82rem; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--text); }

/* support specifics */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
@media (max-width: 720px) { .support-grid { grid-template-columns: 1fr; } }
.support-card { background: var(--ticket); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.support-card h3 { font-family: var(--poster); font-style: italic; font-weight: 900; text-transform: uppercase; font-size: 1.4rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.support-card p { color: var(--muted); }
.support-card a.mail { color: var(--fire); font-family: var(--mono); font-size: 0.95rem; text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 2px dotted var(--border); position: relative; }
.site-footer::before, .site-footer::after {
  content: ""; position: absolute; top: -10px; width: 18px; height: 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 50%;
}
.site-footer::before { left: -9px; }
.site-footer::after  { right: -9px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 56px 40px; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand .lead { margin-top: 16px; font-size: 0.98rem; }
.footer__col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: var(--text); font-size: 0.96rem; transition: color .2s; }
.footer__col a:hover { color: var(--fire); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-block: 28px 40px; border-top: 1px dotted var(--border); }
.footer__bottom .barcode { width: 200px; }
.footer__legal { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

/* ============================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.hide-sm { }
@media (max-width: 560px) { .hide-sm { display: none; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
