/* ============================================================
   Locora — marketing site
   Brand: Locora Green / Terracotta / Gold on warm cream
   ============================================================ */

:root {
  --green: #3d6b4f;
  --green-dark: #2e5239;
  --green-light: #5a9168;
  --sage: #6b8f71;
  --sage-tint: #e6f0e8;
  --terracotta: #c4654a;
  --terracotta-tint: #f7e3dc;
  --gold: #d4a853;
  --gold-tint: #f7ebd2;
  --cream: #faf7f2;
  --cream-deep: #f3ede3;
  --ink: #23261f;
  --ink-soft: #5c5f57;
  --ink-faint: #8a8580;
  --white: #ffffff;
  --line: #e7e0d5;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(35, 38, 31, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(35, 38, 31, 0.16);
  --shadow-lg: 0 30px 70px -30px rgba(35, 38, 31, 0.3);

  --shell: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: Fraunces, 'Iowan Old Style', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 22px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* ── Background decoration ───────────────────────────────── */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blob--sage {
  width: 46vw;
  height: 46vw;
  min-width: 340px;
  min-height: 340px;
  background: rgba(107, 143, 113, 0.28);
  top: -14vw;
  left: -12vw;
}

.blob--gold {
  width: 38vw;
  height: 38vw;
  min-width: 300px;
  min-height: 300px;
  background: rgba(212, 168, 83, 0.26);
  top: 4vw;
  right: -14vw;
}

.blob--terracotta {
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  background: rgba(196, 101, 74, 0.14);
  bottom: -12vw;
  left: 32vw;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  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.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease),
    backdrop-filter 0.25s var(--ease);
}

.site-header.is-stuck {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(231, 224, 213, 0.9), var(--shadow-sm);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--gold-tint);
  box-shadow: var(--shadow-sm);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.site-nav {
  display: none;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: right 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after {
  right: 0;
}

.site-header .btn {
  margin-left: auto;
}

.site-nav + .btn {
  margin-left: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.94rem;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(61, 107, 79, 0.7);
}

.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn--cream {
  background: var(--cream);
  color: var(--green-dark);
}

.btn--cream:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  display: grid;
  gap: 48px;
  padding-top: 46px;
  padding-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  margin-bottom: 22px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-dark);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 4px rgba(90, 145, 104, 0.22);
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.underlined {
  position: relative;
  display: inline-block;
  color: var(--green);
  white-space: nowrap;
}

.squiggle {
  position: absolute;
  left: -2%;
  bottom: -0.28em;
  width: 104%;
  height: auto;
  color: var(--gold);
  overflow: visible;
}

.hero-lede {
  max-width: 34rem;
  font-size: clamp(1.03rem, 1.6vw, 1.16rem);
  color: var(--ink-soft);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  background: var(--sage-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%233D6B4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

/* ── Store buttons ───────────────────────────────────────── */

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  scroll-margin-top: 100px;
}

.store-row--center {
  justify-content: center;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 16px;
  min-width: 208px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.store-btn:not(.is-soon):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.store-btn.is-soon {
  cursor: default;
  background: #34382f;
}

.store-glyph {
  width: 26px;
  height: 26px;
  flex: none;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-label {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
}

.store-name {
  font-size: 1.06rem;
  font-weight: 600;
}

.store-tag {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: #3a2c10;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-btn.is-live .store-tag {
  display: none;
}

/* ── Phone mockup ────────────────────────────────────────── */

.hero-art {
  display: flex;
  justify-content: center;
}

.device-wrap {
  position: relative;
  width: min(310px, 78vw);
}

.device {
  position: relative;
  padding: 11px;
  border-radius: 44px;
  background: linear-gradient(160deg, #33372e 0%, #1e211b 60%, #33372e 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.device-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  border-radius: var(--r-pill);
  background: #14170f;
  z-index: 2;
}

.device-screen {
  border-radius: 34px;
  background: var(--cream);
  padding: 12px 13px 10px;
  overflow: hidden;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 12px;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--ink);
}

.app-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.app-signal i {
  width: 3px;
  border-radius: 1px;
  background: var(--ink);
}

.app-signal i:nth-child(1) {
  height: 5px;
}
.app-signal i:nth-child(2) {
  height: 8px;
}
.app-signal i:nth-child(3) {
  height: 11px;
}

.app-hello {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.app-sub {
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.app-search {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 14px;
  padding: 8px 11px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.app-search svg {
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--ink-faint);
}

.app-label {
  margin-bottom: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.app-card,
.app-row,
.app-event {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.app-card {
  margin-bottom: 14px;
  border: 1px solid var(--gold-tint);
}

.app-row {
  margin-bottom: 7px;
}

.app-thumb {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
}

.app-thumb--a {
  background: linear-gradient(140deg, var(--terracotta), var(--gold));
}
.app-thumb--b {
  background: linear-gradient(140deg, #b4864f, var(--gold-tint));
}
.app-thumb--c {
  background: linear-gradient(140deg, var(--green-light), var(--sage-tint));
}

.app-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-card-body strong {
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-body em {
  font-style: normal;
  font-size: 0.63rem;
  color: var(--ink-faint);
}

.app-chip {
  margin-left: auto;
  flex: none;
  padding: 3px 7px;
  border-radius: var(--r-pill);
  background: var(--gold-tint);
  color: #6b4d14;
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.app-event {
  margin-top: 14px;
  border: 1px solid var(--sage-tint);
}

.app-event-date {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  line-height: 1;
}

.app-event-date b {
  font-size: 0.5rem;
  letter-spacing: 0.06em;
}

.app-event-date i {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-rsvp {
  display: flex;
  gap: 6px;
  margin-top: 7px;
}

.app-rsvp-btn {
  flex: 1;
  padding: 7px 0;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.63rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.app-rsvp-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.app-tabs {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 11px 14px 4px;
  border-top: 1px solid var(--line);
}

.app-tabs i {
  width: 18px;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
}

.app-tabs i.is-active {
  background: var(--green);
}

/* Floating stickers */
.sticker {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 0.72rem;
  color: var(--ink-soft);
  animation: float 6s ease-in-out infinite;
}

.sticker b {
  font-size: 0.8rem;
  color: var(--ink);
}

.sticker--event {
  left: -4%;
  top: -4%;
  transform: rotate(-6deg);
  border-left: 4px solid var(--terracotta);
  animation-delay: 0.9s;
}

.sticker--follow {
  right: -4%;
  bottom: -3%;
  transform: rotate(5deg);
  border-left: 4px solid var(--gold);
  animation-delay: 1.8s;
}

/* ── Sections ────────────────────────────────────────────── */

.section {
  padding-block: 66px;
  scroll-margin-top: 92px;
}

.section--tight {
  padding-block: 40px 86px;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 40px;
}

.kicker {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.kicker--light {
  color: var(--gold);
}

.section-head h2,
.final h2,
.cta-card h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-lede {
  font-size: 1.06rem;
  color: var(--ink-soft);
}

/* ── Bento tiles ─────────────────────────────────────────── */

.bento {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.tile {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.tile::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--terracotta));
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tile:hover::before {
  opacity: 1;
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.tile-icon svg {
  width: 26px;
  height: 26px;
}

.tile-icon--green {
  background: var(--sage-tint);
  color: var(--green);
}
.tile-icon--gold {
  background: var(--gold-tint);
  color: #a97c1e;
}
.tile-icon--terracotta {
  background: var(--terracotta-tint);
  color: var(--terracotta);
}
.tile-icon--sage {
  background: var(--sage-tint);
  color: var(--sage);
}

.tile h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.tile p {
  color: var(--ink-soft);
  font-size: 0.99rem;
}

.tile-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.tile-list li {
  display: flex;
  gap: 9px;
}

.tile-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Steps ───────────────────────────────────────────────── */

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--white), var(--cream-deep));
  border: 1px solid var(--line);
}

.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.step h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ── Business CTA card ───────────────────────────────────── */

.cta-card {
  display: grid;
  gap: 34px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 55%, #4a7d5b 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  color: var(--white);
  max-width: 22ch;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta-facts {
  display: grid;
  gap: 12px;
  align-content: center;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-facts li {
  display: flex;
  gap: 11px;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-facts b {
  color: var(--gold);
}

/* ── Final CTA ───────────────────────────────────────────── */

.final {
  max-width: 40rem;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 44px);
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.final p {
  margin-inline: auto;
  max-width: 34rem;
  color: var(--ink-soft);
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  margin-top: 20px;
  padding-top: 52px;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  display: grid;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 26rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-col a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-base {
  padding-block: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-faint);
}

/* ── Reveal animation ────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (min-width: 620px) {
  .bento,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile--wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 62px;
    padding-bottom: 70px;
    gap: 30px;
  }

  /* 6-column bento: 4+2 on the first row, 2+4 on the second */
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile {
    grid-column: span 2;
  }

  .tile--wide {
    grid-column: span 4;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  /* More room beside the device, so the stickers can hang further out */
  .sticker--event {
    left: -22%;
  }

  .sticker--follow {
    right: -20%;
  }

  .site-footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .store-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .device,
  .sticker {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
