/* ── Florana public site ──────────────────────────────────────────────────────
   Clean marketplace — mirrors the app: white canvas, raspberry-rose primary,
   sage freshness pills, fully-rounded chips, photo-forward listing cards. */

:root {
  --canvas: #FBF9FA;
  --paper: #FFFFFF;
  --ink: #1A1216;
  --ink2: #6E5C66;
  --ink3: #A2939B;
  --ink-step: #4A3B43;
  --line: #ECE4E8;
  --line-strong: #E4DBDF;
  --line-soft: #F1EAEE;
  --rose: #D94A77;
  --rose-deep: #C23464;
  --rose-ink: #9E2350;
  --rose-soft: #FBE9EF;
  --rose-tint: #FDF1F5;
  --sage: #2E9E6B;
  --sage-deep: #1F8456;
  --sage-soft: #E9F5EF;
  --sage-tint: #EFF7F2;
  --amber: #E0902F;
  --amber-soft: #FBEFD9;
  --red: #E0483F;
  --red-soft: #FBE4E2;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(42, 30, 38, .05), 0 10px 24px -18px rgba(42, 30, 38, .22);
  --shadow-card: 0 18px 40px -24px rgba(42, 30, 38, .25);
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--rose-soft); color: var(--rose-ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* film grain over everything, very faint */
.grain {
  position: fixed; inset: -50%; z-index: 80; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--canvas) 84%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand svg { width: 30px; height: 30px; }
.brand b { font: 600 1.32rem var(--serif); letter-spacing: .01em; }
.brand-logo { height: 32px; width: auto; display: block; }
.topnav { display: flex; gap: 26px; margin-left: 12px; }
.topnav a { font: 500 .9rem/1 var(--sans); color: var(--ink2); padding: 8px 2px; transition: color .2s; }
.topnav a:hover { color: var(--rose-deep); }
.top-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px; background: var(--paper); }
.lang a {
  font: 600 .72rem/1 var(--sans); letter-spacing: .08em; padding: 6px 11px;
  border-radius: 999px; color: var(--ink3); transition: color .2s, background .2s;
}
.lang a.on { background: var(--ink); color: #fff; }
.lang a:not(.on):hover { color: var(--ink); }
.topbar.scrolled { background: color-mix(in srgb, var(--canvas) 94%, transparent); box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(42, 30, 38, .4); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; font: 600 .94rem/1 var(--sans); cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}
.btn-primary {
  background: var(--rose-deep); color: #fff; padding: 15px 27px;
  box-shadow: 0 12px 26px -12px rgba(194, 52, 100, .55);
}
.btn-primary:hover { background: var(--rose-ink); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink); padding: 14px 24px; }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); }
.btn-small { padding: 10px 18px; font-size: .84rem; }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 6px; }

/* ── shared section header ── */
section { scroll-margin-top: 76px; }
.sec { padding: 76px 0; }
.eyebrow {
  font: 600 .74rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink3); margin: 0;
}
.sec-title { font: 400 clamp(1.9rem, 3.4vw, 2.7rem)/1.1 var(--serif); letter-spacing: -.03em; text-wrap: balance; margin: 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sec-link { display: inline-flex; align-items: center; gap: 6px; font: 600 .88rem/1 var(--sans); color: var(--rose-deep); white-space: nowrap; }
.sec-link svg { width: 15px; height: 15px; transition: transform .2s; }
.sec-link:hover svg { transform: translateX(3px); }

/* scroll reveal (only when JS present — html.js set inline in <head>) */
.js [data-reveal] { opacity: 0; transform: translateY(16px); }
.js [data-reveal].in { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--d, 0) * 80ms); }

/* ── hero (centered) ── */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 120px 0 0; overflow: clip; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 70% at 50% -10%, #FBEEF3 0%, rgba(251,249,250,0) 60%); }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow { display: inline-block; }
.hero-h1 { font: 400 clamp(3rem, 8.2vw, 7rem)/0.98 var(--serif); letter-spacing: -.035em; margin: 26px 0 0; text-wrap: balance; }
.hero-h1 em { display: block; font-style: italic; color: var(--rose-deep); }
.hero-lede { font: 400 clamp(1rem, 1.35vw, 1.15rem)/1.62 var(--sans); color: var(--ink2); max-width: 33rem; margin: 26px auto 0; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.hero-cue { display: flex; justify-content: center; color: var(--ink3); margin-top: 56px; padding-bottom: 44px; }
.hero-cue svg { animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(7px); opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-inner > * { animation: rise .9s cubic-bezier(.22,.7,.2,1) backwards; }
.hero-inner > :nth-child(1) { animation-delay: .05s; }
.hero-inner > :nth-child(2) { animation-delay: .16s; }
.hero-inner > :nth-child(3) { animation-delay: .3s; }
.hero-inner > :nth-child(4) { animation-delay: .42s; }

/* ── cinematic "open" beat: one bouquet expands to fill the viewport ── */
.open { position: relative; height: 240vh; }
.open-stick { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.open-frame { position: relative; width: 42vw; height: 58vh; border-radius: 26px; overflow: hidden; margin: 0; will-change: width, height, border-radius; }
.open-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); will-change: transform; }
.open-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,16,.68) 0%, rgba(20,12,16,.12) 52%, rgba(20,12,16,.3) 100%); }
.open-copy { position: absolute; inset: auto 0 0 0; padding: 0 6vw 9vh; text-align: center; color: #fff; opacity: 0; will-change: opacity, transform; }
.open-lead { font: 400 clamp(1.5rem, 3.4vw, 2.9rem)/1.18 var(--serif); letter-spacing: -.02em; margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.open-sub { font: 400 clamp(.95rem, 1.3vw, 1.08rem)/1.6 var(--sans); color: rgba(255,255,255,.72); margin: 18px auto 0; max-width: 34ch; }

/* ── how it works: two seller types ── */
.how-sub { font: 400 1.05rem/1.62 var(--sans); color: var(--ink2); max-width: 42ch; margin: 20px 0 0; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 60px; }
.how-card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 38px 36px 34px; }
.how-kind { display: flex; align-items: center; gap: 10px; font: 500 .74rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.how-dot { width: 7px; height: 7px; border-radius: 999px; }
.how-card.private .how-kind { color: var(--rose-ink); }
.how-card.private .how-dot { background: var(--rose-deep); }
.how-card.shop .how-kind { color: var(--sage-deep); }
.how-card.shop .how-dot { background: var(--sage-deep); }
.how-card h3 { font: 400 1.65rem/1.2 var(--serif); letter-spacing: -.02em; margin: 18px 0 0; }
.how-note { font: 400 .95rem/1.6 var(--sans); color: var(--ink2); margin: 12px 0 0; }
.how-card ol { list-style: none; margin: 30px 0 0; }
.how-card li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.how-num { font: 400 italic 1.15rem/1.3 var(--serif); }
.how-card.private .how-num { color: #D9A0B7; }
.how-card.shop .how-num { color: #8FC4A9; }
.how-card li p { font: 400 .92rem/1.55 var(--sans); color: var(--ink-step); margin: 0; }

/* ── horizontal listings rail (scroll-scrubbed) ── */
.rail { position: relative; height: 300vh; }
.rail-stick { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.rail-stick .eyebrow { margin-bottom: 16px; }
.rail-view { margin-top: 48px; overflow: hidden; }
.rail-track { display: flex; gap: 18px; padding-left: max(24px, calc((100vw - var(--wrap)) / 2 + 24px)); will-change: transform; }
.rail-card { flex: 0 0 268px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.rail-img { position: relative; aspect-ratio: 4 / 5; background: var(--rose-soft); overflow: hidden; }
.rail-img img { width: 100%; height: 100%; object-fit: cover; }
.rail-fresh { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: var(--sage-deep); font: 500 .7rem/1 var(--sans); padding: 6px 10px; border-radius: 999px; }
.rail-fresh .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--sage); }
.rail-fresh.amber { color: #9A6620; }
.rail-fresh.amber .dot { background: var(--amber); }
.rail-b { padding: 16px 18px 20px; }
.rail-b .price { font: 500 1.02rem/1 var(--sans); color: var(--ink); }
.rail-title { font: 400 .88rem/1.4 var(--sans); color: var(--ink2); margin-top: 7px; }
.rail-loc { font: 400 .78rem/1 var(--sans); color: var(--ink3); margin-top: 10px; }
.rail-more { display: grid; place-items: center; border: 1px dashed var(--line-strong); background: transparent; padding: 30px; text-align: center; }
.rail-more-title { display: block; font: 400 1.25rem/1.3 var(--serif); color: var(--ink); }
.rail-more-link { display: inline-block; font: 500 .85rem/1 var(--sans); color: var(--rose-deep); margin-top: 14px; }
.rail-progress { margin-top: 34px; height: 2px; background: var(--line); background-clip: content-box; border-radius: 999px; }
.rail-progress > i { display: block; height: 100%; width: 12%; background: var(--rose-deep); border-radius: 999px; will-change: transform; }

/* ── freshness timer (scroll-scrubbed, dark) ── */
.fresh { position: relative; height: 220vh; background: var(--ink); color: #fff; }
.fresh-stick { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.fresh-inner { max-width: 900px; text-align: center; }
.fresh .eyebrow { color: #B79AA7; }
.fresh .sec-title { color: #fff; margin-top: 20px; }
.fresh-track { margin-top: 70px; }
.fresh-bar { position: relative; height: 3px; background: rgba(255,255,255,.14); border-radius: 999px; }
.fresh-bar > i:first-child { position: absolute; inset: 0 auto 0 0; width: 0%; background: linear-gradient(90deg, var(--sage), var(--amber) 62%, var(--red)); border-radius: 999px; }
.fresh-dot { position: absolute; top: 50%; left: 0%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.1); }
.fresh-labels { display: flex; justify-content: space-between; margin-top: 20px; font: 500 .76rem/1 var(--sans); letter-spacing: .04em; }
.fresh-labels .s-fresh { color: #7ED2A8; }
.fresh-labels .s-fade { color: #E9B96C; }
.fresh-labels .s-out { color: #EB8A82; }
.fresh-note { font: 400 1.02rem/1.6 var(--sans); color: rgba(255,255,255,.6); margin: 46px auto 0; max-width: 40ch; }

/* ── app tour (pinned phone crossfade) ── */
.tour { position: relative; height: 340vh; }
.tour-stick { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.tour-copy { position: relative; }
.tour-copy .eyebrow { margin-bottom: 26px; }
.tour-beats { position: relative; min-height: 200px; }
.tour-beat { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity .5s cubic-bezier(.22,.7,.2,1), transform .5s cubic-bezier(.22,.7,.2,1); }
.tour-beat.on { opacity: 1; transform: none; }
.tour-beat h2 { font: 400 clamp(1.8rem, 3.6vw, 2.9rem)/1.1 var(--serif); letter-spacing: -.03em; margin: 0; }
.tour-beat p { font: 400 1.02rem/1.62 var(--sans); color: var(--ink2); margin: 18px 0 0; max-width: 34ch; }
.tour-dots { display: flex; gap: 7px; margin-top: 34px; }
.tour-dot { width: 26px; height: 3px; border-radius: 999px; background: var(--line-strong); transition: background .4s; }
.tour-dot.on { background: var(--rose-deep); }
.tour-stage { display: grid; place-items: center; }
.tour-phone { position: relative; width: min(300px, 72%); aspect-ratio: 300 / 620; border-radius: 42px; padding: 8px; background: #171015; box-shadow: 0 50px 90px -40px rgba(26,18,22,.6), 0 0 0 1px rgba(26,18,22,.08); }
.tour-shot { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 34px; object-fit: cover; opacity: 0; transition: opacity .55s cubic-bezier(.22,.7,.2,1); }
.tour-shot.on { opacity: 1; }

/* ── mission ── */
.mission { background: var(--paper); border-top: 1px solid var(--line); }
.mission-head { max-width: 46rem; }
.mission .sec-title { margin-top: 22px; }
.mission-lede { font: 400 clamp(1.05rem, 1.5vw, 1.22rem)/1.68 var(--sans); color: var(--ink2); margin-top: 26px; text-wrap: pretty; }
.mission-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 76px; border-top: 1px solid var(--line); }
.mission-pillar { padding: 34px 32px; border-left: 1px solid var(--line); }
.mission-pillar:first-child { padding-left: 0; border-left: 0; }
.mission-pillar:last-child { padding-right: 0; }
.mission-pillar b { display: block; font: 400 1.3rem/1.25 var(--serif); letter-spacing: -.01em; }
.mission-pillar p { font: 400 .93rem/1.6 var(--sans); color: var(--ink2); margin: 10px 0 0; }

/* ── faq ── */
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 60px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: none; border: 0; cursor: pointer; text-align: left; padding: 26px 0; font: 400 1.12rem/1.4 var(--serif); color: var(--ink); }
.faq-ic { flex: none; width: 11px; height: 11px; border-right: 1.5px solid var(--ink3); border-bottom: 1.5px solid var(--ink3); transform: rotate(45deg); transition: transform .35s cubic-bezier(.22,.7,.2,1); margin-bottom: 4px; }
.faq-item.open .faq-ic { transform: rotate(225deg); margin-bottom: -2px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,.7,.2,1); }
.faq-a p { font: 400 .96rem/1.65 var(--sans); color: var(--ink2); margin: 0 0 26px; max-width: 54ch; }

/* ── download band ── */
.dl-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; text-align: center; padding: 88px 0; }
.dl-band .blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.dl-b1 { width: 480px; height: 480px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(217,74,119,.4), transparent 70%); }
.dl-b2 { width: 420px; height: 420px; bottom: -180px; right: -100px; background: radial-gradient(circle, rgba(46,158,107,.3), transparent 70%); }
.dl-band .wrap { position: relative; z-index: 2; }
.dl-band .eyebrow { color: #F2A2C0; }
.dl-band .sec-title { color: #fff; }
.dl-band .dl-sub { color: #C9BAC2; margin-top: 14px; font-size: 1.02rem; }
.store-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.store {
  position: relative; display: inline-flex; align-items: center; gap: 12px; text-align: left;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
  border-radius: 16px; padding: 13px 24px 13px 18px; transition: background .25s, transform .25s;
}
.store:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex: none; }
.store small { display: block; font: 500 .62rem/1.2 var(--sans); letter-spacing: .04em; color: #C9BAC2; text-transform: uppercase; }
.store b { font: 600 1.02rem/1.25 var(--sans); color: #fff; }
.store.soon { opacity: .55; pointer-events: none; }
.soon-tag {
  position: absolute; top: -9px; right: 12px; background: var(--amber); color: var(--ink);
  font: 700 .58rem/1 var(--sans); letter-spacing: .06em; padding: 4px 8px; border-radius: 999px; text-transform: uppercase;
}

/* ── footer ── */
footer { padding: 58px 0 42px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
.foot-about { font: 400 .9rem/1.6 var(--sans); color: var(--ink2); max-width: 30ch; margin-top: 14px; }
footer h4 { font: 700 .7rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink3); margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { font: 500 .9rem var(--sans); color: var(--ink2); transition: color .2s; }
footer ul a:hover { color: var(--rose-deep); }
.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px;
  font: 500 .8rem var(--sans); color: var(--ink3);
}

/* ── legal pages ── */
.legal { max-width: 720px; margin: 0 auto; padding: 72px 24px 96px; }
.legal h1 { font: 500 clamp(2rem, 4vw, 2.8rem)/1.15 var(--serif); margin-bottom: 10px; }
.legal .upd { font: 500 .82rem var(--sans); color: var(--ink3); margin-bottom: 36px; }
.legal p { font: 400 1rem/1.75 var(--sans); color: var(--ink2); margin-bottom: 18px; white-space: pre-line; }

/* ── responsive ──
   The pinned "cinematic" sections (open / rail / fresh / tour) are a desktop
   pointer experience. On narrow screens — and for reduced-motion users — they
   un-pin into static, fully-readable blocks (the rail becomes a normal swipe). */
@media (max-width: 920px) {
  .topnav { display: none; }
  .sec { padding: 60px 0; }
  .hero { min-height: 0; padding: 100px 0 0; }
  .how-grid, .foot-grid, .mission-pillars { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 22px; }
  .mission-pillar { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0; }
  .mission-pillar:first-child { border-top: 0; padding-top: 34px; }

  .open, .rail, .fresh, .tour { height: auto !important; }
  .open-stick, .rail-stick, .fresh-stick, .tour-stick { position: static !important; height: auto !important; }
  .open-stick { display: block; }
  .open-frame { width: 100% !important; height: 58vh !important; border-radius: 0 !important; }
  .open-frame img { transform: none !important; }
  .open-copy { opacity: 1 !important; transform: none !important; }
  .rail-stick { padding: 44px 0; }
  .rail-view { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rail-track { transform: none !important; padding: 0 24px; }
  .rail-progress { display: none; }
  .fresh-stick { padding: 78px 0; }
  .fresh-bar > i:first-child { width: 100% !important; }
  .fresh-dot { display: none; }
  .tour-stick { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; text-align: center; }
  .tour-stage { order: -1; }
  .tour-beats { position: static; min-height: 0; }
  .tour-beat { position: static; opacity: 1 !important; transform: none !important; }
  .tour-beat + .tour-beat { margin-top: 24px; }
  .tour-beat p { margin-inline: auto; }
  .tour-dots { display: none; }
  .tour-shot { position: static; display: none; width: 100%; height: 100%; }
  .tour-shot.on { display: block; opacity: 1 !important; }
  .dl-band { padding: 72px 0; }
}
@media (max-width: 460px) {
  .hero { padding: 88px 0 0; }
  .hero-cta .btn { flex: 1 1 100%; }
  .lang a { padding: 6px 9px; }
  .how-card { padding: 30px 24px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .open, .rail, .fresh, .tour { height: auto !important; }
  .open-stick, .rail-stick, .fresh-stick, .tour-stick { position: static !important; height: auto !important; }
  .open-stick { display: block; }
  .open-frame { width: 100% !important; height: 62vh !important; border-radius: 0 !important; }
  .open-frame img { transform: none !important; }
  .open-copy { opacity: 1 !important; transform: none !important; }
  .rail-view { overflow-x: auto; }
  .rail-track { transform: none !important; padding: 0 24px; }
  .rail-progress { display: none; }
  .fresh-bar > i:first-child { width: 100% !important; }
  .fresh-dot { display: none; }
  .tour-stick { grid-template-columns: 1fr; gap: 30px; }
  .tour-beats { position: static; min-height: 0; }
  .tour-beat { position: static; opacity: 1 !important; transform: none !important; }
  .tour-beat + .tour-beat { margin-top: 24px; }
  .tour-dots { display: none; }
  .tour-shot { position: static; display: none; width: 100%; height: 100%; }
  .tour-shot.on { display: block; opacity: 1 !important; }
}
