/* ============================================================================
   SIMPLIYA — Marketing site design system
   Concept: the bahi-khata (shopkeeper's ledger) reimagined.
   Warm paper + plum ink + the brand purple→magenta signature + marigold accent.
   ========================================================================== */

:root {
  /* ---- Paper & ink -------------------------------------------------------- */
  --paper:        #FBF6EC;   /* warm cream base                  */
  --paper-2:      #F5EBDA;   /* sunk panel                       */
  --paper-line:   #E7D9C2;   /* hairline / ledger rule           */
  --ink:          #1C1018;   /* plum-black, primary text         */
  --ink-2:        #5C4A56;   /* secondary text                   */
  --ink-3:        #8A7886;   /* muted / captions                 */

  /* ---- Brand -------------------------------------------------------------- */
  --violet:       #8B31E0;
  --violet-deep:  #6A18C0;
  --magenta:      #EC1A6F;
  --pink:         #FF2E88;
  --marigold:     #F5A524;   /* warmth / Indian saffron accent   */
  --leaf:         #1F9D5B;   /* "paid" / success                 */

  /* ---- Dark plum (inverted sections) ------------------------------------- */
  --plum:         #170A1E;
  --plum-2:       #21102B;
  --plum-line:    #3A2147;

  --grad:         linear-gradient(125deg, var(--violet) 0%, var(--magenta) 62%, var(--pink) 100%);
  --grad-soft:    linear-gradient(125deg, rgba(139,49,224,.14), rgba(236,26,111,.14));

  --shadow-card:  0 1px 0 rgba(255,255,255,.6) inset, 0 24px 60px -28px rgba(46,12,52,.45);
  --shadow-soft:  0 18px 50px -30px rgba(46,12,52,.5);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Hanken Grotesk", -apple-system, system-ui, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

/* ============================================================================
   BASE
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* paper grain + faint ledger rules over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

::selection { background: var(--magenta); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============================================================================
   TYPOGRAPHY
   ========================================================================== */
.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--magenta);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.ink-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.serif-italic { font-style: italic; font-weight: 400; }

h1,h2,h3 { margin: 0; }
p { margin: 0; }

/* ============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  --r: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: var(--r);
  border: 0; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.2), box-shadow .25s, filter .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-grad {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 14px 30px -12px rgba(236,26,111,.6);
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(236,26,111,.75); filter: saturate(1.1); }

.btn-ink {
  color: var(--paper);
  background: var(--ink);
}
.btn-ink:hover { transform: translateY(-2px); background: #2c1a28; }

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* store buttons */
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-soft);
}
.store:hover { transform: translateY(-3px); }
.store small { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; font-family: var(--font-mono); line-height: 1; margin-bottom: 3px; }
.store strong { display: block; font-size: 17px; font-weight: 700; line-height: 1; }
.store svg { flex: none; }

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s, box-shadow .4s, padding .4s, border-color .4s;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251,246,236,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--paper-line);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -.02em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
  background: var(--grad); transition: right .3s; border-radius: 2px;
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-aura {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(70px); opacity: .55; border-radius: 50%;
}
.aura-1 { width: 520px; height: 520px; top: -120px; right: -120px; background: radial-gradient(circle, rgba(139,49,224,.55), transparent 65%); }
.aura-2 { width: 460px; height: 460px; bottom: -160px; left: -140px; background: radial-gradient(circle, rgba(236,26,111,.45), transparent 65%); }
.aura-3 { width: 300px; height: 300px; top: 40%; left: 42%; background: radial-gradient(circle, rgba(245,165,36,.28), transparent 65%); }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(42px, 5vw, 76px); }
.hero .sub { font-size: clamp(17px, 2vw, 26px); color: var(--ink-2); max-width: 40ch; margin-top: 26px; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--ink-2); font-size: 14.5px; }
.hero-trust .dots { display: flex; }
.hero-trust .dots span {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -9px;
  border: 2px solid var(--paper); background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px; font-family: var(--font-mono);
}
.hero-trust .dots span:nth-child(2){ background: linear-gradient(135deg,#F5A524,#EC1A6F); }
.hero-trust .dots span:nth-child(3){ background: linear-gradient(135deg,#1F9D5B,#8B31E0); }
.hero-trust .dots span:nth-child(4){ background: linear-gradient(135deg,#EC1A6F,#8B31E0); }

.hi-hindi { font-family: var(--font-display); font-weight: 400; font-style: italic; color: var(--magenta); }

/* phone mockup */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300/620;
  background: #0f0712; border-radius: 44px; padding: 12px;
  box-shadow: 0 50px 110px -40px rgba(40,8,46,.7), 0 0 0 2px rgba(0,0,0,.35);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 33px; overflow: hidden;
  background: var(--paper); position: relative;
  display: flex; flex-direction: column;
}
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0f0712; border-radius: 0 0 16px 16px; z-index: 5; }

.app-top { padding: 30px 18px 14px; background: var(--grad); color:#fff; }
.app-top .row { display:flex; justify-content: space-between; align-items: center; }
.app-top h4 { font-family: var(--font-body); font-weight: 800; font-size: 17px; }
.app-top .amt { font-family: var(--font-mono); font-size: 30px; font-weight: 500; margin-top: 12px; letter-spacing: -.02em; }
.app-top .amt small { font-size: 13px; opacity: .8; font-weight: 400; display:block; letter-spacing: .04em; }
.app-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.app-card {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 16px; padding: 12px 13px;
  display: flex; align-items: center; gap: 11px; box-shadow: 0 6px 18px -14px rgba(40,8,46,.5);
}
.app-card .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.app-card .t { font-weight: 700; font-size: 13.5px; }
.app-card .s { font-size: 11.5px; color: var(--ink-3); font-family: var(--font-mono); }
.app-card .right { margin-left: auto; text-align: right; }
.app-card .right .v { font-family: var(--font-mono); font-weight: 500; font-size: 14px; }
.app-card .badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; font-family: var(--font-mono); }
.b-paid { background: rgba(31,157,91,.12); color: var(--leaf); }
.b-due  { background: rgba(245,165,36,.16); color: #b9760a; }

.app-mic {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 64px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; z-index: 4;
  box-shadow: 0 14px 34px -10px rgba(236,26,111,.8);
}
.app-mic::before {
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border: 2px solid rgba(236,26,111,.6); animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0%{ transform: scale(1); opacity:.8 } 100%{ transform: scale(1.7); opacity:0 } }

/* floating chips around the phone */
.float {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--paper-line);
  border-radius: 16px; padding: 11px 14px; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600;
}
.float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; color:#fff; }
.float-1 { top: 8%; left: -42px; animation: floaty 5s ease-in-out infinite; }
.float-2 { bottom: 20%; right: -54px; animation: floaty 6s ease-in-out infinite .6s; }
.float-3 { bottom: 2%; left: -24px; animation: floaty 5.5s ease-in-out infinite 1.1s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

/* ============================================================================
   MARQUEE / strip
   ========================================================================== */
.strip { border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); background: var(--paper-2); padding: 18px 0; overflow: hidden; }
.marquee { display: flex; gap: 56px; width: max-content; animation: slide 28s linear infinite; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee span { font-family: var(--font-mono); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); display: inline-flex; align-items: center; gap: 14px; }
.marquee span::after { content: "✦"; color: var(--magenta); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================================
   SECTION SCAFFOLD
   ========================================================================== */
section { position: relative; }
.sec { padding: 100px 0; }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(32px, 4.6vw, 54px); margin-top: 18px; }
.sec-head p { color: var(--ink-2); font-size: 19px; margin-top: 20px; line-height: 1.6; }

/* ============================================================================
   PROBLEM (dark plum)
   ========================================================================== */
.dark { background: var(--plum); color: var(--paper); }
.dark::before {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(139,49,224,.25), transparent 70%),
    radial-gradient(600px 320px at 100% 100%, rgba(236,26,111,.22), transparent 70%);
}
.dark .sec-head p { color: #c9b8d0; }
.dark .eyebrow { color: var(--pink); }
.dark .eyebrow::before { background: var(--pink); }

.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.pain {
  background: var(--plum-2); border: 1px solid var(--plum-line); border-radius: 22px; padding: 30px 26px;
  position: relative; overflow: hidden;
}
.pain .num { font-family: var(--font-mono); font-size: 13px; color: var(--pink); letter-spacing: .1em; }
.pain h3 { font-family: var(--font-display); font-weight: 500; font-size: 23px; margin: 16px 0 12px; line-height: 1.2; }
.pain p { color: #b9a7c2; font-size: 15.5px; line-height: 1.6; }
.pain .ic { position: absolute; top: 24px; right: 22px; opacity: .25; }

/* ============================================================================
   FEATURE SPOTLIGHTS (alternating)
   ========================================================================== */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.spot + .spot { margin-top: 130px; }
.spot.flip .spot-media { order: 2; }
.spot-copy .tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
  padding: 7px 13px; border-radius: 999px; margin-bottom: 22px;
}
.spot-copy h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.05; }
.spot-copy h2 em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.spot-copy .lede { font-size: 19px; color: var(--ink-2); margin-top: 22px; line-height: 1.6; }
.spot-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.spot-list li { display: flex; gap: 13px; align-items: flex-start; list-style: none; font-size: 16px; }
.spot-list .ck { width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center; color: #fff; margin-top: 1px; }
.spot-list ul { margin: 0; padding: 0; }

/* a framed "device card" used in spotlights */
.frame {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 26px; padding: 22px;
  box-shadow: var(--shadow-card); position: relative;
}
.frame::after {
  content:""; position: absolute; inset: 0; border-radius: 26px; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,.5), transparent 40%);
}

/* voice demo */
.vd-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vd-mic { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color:#fff; flex:none; box-shadow: 0 10px 24px -10px rgba(236,26,111,.7); }
.vd-wave { display: flex; align-items: center; gap: 4px; height: 30px; }
.vd-wave i { width: 4px; border-radius: 4px; background: var(--magenta); display: block; animation: wave 1.1s ease-in-out infinite; }
@keyframes wave { 0%,100%{ height: 8px; opacity:.5 } 50%{ height: 26px; opacity:1 } }
.vd-said { font-size: 18px; line-height: 1.5; min-height: 56px; color: var(--ink); }
.vd-said .cursor { display: inline-block; width: 2px; height: 1.05em; background: var(--magenta); vertical-align: -2px; animation: blink .9s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.vd-said b { color: var(--magenta); font-weight: 700; }
.vd-arrow { text-align: center; color: var(--ink-3); margin: 14px 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; }
.vd-invoice { border: 1px solid var(--paper-line); border-radius: 18px; overflow: hidden; opacity: 0; transform: translateY(14px); transition: .6s; }
.vd-invoice.show { opacity: 1; transform: none; }
.vd-invoice .ih { background: var(--paper-2); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--paper-line); }
.vd-invoice .ih b { font-family: var(--font-display); font-size: 17px; }
.vd-invoice .ih .no { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.vd-invoice .line { display: flex; justify-content: space-between; padding: 12px 16px; font-size: 14.5px; }
.vd-invoice .line span:last-child { font-family: var(--font-mono); }
.vd-invoice .tot { display: flex; justify-content: space-between; padding: 14px 16px; border-top: 1.5px dashed var(--paper-line); font-weight: 800; }
.vd-invoice .tot span:last-child { font-family: var(--font-mono); color: var(--magenta); font-size: 18px; }

/* ============================================================================
   FEATURE GRID
   ========================================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.feat {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 20px; padding: 28px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.feat .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.feat h3 { font-size: 19px; font-weight: 800; margin-bottom: 9px; }
.feat p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ============================================================================
   STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 60px; counter-reset: s; }
.step { position: relative; padding-top: 18px; }
.step .n {
  font-family: var(--font-display); font-size: 64px; font-weight: 600; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--ink-2); font-size: 16px; }
.step:not(:last-child)::after {
  content:""; position: absolute; top: 38px; right: -16px; width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--paper-line) 0 6px, transparent 6px 12px);
}

/* ============================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px,5vw,58px); line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip:text; color: transparent; }
.stat .l { color: var(--ink-2); font-size: 14.5px; margin-top: 10px; }

/* ============================================================================
   TESTIMONIALS
   ========================================================================== */
.tcols { columns: 3; column-gap: 20px; margin-top: 56px; }
.tcard {
  break-inside: avoid; margin-bottom: 20px; background: #fff; border: 1px solid var(--paper-line);
  border-radius: 20px; padding: 26px; box-shadow: 0 14px 40px -34px rgba(40,8,46,.5);
}
.tcard .stars { color: var(--marigold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.tcard p { font-size: 16px; line-height: 1.6; }
.tcard p .hl { background: linear-gradient(transparent 62%, rgba(245,165,36,.4) 0); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.tcard .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--font-display); flex: none; }
.tcard .who b { display: block; font-size: 15px; }
.tcard .who small { color: var(--ink-3); font-size: 13px; font-family: var(--font-mono); }

/* ============================================================================
   PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 56px auto 0; }
.plan {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 26px; padding: 36px 34px;
  position: relative; overflow: hidden;
}
.plan.pro { background: var(--plum); color: var(--paper); border-color: transparent; box-shadow: 0 40px 90px -40px rgba(106,24,192,.7); }
.plan.pro::before { content:""; position:absolute; inset:0; opacity:.6; background: radial-gradient(500px 240px at 100% 0, rgba(236,26,111,.3), transparent 70%); pointer-events:none; }
.plan .pname { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: var(--magenta); }
.plan.pro .pname { color: var(--pink); }
.plan .pprice { font-family: var(--font-display); font-weight: 600; font-size: 52px; line-height: 1; margin: 16px 0 6px; letter-spacing: -.02em; }
.plan .pprice small { font-family: var(--font-body); font-size: 18px; font-weight: 600; color: var(--ink-3); }
.plan.pro .pprice small { color: #b9a7c2; }
.plan .pdesc { color: var(--ink-2); font-size: 15.5px; min-height: 44px; }
.plan.pro .pdesc { color: #c9b8d0; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.plan li .ck { width: 22px; height: 22px; border-radius: 7px; flex: none; display: grid; place-items: center; color: #fff; margin-top: 1px; }
.plan.pro li .ck { background: var(--grad); }
.plan:not(.pro) li .ck { background: var(--ink); }
.ribbon {
  position: absolute; top: 22px; right: -38px; transform: rotate(45deg);
  background: var(--marigold); color: #3a2400; font-weight: 800; font-size: 12px;
  padding: 6px 44px; font-family: var(--font-mono); letter-spacing: .08em;
}
.price-note { text-align: center; margin-top: 26px; color: var(--ink-3); font-size: 14px; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 56px auto 0; }
.qa { border-bottom: 1px solid var(--paper-line); }
.qa summary {
  list-style: none; cursor: pointer;
  padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-family: var(--font-body); font-weight: 700; font-size: 19px; color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
.qa[open] .plus { transform: rotate(135deg); background: var(--ink); color: var(--paper); }
.qa .ans { padding: 0 4px 26px; color: var(--ink-2); font-size: 16.5px; line-height: 1.65; max-width: 70ch; }

/* ============================================================================
   FINAL CTA
   ========================================================================== */
.cta-final { padding: 110px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final .card {
  background: var(--plum); color: var(--paper); border-radius: 36px; padding: 80px 40px;
  position: relative; overflow: hidden; box-shadow: 0 60px 120px -50px rgba(46,12,52,.7);
}
.cta-final .card::before {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.7;
  background:
    radial-gradient(500px 300px at 18% 10%, rgba(139,49,224,.4), transparent 65%),
    radial-gradient(500px 320px at 85% 100%, rgba(236,26,111,.4), transparent 65%);
}
.cta-final h2 { font-size: clamp(34px,5.4vw,64px); position: relative; }
.cta-final p { color: #d3c4da; font-size: 20px; margin: 22px auto 0; max-width: 50ch; position: relative; }
.cta-final .hero-cta { justify-content: center; position: relative; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--plum); color: #c9b8d0; padding: 70px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer .brand { color: var(--paper); }
.footer h5 { color: var(--paper); font-size: 13px; font-family: var(--font-mono); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; }
.footer a { display: block; color: #b9a7c2; font-size: 15px; margin-bottom: 11px; transition: color .2s; }
.footer a:hover { color: var(--pink); }
.footer .blurb { color: #b9a7c2; font-size: 15px; margin-top: 16px; max-width: 32ch; line-height: 1.6; }
.footer-bot { border-top: 1px solid var(--plum-line); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-3); }
.langs { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; color: #9a86a6; }

/* ============================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* ============================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 130px 24px 90px; }
.legal-wrap h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,52px); letter-spacing: -.02em; }
.legal-wrap h2 { font-family: var(--font-display); font-weight: 600; font-size: 27px; margin: 48px 0 14px; }
.legal-wrap h3 { font-size: 19px; margin: 28px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-2); line-height: 1.7; }
.legal-wrap ul { padding-left: 22px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--magenta); text-decoration: underline; }
.legal-wrap hr { border: 0; border-top: 1px solid var(--paper-line); margin: 40px 0; }
.legal-wrap strong { color: var(--ink); }
.legal-wrap table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.legal-wrap th, .legal-wrap td { border: 1px solid var(--paper-line); padding: 10px 12px; text-align: left; }
.legal-wrap th { background: var(--paper-2); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--magenta); margin-bottom: 30px; }

/* ============================================================================
   HERO LIVE DEMO
   ========================================================================== */
.demo-hero { width: 100%; max-width: 400px; margin: 0 auto; }
.demo-label {
  display: flex; align-items: center; gap: 9px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .13em; color: var(--ink-3); margin-bottom: 16px;
}
.demo-label .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(236,26,111,.16); animation: dotpulse 1.6s ease-in-out infinite;
}
@keyframes dotpulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.vd-mic[role="button"] { cursor: pointer; }

/* ============================================================================
   OBJECTION KILLER
   ========================================================================== */
.oc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 56px; }
.oc {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 18px; padding: 26px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.oc:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.oc .ck { width: 32px; height: 32px; border-radius: 10px; background: rgba(31,157,91,.12); color: var(--leaf); display: grid; place-items: center; margin-bottom: 16px; }
.oc .q { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 19px; line-height: 1.25; color: var(--ink); margin-bottom: 11px; }
.oc .a { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.oc .a b { color: var(--ink); font-weight: 700; }

/* ============================================================================
   MIGRATION BAND
   ========================================================================== */
.migrate {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center;
  background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: 30px; padding: 50px;
  position: relative; overflow: hidden;
}
.migrate h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px,3.4vw,40px); line-height: 1.08; letter-spacing: -.02em; margin: 14px 0 16px; }
.migrate h3 em { font-style: italic; }
.migrate p { color: var(--ink-2); font-size: 17px; line-height: 1.6; margin-bottom: 26px; max-width: 46ch; }
.mig-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--paper-line); border-radius: 999px; padding: 10px 16px; font-weight: 600; font-size: 14px; margin: 0 8px 8px 0; }
.mig-arrow-down { text-align: center; color: var(--magenta); font-size: 24px; margin: 8px 0; line-height: 1; }
.mig-target { background: var(--grad); color: #fff; border-radius: 16px; padding: 18px 20px; display: flex; align-items: center; gap: 13px; font-weight: 700; font-size: 16px; box-shadow: 0 18px 40px -20px rgba(236,26,111,.6); }
.mig-target .tk { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.18); display: grid; place-items: center; flex: none; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone-stage { order: -1; }
  .hero .sub { max-width: none; }
  .oc-grid { grid-template-columns: 1fr; }
  .migrate { grid-template-columns: 1fr; gap: 30px; padding: 34px 26px; }
  .spot, .spot.flip .spot-media { grid-template-columns: 1fr; order: 0; }
  .spot-media { order: -1 !important; }
  .pain-grid, .feat-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 30px 12px; }
  .tcols { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav .btn-grad { display: none; }
  .burger { display: inline-flex; }
  .hero { padding-top: 120px; }
  .float-1 { left: -10px; } .float-2 { right: -10px; }
  .tcols { columns: 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .sec { padding: 76px 0; }
  .spot + .spot { margin-top: 80px; }
  .cta-final .card { padding: 56px 24px; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 60; background: rgba(23,10,30,.6); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px); background: var(--paper);
  padding: 28px 26px; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .panel { transform: none; }
.drawer .panel a { padding: 16px 4px; font-size: 20px; font-weight: 700; border-bottom: 1px solid var(--paper-line); }
.drawer .panel .btn-grad { margin-top: 20px; justify-content: center; }
.drawer .close { align-self: flex-end; background: none; border: 0; cursor: pointer; color: var(--ink); padding: 6px; margin-bottom: 10px; }

/* ============================================================================
   BLOG — index listing + cards   (Ghost: index.hbs, post-card partial)
   ========================================================================== */
.blog-hero { padding-top: 150px; }

.post-card {
  background: #fff; border: 1px solid var(--paper-line); border-radius: 20px;
  overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: transparent; }
.post-card-link { display: flex; flex-direction: column; height: 100%; }
.post-card-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--paper-2); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-img--blank {
  display: grid; place-items: center; background: var(--grad);
}
.post-card-img--blank span {
  font-family: var(--font-display); font-size: 26px; color: #fff; opacity: .9; letter-spacing: -.02em;
}
.post-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card-tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--magenta); align-self: flex-start;
}
.post-card-title { font-size: 21px; font-weight: 800; line-height: 1.2; letter-spacing: -.01em; }
.post-card-excerpt { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex: 1; }
.post-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
.dot-sep { opacity: .5; }

/* one-per-row list (blog index) — horizontal card: image left, copy right */
.post-list { display: flex; flex-direction: column; gap: 22px; max-width: 940px; margin: 10px auto 0; }
.post-list .post-card-link { flex-direction: row; align-items: stretch; min-height: 220px; }
.post-list .post-card-img { aspect-ratio: auto; flex: 0 0 40%; }
.post-list .post-card-img img { height: 100%; }
.post-list .post-card-body { padding: 30px 34px; justify-content: center; gap: 12px; }
.post-list .post-card-title { font-size: clamp(22px, 2.6vw, 27px); }
.post-list .post-card-excerpt { flex: 0 1 auto; font-size: 16px; }
@media (max-width: 640px) {
  .post-list .post-card-link { flex-direction: column; min-height: 0; }
  .post-list .post-card-img { aspect-ratio: 16 / 9; flex: none; }
  .post-list .post-card-body { padding: 22px 22px 24px; }
}

/* pagination (Ghost default {{pagination}}) */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  margin-top: 60px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-3);
}
.pagination a { color: var(--magenta); font-weight: 700; }
.pagination .older-posts, .pagination .newer-posts { padding: 10px 18px; border: 1.5px solid var(--paper-line); border-radius: 999px; transition: background .2s, color .2s; }
.pagination .older-posts:hover, .pagination .newer-posts:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============================================================================
   POST — single article header + prose   (Ghost: post.hbs, page.hbs)
   ========================================================================== */
.post-header { margin-bottom: 30px; }
.post-eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta); display: inline-block; margin-bottom: 16px;
}
.post-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.02em; }
.post-lede { color: var(--ink-2); font-size: 21px; line-height: 1.5; margin-top: 18px; }
.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.post-meta-author { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-weight: 500; }
.post-meta-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.post-feature { margin: 0 0 38px; }
.post-feature img { width: 100%; border-radius: 22px; box-shadow: var(--shadow-soft); }
.post-feature figcaption { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 12px; font-family: var(--font-mono); }

.post-tags { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }
.post-tag {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; padding: 8px 14px;
  border: 1px solid var(--paper-line); border-radius: 999px; color: var(--ink-2); transition: background .2s, color .2s, border-color .2s;
}
.post-tag:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---- Prose / Koenig content (rendered by {{content}}) ------------------- */
.post-content { font-size: 18px; line-height: 1.75; color: var(--ink-2); }
.post-content > * + * { margin-top: 24px; }
.post-content p { color: var(--ink-2); }
.post-content strong { color: var(--ink); }
.post-content a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }
.post-content h2 { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -.01em; color: var(--ink); margin-top: 50px; line-height: 1.15; }
.post-content h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-top: 38px; }
.post-content h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin-top: 30px; }
/* Tailwind's CDN preflight resets list-style to none — restore markers here */
.post-content ul, .post-content ol { padding-left: 26px; margin-left: 0; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { display: list-item; padding-left: 4px; }
.post-content li::marker { color: var(--magenta); }
.post-content li + li { margin-top: 8px; }
.post-content li > ul, .post-content li > ol { margin-top: 8px; }
.post-content ul ul { list-style: circle; }
.post-content blockquote {
  border-left: 3px solid var(--magenta); margin: 30px 0; padding: 4px 0 4px 22px;
  font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ink);
}
.post-content hr { border: 0; border-top: 1px solid var(--paper-line); margin: 44px 0; }
.post-content img { border-radius: 16px; }
.post-content figure { margin: 36px 0; }
.post-content figure img { width: 100%; }
.post-content figcaption { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: 12px; font-family: var(--font-mono); }
.post-content code {
  font-family: var(--font-mono); font-size: .88em; background: var(--paper-2);
  padding: 2px 7px; border-radius: 6px; color: var(--ink);
}
.post-content pre {
  background: var(--plum); color: #f3e9f7; border-radius: 16px; padding: 22px 24px;
  overflow-x: auto; font-family: var(--font-mono); font-size: 14.5px; line-height: 1.6;
}
.post-content pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.post-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; display: block; overflow-x: auto; }
.post-content th, .post-content td { border: 1px solid var(--paper-line); padding: 10px 13px; text-align: left; vertical-align: top; }
.post-content th { background: var(--paper-2); color: var(--ink); font-weight: 700; }

/* Koenig cards */
.post-content .kg-card { margin: 38px 0; }
.post-content .kg-width-wide { width: min(1040px, 92vw); margin-left: 50%; transform: translateX(-50%); }
.post-content .kg-width-full { width: 96vw; margin-left: 50%; transform: translateX(-50%); }
.post-content .kg-image-card img, .post-content .kg-gallery-card img { border-radius: 16px; }
.post-content .kg-callout-card { display: flex; gap: 14px; padding: 20px 22px; border-radius: 16px; background: var(--paper-2); border: 1px solid var(--paper-line); }
.post-content .kg-callout-emoji { font-size: 22px; line-height: 1.4; }
.post-content .kg-bookmark-card { margin: 38px 0; }
.post-content .kg-bookmark-container {
  display: flex; border: 1px solid var(--paper-line); border-radius: 16px; overflow: hidden;
  background: #fff; color: inherit; text-decoration: none; box-shadow: var(--shadow-soft);
}
.post-content .kg-bookmark-content { padding: 20px 22px; flex: 1 1 auto; }
.post-content .kg-bookmark-title { font-weight: 800; color: var(--ink); }
.post-content .kg-bookmark-description { color: var(--ink-2); font-size: 14.5px; margin-top: 6px; }
.post-content .kg-bookmark-thumbnail { flex: 0 0 33%; }
.post-content .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.post-content .kg-embed-card { display: flex; justify-content: center; }

@media (max-width: 720px) {
  .post-content { font-size: 17px; }
  .post-content .kg-width-wide, .post-content .kg-width-full { width: 100%; margin-left: 0; transform: none; }
}

/* ============================================================================
   COMING-SOON / WAITLIST MODAL   (partials/coming-soon.hbs, wired in main.js)
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(23,10,30,.62); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  position: relative; width: 100%; max-width: 460px;
  background: var(--paper); border: 1px solid var(--paper-line); border-radius: 26px;
  padding: 38px 36px 32px; box-shadow: 0 50px 120px -40px rgba(40,8,46,.7);
  transform: translateY(16px) scale(.98); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  max-height: calc(100vh - 48px); overflow-y: auto;
}
.modal-overlay.open .modal { transform: none; }
.modal::after {
  content: ""; position: absolute; inset: 0; border-radius: 26px; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,255,255,.5), transparent 38%);
}
.modal > * { position: relative; z-index: 1; }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--paper-2); border: 1px solid var(--paper-line); border-radius: 50%;
  color: var(--ink-2); cursor: pointer; transition: background .2s, color .2s, transform .2s;
}
.modal-close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }

.modal-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 18px;
}
.modal-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--magenta);
  box-shadow: 0 0 0 4px rgba(236,26,111,.16); animation: dotpulse 1.6s ease-in-out infinite;
}
.modal-title { font-size: clamp(28px, 6vw, 38px); line-height: 1.05; margin-bottom: 14px; }
.modal-text { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; }

.modal-form .field { margin-bottom: 14px; }
.modal-form .field label {
  display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-2); margin-bottom: 7px;
}
.modal-form .field input {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff; border: 1.5px solid var(--paper-line); border-radius: 14px;
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.modal-form .field input::placeholder { color: var(--ink-3); }
.modal-form .field input:focus {
  outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(236,26,111,.14);
}
.modal-form .btn-grad { margin-top: 8px; }
.modal-note { font-size: 13px; color: var(--ink-3); margin-top: 13px; line-height: 1.5; text-align: center; }
.modal-note.is-error { color: var(--magenta); font-weight: 600; }
.modal-note.is-ok { color: var(--leaf); font-weight: 600; }

/* Ghost Members form states — Portal toggles loading / success / error classes */
.modal-form .form-msg { display: none; }
.modal-form .form-msg-default { display: block; }
.modal-form.loading .form-msg-default,
.modal-form.success .form-msg-default,
.modal-form.error .form-msg-default { display: none; }
.modal-form.success .form-msg-success { display: block; }
.modal-form.error .form-msg-error { display: block; }
.modal-form.success .field,
.modal-form.success button[type="submit"] { display: none; }

.btn .btn-loading { display: none; }
.modal-form.loading .btn .btn-label { display: none; }
.modal-form.loading .btn .btn-loading { display: inline; }
.modal-form.loading button[type="submit"] { pointer-events: none; opacity: .85; }

.modal-stores {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--paper-line);
}
.modal-store {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  color: var(--ink-3); background: var(--paper-2); border: 1px solid var(--paper-line);
  border-radius: 999px; padding: 8px 14px;
}

@media (max-width: 480px) {
  .modal { padding: 32px 22px 26px; border-radius: 22px; }
}
