/* VEASOFT — design tokens & base styles */

:root {
  /* type */
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* density (overridden by Tweaks) */
  --density: 1;
  --section-y: calc(120px * var(--density));
  --container: 1200px;

  /* radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* accent (overridden by Tweaks) */
  --accent: #3b82f6;
  --accent-fg: #ffffff;
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-line: color-mix(in srgb, var(--accent) 36%, transparent);

  /* motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* dark (default) */
:root, [data-theme="dark"] {
  --bg: #08080a;
  --bg-1: #0d0d10;
  --bg-2: #131318;
  --bg-3: #1a1a20;
  --line: rgba(255,255,255,.07);
  --line-strong: rgba(255,255,255,.14);
  --fg: #f4f4f5;
  --fg-1: #e4e4e7;
  --fg-2: #a1a1aa;
  --fg-3: #71717a;
  --shadow-sm: 0 1px 0 rgba(255,255,255,.04) inset, 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 1px 0 rgba(255,255,255,.05) inset, 0 30px 60px rgba(0,0,0,.55);
  --grid-line: rgba(255,255,255,.04);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #fafafa;
  --bg-1: #ffffff;
  --bg-2: #ffffff;
  --bg-3: #f4f4f5;
  --line: rgba(10,10,12,.08);
  --line-strong: rgba(10,10,12,.14);
  --fg: #0a0a0c;
  --fg-1: #18181b;
  --fg-2: #52525b;
  --fg-3: #71717a;
  --shadow-sm: 0 1px 0 rgba(255,255,255,.6) inset, 0 1px 2px rgba(10,10,12,.06);
  --shadow-md: 0 1px 0 rgba(255,255,255,.7) inset, 0 8px 24px rgba(10,10,12,.06);
  --shadow-lg: 0 1px 0 rgba(255,255,255,.8) inset, 0 30px 60px rgba(10,10,12,.10);
  --grid-line: rgba(10,10,12,.05);
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--fg);
  font-size: 15.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  min-height: 100vh;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
::selection { background: var(--accent); color: var(--accent-fg); }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* type scale */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.h1 {
  font-size: clamp(40px, 6.2vw, 80px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.muted { color: var(--fg-2); }
.dim   { color: var(--fg-3); }
.mono  { font-family: var(--font-mono); }

/* layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--tight { padding-top: calc(var(--section-y) * .55); padding-bottom: calc(var(--section-y) * .55); }
.section--bare  { padding-top: 0; padding-bottom: 0; }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* page background grain (subtle) */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 75%);
  opacity: .55;
}

/* buttons */
.btn {
  --bd: var(--line-strong);
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: transparent;
  color: var(--fg);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--bg-2); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn--primary:hover { background: var(--fg-1); }
.btn--accent {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}
.btn--accent:hover { filter: brightness(1.06); background: var(--accent); }
.btn--ghost { border-color: transparent; }
.btn--ghost:hover { background: var(--bg-2); }
.btn--sm { height: 32px; padding: 0 12px; font-size: 13px; }
.btn--lg { height: 46px; padding: 0 22px; font-size: 15px; }

/* card */
.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* link with underline animation */
.link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fg);
  font-weight: 500;
  position: relative;
}
.link::after {
  content: ""; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.link:hover::after { transform: scaleX(1); }

/* tag / chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  background: var(--bg-1);
}
.chip__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* fade-in on mount */
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }
.fade-up { animation: fadeUp .6s var(--ease) both; }

/* phone float */
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes cardFloatA {
  0%, 100% { transform: translate(-58%, -2px) rotate(-7deg); }
  50% { transform: translate(-58%, -12px) rotate(-7deg); }
}
@keyframes cardFloatB {
  0%, 100% { transform: translate(36%, 4px) rotate(5deg); }
  50% { transform: translate(36%, -8px) rotate(5deg); }
}

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__links {
  display: flex; align-items: center; gap: 6px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg-2);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__link:hover { color: var(--fg); background: var(--bg-2); }
.nav__link.is-active { color: var(--fg); background: var(--bg-2); }
.nav__right { display: flex; align-items: center; gap: 8px; }

/* logo */
.logo {
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 14px;
  display: inline-flex; align-items: center;
  text-transform: uppercase;
  gap: 0.65em;
  padding: 6px 8px;
  margin: -6px -8px;
  border-radius: 8px;
  transition: background-color .18s var(--ease);
}
.logo:hover { background: var(--bg-2); }
.logo::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0.15em;
  background: var(--accent);
  flex: 0 0 auto;
}

/* segmented (lang) */
.seg {
  display: inline-flex; padding: 3px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.seg button {
  border: 0; background: transparent; color: var(--fg-2);
  padding: 4px 10px; border-radius: 999px; cursor: pointer;
  text-transform: uppercase;
}
.seg button.is-active { background: var(--bg-3); color: var(--fg); }

/* icon button */
.iconbtn {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-1);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease);
  color: var(--fg-2);
}
.iconbtn:hover { background: var(--bg-2); color: var(--fg); }

/* mobile menu sheet */
.sheet {
  position: fixed; inset: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
}
.sheet__close { position: absolute; top: 16px; right: 16px; }
.sheet__list { padding: 100px 28px 32px; display: flex; flex-direction: column; gap: 6px; }
.sheet__list a {
  font-size: 30px; font-weight: 500; letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}

/* footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 48px;
  margin-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-weight: 500;
}
.footer__col a:not(.logo) {
  display: block;
  padding: 5px 0;
  color: var(--fg-2);
  font-size: 14px;
}
.footer__col a:not(.logo):hover { color: var(--fg); }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* hero layout */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: var(--section-y);
}
.hero__copy { max-width: 620px; }
.hero__chip { margin-bottom: 28px; }
.hero__title { margin-bottom: 24px; }
.hero__lead { margin-bottom: 36px; max-width: 540px; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__stage {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .hero__stage { min-height: 460px; }
}

/* phone mockup */
.phone {
  --w: 280px;
  width: var(--w);
  aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: linear-gradient(180deg, #1f1f24, #0e0e12);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 0 0 1px rgba(0,0,0,.4),
    0 60px 100px -30px rgba(0,0,0,.65),
    0 24px 60px -20px rgba(0,0,0,.5);
  animation: phoneFloat 6.5s var(--ease) infinite;
}
[data-theme="light"] .phone {
  background: linear-gradient(180deg, #2a2a30, #15151a);
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--bg-1);
  overflow: hidden;
}
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 24px; background: #000; border-radius: 999px;
  z-index: 5;
}
.phone__statusbar {
  height: 44px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--fg-1);
}
.phone__statusbar > span:nth-child(1) { font-weight: 500; }

/* floating cards beside phone */
.float-card {
  position: absolute;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  width: 220px;
  font-size: 13px;
}
.float-card--a {
  top: 18%; left: 50%;
  animation: cardFloatA 7s var(--ease) infinite;
}
.float-card--b {
  bottom: 12%; right: 50%;
  animation: cardFloatB 8s var(--ease) infinite;
}

/* featured app */
.featured {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}
.featured::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(60% 80% at 100% 0%, var(--accent-soft), transparent 60%);
  pointer-events: none;
  opacity: .9;
}
.featured > * { position: relative; }
.featured__icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.featured__title { margin: 0 0 12px; }
.featured__desc { margin-bottom: 28px; max-width: 460px; }
.featured__row { display: flex; gap: 10px; flex-wrap: wrap; }
.featured__shots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 880px) {
  .featured { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}

/* apps grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .apps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .apps-grid { grid-template-columns: 1fr; } }

.app-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
  cursor: pointer;
}
.app-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.app-card__head { display: flex; gap: 14px; align-items: center; }
.app-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 56px;
}
.app-card__title { font-size: 16px; font-weight: 500; margin: 0; }
.app-card__sub { font-size: 13px; color: var(--fg-2); margin: 2px 0 0; }
.app-card__shot {
  height: 160px; border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.app-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--fg-3); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.app-card.ghost {
  border-style: dashed;
  background: transparent;
  cursor: default;
}
.app-card.ghost:hover { transform: none; border-color: var(--line); }

/* stripe placeholder */
.stripe {
  background:
    repeating-linear-gradient(
      135deg,
      var(--bg-2) 0 10px,
      var(--bg-3) 10px 20px
    );
  position: relative;
}
.stripe__label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* sudoku grid */
.sudoku {
  width: 100%; aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border: 1.5px solid var(--fg-1);
  border-radius: 6px;
  background: var(--bg-1);
  font-family: var(--font-mono);
  user-select: none;
}
.sudoku__cell {
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(10px, 1.6vw, 18px);
  color: var(--fg);
  aspect-ratio: 1;
}
.sudoku__cell.given { color: var(--fg); font-weight: 500; }
.sudoku__cell.user  { color: var(--accent); font-weight: 500; }
.sudoku__cell.hl-row { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.sudoku__cell.hl-col { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.sudoku__cell.hl-box { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.sudoku__cell.selected { background: color-mix(in srgb, var(--accent) 22%, transparent); }
.sudoku__cell.r3, .sudoku__cell.r6 { border-bottom: 1.5px solid var(--fg-1); }
.sudoku__cell.c3, .sudoku__cell.c6 { border-right: 1.5px solid var(--fg-1); }
.sudoku__cell.c8 { border-right: 0; }
.sudoku__cell.r8 { border-bottom: 0; }
.sudoku__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%; height: 100%;
  font-size: 8px;
  color: var(--fg-3);
}
.sudoku__notes span {
  display: flex; align-items: center; justify-content: center;
}

/* features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--bg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.feature__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature__title { font-size: 16px; font-weight: 500; margin: 0; }
.feature__desc  { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* carousel */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 32px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-1);
  aspect-ratio: 9/19.5;
}
.carousel__nav {
  display: flex; gap: 8px;
  position: absolute; top: -52px; right: 0;
}

/* support */
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px;
  display: flex; gap: 32px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
}
.support-card h2 { margin: 0 0 8px; }
.support-card p { margin: 0; color: var(--fg-2); max-width: 460px; }
.support-card__email {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--fg);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* faq list */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { font-weight: 500; }
.faq__a { color: var(--fg-2); }
@media (max-width: 720px) { .faq__item { grid-template-columns: 1fr; gap: 8px; } }

/* page sub-header (under nav) */
.subhead {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.crumbs a:hover { color: var(--fg); }
.crumbs__sep { padding: 0 8px; opacity: .6; }

/* store buttons */
.store {
  display: inline-flex; align-items: center; gap: 12px;
  height: 52px; padding: 0 20px 0 16px;
  min-width: 188px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #0a0a0c;
  color: #f4f4f5;
  cursor: pointer;
  transition: background-color .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
  text-align: left;
}
[data-theme="light"] .store {
  background: #0a0a0c;
  color: #f4f4f5;
  border-color: #0a0a0c;
}
.store:hover:not(.is-disabled) { background: #18181b; }
.store:active:not(.is-disabled) { transform: translateY(1px); }
.store__icon {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 26px;
}
.store__text { display: flex; flex-direction: column; line-height: 1.15; }
.store__top  {
  font-size: 10px;
  color: rgba(255,255,255,.65);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.store__name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 1px;
}
.store.is-disabled { opacity: .5; cursor: not-allowed; }
.store.is-disabled .store__name::after {
  content: "";
}

/* small utility */
.row { display: flex; gap: 10px; flex-wrap: wrap; }
.col { display: flex; flex-direction: column; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* hide on mobile */
@media (max-width: 880px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 881px) {
  .show-mobile { display: none !important; }
}
