/* ─────────────────────────────────────────────────
   Shoplix v2 — Shared design tokens + variant styles
   ───────────────────────────────────────────────── */

:root {
  /* Refreshed blue palette via oklch tuning */
  --blue-50:  #EFF4FF;
  --blue-100: #DCE7FE;
  --blue-200: #BBD0FD;
  --blue-300: #8FB1FB;
  --blue-400: #5C8AF7;
  --blue-500: #2F6BFF;
  --blue-600: #1E4FE0;
  --blue-700: #1840B8;
  --blue-800: #1E3A8A;
  --blue-900: #172E6E;

  --ink-900: #0B1220;
  --ink-800: #0F172A;
  --ink-700: #1E293B;
  --ink-600: #334155;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-150: #EEF2F8;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;

  --cream:    #FAF7F2;
  --cream-50: #FDFCF9;
  --cream-100:#F5EFE5;

  --warm-amber-50:  #FFFBEB;
  --warm-amber-100: #FEF3C7;
  --warm-amber-500: #F59E0B;
  --warm-amber-600: #D97706;

  --green-50: #F0FDF4;
  --green-100:#DCFCE7;
  --green-500:#22C55E;
  --green-600:#16A34A;

  --rose-50: #FFF1F2;
  --rose-500:#F43F5E;
  --rose-600:#E11D48;

  --violet-50:#F5F3FF;
  --violet-100:#EDE9FE;
  --violet-600:#7C3AED;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --shadow-md: 0 4px 14px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.04);
  --shadow-lg: 0 18px 50px rgba(15,23,42,.10), 0 4px 12px rgba(15,23,42,.04);
  --shadow-xl: 0 28px 80px rgba(15,23,42,.14), 0 10px 28px rgba(15,23,42,.06);

  --font-sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-serif: 'Instrument Serif', 'Tiempos', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #fff; color: var(--ink-900); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-size: 16px; line-height: 1.55; letter-spacing: -0.005em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── Animations ───────────────────────────────── */
@keyframes pdSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.4); }
}
@keyframes blobShift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes marquee3 {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Reveal ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   Variant chrome (toggle pill at top-right)
   ───────────────────────────────────────────── */
.vchrome {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 500;
}
.vchrome button {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.vchrome button:hover { color: #fff; }
.vchrome button.active { background: #fff; color: var(--ink-900); box-shadow: 0 2px 8px rgba(0,0,0,.2); }

/* ── Brand mark ──────────────────────────────── */
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── Lang toggle ─────────────────────────────── */
.lang-toggle {
  display: inline-flex; gap: 2px; padding: 3px;
  background: var(--ink-100);
  border-radius: 999px;
}
.lang-toggle button {
  padding: 5px 12px;
  border: none;
  background: transparent;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.lang-toggle button.active {
  background: #fff;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

/* ── Store badges (custom) ───────────────────── */
.store-row {
  display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: var(--badge-h, 48px);
  padding: 0 18px 0 16px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-btn i { font-size: 26px; flex-shrink: 0; }
.store-btn > div { display: flex; flex-direction: column; line-height: 1.05; gap: 2px; }
.store-btn .sb-tiny { font-size: 9.5px; opacity: .85; letter-spacing: 0.04em; text-transform: uppercase; }
.store-btn .sb-big { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* ── Phone demo (animated) ───────────────────── */
.pd-screen {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  font-family: var(--font-sans);
  border-radius: inherit;
  overflow: hidden;
}
.pd-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 6px;
  font-size: 13px; font-weight: 600;
}
.pd-header {
  padding: 8px 18px 14px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid;
}
.pd-title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.pd-sub { font-size: 11.5px; margin-top: 2px; }
.pd-avatars { display: flex; }
.pd-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9.5px; font-weight: 700;
}
.pd-items {
  flex: 1; overflow: hidden;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.pd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid;
  border-radius: 12px;
  font-size: 12.5px;
  transition: opacity .35s ease, transform .35s ease;
}
.pd-check {
  width: 18px; height: 18px;
  border: 1.8px solid;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .25s ease;
}
.pd-item-main { flex: 1; min-width: 0; }
.pd-item-name { font-weight: 600; font-size: 13px; transition: all .25s ease; }
.pd-item-qty { font-size: 11px; margin-top: 1px; }
.pd-claim {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px currentColor;
  flex-shrink: 0;
}
.pd-by { font-size: 10px; font-weight: 500; }
.pd-input {
  margin: 8px 12px 14px;
  padding: 10px 12px;
  border: 1px solid;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
}
.pd-input span { flex: 1; }
.pd-input-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}

/* ── UI Screen (static placeholders for showcases) ── */
.ui-screen {
  background: #F6F8FB;
  width: 100%;
  border-radius: 28px;
  font-family: var(--font-sans);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ui-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-900);
}
.ui-status .ui-icons { display: inline-flex; gap: 4px; align-items: center; font-size: 13px; }
.ui-titlebar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 18px 14px;
  border-bottom: 1px solid var(--ink-150);
}
.ui-titlebar > i { font-size: 20px; color: var(--ink-500); }
.ui-titlebar > div { flex: 1; text-align: center; }
.ui-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.ui-subtitle { font-size: 11px; color: var(--ink-500); margin-top: 2px; }
.ui-section-title {
  font-size: 11px; font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px 6px;
}
.ui-event-banner {
  margin: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
}
.ui-event-banner strong { display: block; font-size: 14px; }
.ui-event-banner span { display: block; font-size: 11px; color: var(--ink-600); }
.ui-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  background: #fff;
  border-bottom: 1px solid var(--ink-150);
}
.ui-row:last-child { border-bottom: none; }
.ui-check {
  width: 18px; height: 18px;
  border: 1.8px solid;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ui-row-main { flex: 1; min-width: 0; }
.ui-row-name { font-weight: 600; font-size: 13.5px; }
.ui-row-qty { font-size: 11px; color: var(--ink-500); margin-top: 1px; }
.ui-claim {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ui-by { font-size: 10.5px; color: var(--ink-500); }

/* ─────────────────────────────────────────────
   Variant 1 — Soft & Warm (Notion-leaning)
   ───────────────────────────────────────────── */
.v1-root { background: var(--cream); color: var(--ink-900); min-height: 100vh; padding-top: 60px; }
.v1-root section { position: relative; }

.v1-nav {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.v1-nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--ink-600); }
.v1-nav-links a:hover { color: var(--ink-900); }
.v1-nav-right { display: flex; align-items: center; gap: 14px; }
.v1-nav-cta {
  padding: 9px 18px;
  background: var(--ink-900);
  color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.v1-nav-cta:hover { background: var(--blue-700); }

.v1-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.v1-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.v1-eyebrow-dot { width: 8px; height: 8px; background: var(--blue-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(47,107,255,0.18); }
.v1-h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--ink-900);
}
.v1-h1-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue-700); }
.v1-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 540px;
  margin-bottom: 32px;
}
.v1-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.v1-badges span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-700);
}
.v1-badges i { color: var(--blue-600); font-size: 14px; }

.v1-hero-visual { display: flex; justify-content: center; }
.v1-phone-wrap { position: relative; }
.v1-phone {
  width: 300px; height: 600px;
  background: var(--ink-900);
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: floatY 6s ease-in-out infinite;
}
.v1-phone-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #000; border-radius: 999px; z-index: 5;
}
.v1-phone-inner {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #F6F8FB;
}
.v1-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}
.v1-float i { font-size: 16px; }
.v1-float-live {
  top: 12%; left: -36px;
  animation-delay: 0s;
}
.v1-pulse { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
.v1-float-bought {
  bottom: 18%; right: -56px;
  animation-delay: 1.5s;
}

.v1-showcase {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v1-showcase.reverse { direction: rtl; }
.v1-showcase.reverse > * { direction: ltr; }
.v1-show-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.v1-tag-house { background: var(--green-100); color: var(--green-600); }
.v1-tag-event { background: var(--warm-amber-100); color: var(--warm-amber-600); }
.v1-h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.v1-h2 em, .v1-h2 .v1-h2-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue-700); }
.v1-show-desc { font-size: 17px; color: var(--ink-600); line-height: 1.6; max-width: 520px; margin-bottom: 28px; }
.v1-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.v1-bullets li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  font-size: 14.5px; font-weight: 500;
}
.v1-bullets i { color: var(--blue-600); font-size: 18px; }

.v1-show-visual {
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 100%);
  border-radius: var(--r-2xl);
  padding: 48px 36px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px -30px rgba(47,107,255,0.25);
  position: relative;
  min-height: 580px;
}
.v1-showcase-event .v1-show-visual { background: linear-gradient(135deg, var(--warm-amber-100) 0%, var(--cream-100) 100%); box-shadow: 0 30px 80px -30px rgba(245,158,11,0.25); }
.v1-show-visual .ui-screen {
  max-width: 320px;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
}
.v1-showcase-event .v1-show-visual .ui-screen { transform: rotate(2deg); }

/* Bento */
.v1-bento { padding: 100px 32px; max-width: 1240px; margin: 0 auto; }
.v1-section-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.v1-section-head .v1-show-desc { margin: 18px auto 0; }
.v1-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  grid-auto-rows: minmax(220px, auto);
}
.v1-bento-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.v1-bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.v1-bento-wide { grid-column: span 2; }
.v1-bento-tall { grid-row: span 2; }
.v1-bento-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.v1-bento-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.3; }
.v1-bento-card p { font-size: 14px; color: var(--ink-600); line-height: 1.55; }
.v1-bento-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.v1-bento-tags span {
  padding: 5px 11px;
  background: var(--ink-50);
  border: 1px solid var(--ink-150);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--ink-700);
  font-family: var(--font-mono);
}
.v1-bento-illustration { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.v1-mini-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--ink-50);
  border-radius: 10px;
  font-size: 13px;
}
.v1-mini-row span:nth-child(2) { flex: 1; }
.v1-mini-check {
  width: 16px; height: 16px;
  border: 1.6px solid var(--ink-300);
  border-radius: 50%;
  flex-shrink: 0;
}
.v1-mini-check.on { background: var(--blue-500); border-color: var(--blue-500); }
.v1-mini-claim {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.v1-mini-by { font-size: 10px; color: var(--ink-500); }
.v1-bento-swatches { display: flex; gap: 8px; margin-top: 16px; }
.v1-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0,0,0,0.06);
}

/* How */
.v1-how { padding: 100px 32px; max-width: 1240px; margin: 0 auto; }
.v1-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v1-how-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  text-align: left;
}
.v1-how-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.v1-how-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.v1-how-card p { color: var(--ink-600); font-size: 15px; }

/* CTA */
.v1-cta {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--cream) 100%);
  padding: 100px 32px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.v1-cta-inner { max-width: 640px; margin: 0 auto; }
.v1-cta-mascot { width: 100px; height: 100px; margin: 0 auto 28px; border-radius: 22px; box-shadow: var(--shadow-lg); }
.v1-cta p { font-size: 17px; color: var(--ink-600); margin: 16px 0 32px; }

/* Footer */
.site-footer { background: var(--ink-50); padding: 48px 32px; border-top: 1px solid var(--ink-150); }
.sf-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
}
.sf-brand { display: flex; align-items: center; gap: 16px; }
.sf-tagline { font-size: 13px; color: var(--ink-500); }
.sf-links { display: flex; gap: 24px; flex-wrap: wrap; }
.sf-links a { font-size: 13px; color: var(--ink-600); }
.sf-links a:hover { color: var(--blue-700); }
.sf-copy { font-size: 12px; color: var(--ink-400); font-family: var(--font-mono); }

/* ─────────────────────────────────────────────
   Variant 2 — Editorial Crisp
   ───────────────────────────────────────────── */
.v2-root { background: #FBFBFA; color: var(--ink-900); min-height: 100vh; padding-top: 60px; }
.v2-root section { position: relative; max-width: 1180px; margin: 0 auto; padding: 80px 40px; }

.v2-nav {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(251,251,250,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-150);
  font-family: var(--font-mono);
  font-size: 12px;
}
.v2-nav-links { display: flex; gap: 28px; color: var(--ink-600); }
.v2-nav-right { display: flex; align-items: center; gap: 16px; }
.v2-link { color: var(--ink-900); font-weight: 500; }
.v2-link:hover { color: var(--blue-700); }

.v2-hero { padding-top: 80px; }
.v2-hero-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--ink-200);
  padding-bottom: 12px;
  margin-bottom: 36px;
}
.v2-h1 {
  font-size: clamp(56px, 9vw, 124px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 56px;
}
.v2-h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--blue-700); }
.v2-hero-deck {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--ink-200);
  padding-top: 28px;
  margin-bottom: 72px;
}
.v2-deck-text { font-size: 19px; line-height: 1.5; color: var(--ink-700); max-width: 600px; }
.v2-deck-side { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-mono); font-size: 12px; }
.v2-deck-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-150);
}
.v2-deck-row span:first-child { color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; }
.v2-deck-row span:last-child { color: var(--ink-900); }

.v2-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.v2-figure { display: flex; flex-direction: column; }
.v2-figure-frame {
  background: var(--ink-100);
  border-radius: 18px;
  padding: 32px;
  display: flex; justify-content: center;
}
.v2-figure-frame .ui-screen {
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.v2-figure figcaption {
  display: flex; gap: 12px; align-items: baseline;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-500);
  border-top: 1px solid var(--ink-200);
  padding-top: 12px;
}
.v2-fig-num { color: var(--ink-900); font-weight: 600; }
.v2-fig-text { color: var(--ink-700); font-family: var(--font-sans); font-size: 14px; }

.v2-hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.v2-cta-note { color: var(--ink-500); font-size: 14px; font-style: italic; }

.v2-rule { border: none; border-top: 1px solid var(--ink-200); max-width: 1180px; margin: 0 auto; }

.v2-chap-head {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.v2-chap-num { color: var(--ink-900); font-weight: 600; font-size: 14px; }
.v2-chap-tag { color: var(--ink-500); }

.v2-h2 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 56px;
}
.v2-muted { color: var(--ink-400); }

.v2-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.v2-article h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-700);
  margin-bottom: 14px;
}
.v2-article .v2-lead {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink-900);
}
.v2-article p { font-size: 16px; color: var(--ink-700); line-height: 1.6; margin-bottom: 24px; }
.v2-ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.v2-ul li {
  font-size: 14px;
  color: var(--ink-700);
  padding-left: 24px;
  position: relative;
}
.v2-ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--blue-600);
}

.v2-chapter-demo .v2-demo-spread {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.v2-phone-frame {
  width: 320px;
  margin: 0 auto;
  background: var(--ink-900);
  border-radius: 44px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  height: 640px;
}
.v2-phone-frame .pd-screen { border-radius: 36px; }
.v2-demo-notes { display: flex; flex-direction: column; gap: 28px; }
.v2-note { display: flex; gap: 18px; align-items: flex-start; }
.v2-note-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--ink-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-700);
}
.v2-note-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.v2-note-body { font-size: 15px; color: var(--ink-600); line-height: 1.5; }

.v2-index { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink-200); }
.v2-index-row {
  display: grid;
  grid-template-columns: 60px 30px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--ink-150);
}
.v2-index-num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); }
.v2-index-row > i { font-size: 22px; color: var(--blue-700); }
.v2-index-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.v2-index-body { font-size: 13px; color: var(--ink-500); margin-top: 2px; }

.v2-cta { text-align: center; padding: 120px 40px 80px; }
.v2-cta-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 32px; }
.v2-cta-h { margin-bottom: 16px; }
.v2-cta-p { color: var(--ink-600); font-size: 18px; margin-bottom: 36px; }
.v2-cta-mascot { width: 80px; margin: 40px auto 0; opacity: 0.85; }

/* ─────────────────────────────────────────────
   Variant 3 — Playful Live Demo
   ───────────────────────────────────────────── */
.v3-root { background: #fff; color: var(--ink-900); min-height: 100vh; padding-top: 60px; overflow-x: hidden; }
.v3-root section { position: relative; }

.v3-nav { position: fixed; top: 60px; left: 0; right: 0; z-index: 50; padding: 14px 24px; }
.v3-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 8px 14px 8px 16px;
  box-shadow: var(--shadow-md);
}
.v3-nav-pill {
  display: flex; gap: 4px;
  background: var(--ink-50);
  border-radius: 999px;
  padding: 4px;
}
.v3-nav-pill a {
  padding: 7px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-600);
  border-radius: 999px;
}
.v3-nav-pill a:hover { color: var(--ink-900); background: #fff; }
.v3-nav-right { display: flex; align-items: center; gap: 10px; }
.v3-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 14px -4px rgba(30,79,224,.5);
}
.v3-nav-cta:hover { background: var(--blue-700); }

.v3-hero { padding: 100px 24px 80px; max-width: 1240px; margin: 0 auto; }
.v3-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.v3-blob-1 {
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(47,107,255,0.25), transparent 70%);
  animation: blobShift 18s ease-in-out infinite;
}
.v3-blob-2 {
  top: 200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  animation: blobShift 22s ease-in-out infinite reverse;
}
.v3-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.v3-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(47,107,255,0.08);
  border: 1px solid rgba(47,107,255,0.18);
  color: var(--blue-700);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.v3-eyebrow i { color: var(--warm-amber-500); }
.v3-h1 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.v3-h1-accent {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v3-sub { font-size: 18px; color: var(--ink-600); line-height: 1.55; max-width: 540px; margin-bottom: 28px; }
.v3-hero-row { margin-bottom: 32px; }
.v3-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-150);
  max-width: 480px;
}
.v3-stats > div { display: flex; flex-direction: column; gap: 2px; }
.v3-stats strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.v3-stats span { font-size: 12px; color: var(--ink-500); }

.v3-hero-stage {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex; align-items: center; justify-content: center;
}
.v3-stage-glow {
  position: absolute;
  width: 90%; height: 70%;
  background: radial-gradient(circle, rgba(47,107,255,0.25), transparent 70%);
  filter: blur(40px);
}
.v3-phone {
  width: 280px; height: 560px;
  background: var(--ink-900);
  border-radius: 42px;
  padding: 9px;
  box-shadow: var(--shadow-xl);
  position: absolute;
}
.v3-phone-back {
  transform: rotate(-8deg) translateX(-50px);
  opacity: 0.85;
  animation: floatY 7s ease-in-out infinite;
}
.v3-phone-front {
  transform: rotate(4deg) translateX(50px);
  z-index: 2;
  animation: floatY 6s ease-in-out infinite -1s;
}
.v3-phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #000; border-radius: 999px; z-index: 5;
}
.v3-phone-inner { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; }
.v3-mascot {
  position: absolute;
  bottom: -30px; right: -20px;
  width: 120px;
  z-index: 3;
  transform: rotate(8deg);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.18));
  animation: floatY 4s ease-in-out infinite;
}
.v3-burst {
  position: absolute;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.v3-burst i { font-size: 16px; }
.v3-burst-1 { top: 8%; left: 0; }
.v3-burst-1 i { color: var(--green-500); }
.v3-burst-2 { top: 50%; right: -10px; animation-delay: -1.5s; }
.v3-burst-2 i { color: var(--warm-amber-500); }
.v3-burst-3 { bottom: 12%; left: 8%; animation-delay: -3s; opacity: 0.85; }
.v3-burst-3 i { color: var(--rose-500); }

.v3-marquee {
  background: var(--ink-900);
  color: #fff;
  padding: 28px 0;
  overflow: hidden;
}
.v3-marquee-row { display: flex; width: max-content; animation: marquee3 40s linear infinite; }
.v3-marquee-track { display: flex; gap: 12px; padding-right: 12px; }
.v3-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
.v3-pill i { color: var(--blue-300); font-size: 16px; }

.v3-h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.v3-h2-accent {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v3-show-sub { font-size: 17px; color: var(--ink-600); margin-bottom: 48px; max-width: 600px; }

.v3-showcase { padding: 100px 24px; max-width: 1240px; margin: 0 auto; }
.v3-showcase-head { text-align: center; margin-bottom: 60px; }
.v3-showcase-head .v3-show-sub { margin-left: auto; margin-right: auto; }
.v3-show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.v3-show-card {
  border-radius: var(--r-2xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.v3-show-house { background: linear-gradient(135deg, #F0FDF4 0%, #FAFEFC 100%); border: 1px solid rgba(34,197,94,0.15); }
.v3-show-event { background: linear-gradient(135deg, #FFFBEB 0%, #FEFEF7 100%); border: 1px solid rgba(245,158,11,0.15); }
.v3-show-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 18px;
}
.v3-show-h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2; }
.v3-show-card > p { font-size: 15.5px; color: var(--ink-600); line-height: 1.55; margin-bottom: 28px; max-width: 460px; }
.v3-show-screen { display: flex; justify-content: center; }
.v3-show-screen .ui-screen { max-width: 290px; box-shadow: var(--shadow-xl); }

.v3-how { padding: 100px 24px; max-width: 1240px; margin: 0 auto; text-align: center; }
.v3-how-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}
.v3-how-line {
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue-400), var(--warm-amber-500), var(--rose-500));
  border-radius: 1px;
  z-index: 0;
}
.v3-how-step { position: relative; z-index: 1; text-align: center; }
.v3-how-bubble {
  width: 72px; height: 72px;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--blue-600);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.v3-how-step:hover .v3-how-bubble { transform: scale(1.08) rotate(-4deg); }
.v3-how-num { font-family: var(--font-mono); font-size: 11px; color: var(--blue-600); margin-bottom: 6px; }
.v3-how-step h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.v3-how-step p { font-size: 13.5px; color: var(--ink-600); max-width: 200px; margin: 0 auto; }

.v3-bento { padding: 100px 24px 60px; max-width: 1240px; margin: 0 auto; text-align: center; }
.v3-bento .v3-show-sub { margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.v3-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
  grid-auto-rows: 200px;
}
.v3-b {
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .3s ease;
}
.v3-b:hover { transform: translateY(-4px); }
.v3-b > i {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.95;
}
.v3-b h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.2; }
.v3-b p { font-size: 13px; line-height: 1.5; opacity: 0.8; }
.v3-b-2x2 { grid-column: span 2; grid-row: span 2; }
.v3-b-wide { grid-column: span 2; }
.v3-b-blue { background: linear-gradient(135deg, var(--blue-50), #fff); border: 1px solid var(--blue-100); color: var(--blue-800); }
.v3-b-blue > i { color: var(--blue-600); }
.v3-b-amber { background: linear-gradient(135deg, var(--warm-amber-50), #fff); border: 1px solid var(--warm-amber-100); color: var(--warm-amber-600); }
.v3-b-amber > i { color: var(--warm-amber-500); }
.v3-b-violet { background: linear-gradient(135deg, var(--violet-50), #fff); border: 1px solid var(--violet-100); color: var(--violet-600); }
.v3-b-violet > i { color: var(--violet-600); }
.v3-b-rose { background: linear-gradient(135deg, var(--rose-50), #fff); border: 1px solid #FFD9DC; color: var(--rose-600); }
.v3-b-rose > i { color: var(--rose-500); }
.v3-b-green { background: linear-gradient(135deg, var(--green-50), #fff); border: 1px solid var(--green-100); color: var(--green-600); }
.v3-b-green > i { color: var(--green-500); }
.v3-b h3, .v3-b p { color: var(--ink-900); }
.v3-b p { color: var(--ink-600); }

.v3-cta {
  padding: 100px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.v3-cta-card {
  background: linear-gradient(135deg, var(--ink-900) 0%, #1A2440 50%, var(--blue-800) 100%);
  border-radius: var(--r-2xl);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.v3-cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.3), transparent 70%);
  border-radius: 50%;
}
.v3-cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,107,255,0.4), transparent 70%);
  border-radius: 50%;
}
.v3-cta-card > * { position: relative; z-index: 1; }
.v3-cta-mascot { width: 100px; margin: 0 auto 24px; }
.v3-cta-h { color: #fff; }
.v3-cta-card p { color: rgba(255,255,255,0.75); font-size: 18px; margin: 14px 0 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.v3-cta-card .store-row { justify-content: center; margin: 0 auto; }
.v3-cta-card .store-btn { background: #fff; color: var(--ink-900); }
.v3-cta-web {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.v3-cta-web:hover { color: #fff; }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .v1-hero { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 60px; }
  .v1-hero-text > * { margin-left: auto; margin-right: auto; }
  .v1-eyebrow, .v1-badges { justify-content: center; }
  .v1-themes-row { gap: 24px; }
  .v1-real-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-real-tall { grid-row: span 2; min-height: 780px; }
  .v1-showcase { grid-template-columns: 1fr; gap: 40px; }
  .v1-showcase.reverse { direction: ltr; }
  .v1-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .v1-bento-wide { grid-column: span 2; }
  .v1-bento-tall { grid-row: span 1; }
  .v1-how-grid { grid-template-columns: 1fr; }

  .v2-h1 { font-size: clamp(40px, 12vw, 80px); }
  .v2-hero-deck { grid-template-columns: 1fr; gap: 32px; }
  .v2-spread { grid-template-columns: 1fr; }
  .v2-twocol { grid-template-columns: 1fr; gap: 48px; }
  .v2-chapter-demo .v2-demo-spread { grid-template-columns: 1fr; }
  .v2-index { grid-template-columns: 1fr; }

  .v3-hero-grid { grid-template-columns: 1fr; }
  .v3-hero-stage { height: 500px; }
  .v3-show-grid { grid-template-columns: 1fr; }
  .v3-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .v3-b-2x2, .v3-b-wide { grid-column: span 2; }
  .v3-b-2x2 { grid-row: span 2; }
  .v3-how-track { grid-template-columns: repeat(2, 1fr); }
  .v3-how-line { display: none; }
}

@media (max-width: 640px) {
  .v1-nav, .v2-nav { padding-left: 18px; padding-right: 18px; }
  .v1-nav-links, .v2-nav-links { display: none; }
  .v1-bento-grid, .v3-bento-grid { grid-template-columns: 1fr; }
  .v1-bento-wide, .v3-b-2x2, .v3-b-wide { grid-column: span 1; }
  .v3-b-2x2 { grid-row: span 1; }
  .v3-how-track { grid-template-columns: 1fr; }
  .v3-cta-card { padding: 56px 24px; }
  .v1-phone, .v3-phone { width: 240px; height: 480px; }
  .v1-float-bought { right: -20px; }
  .v1-float-live { left: -10px; }
  .v3-mascot { width: 90px; bottom: 0; right: 0; }
  .v1-themes-row { gap: 16px; }
  .v1-real-grid { grid-template-columns: 1fr; }
  .v1-real-tall { grid-column: span 1; grid-row: span 1; }
  .v1-real-wide { grid-column: span 1; }
}

/* ─────────────────────────────────────────────────
   PhoneFrame — Android-style bezel for real screenshots
   ───────────────────────────────────────────────── */
.pf-wrap {
  position: relative;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pf-frame {
  position: relative;
  background: linear-gradient(155deg, #1a1d26 0%, #0b0d12 100%);
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.06) inset,
    0 1px 2px rgba(255,255,255,0.08) inset,
    0 30px 60px -20px rgba(15, 23, 42, 0.35),
    0 12px 24px -8px rgba(15, 23, 42, 0.18);
}
.pf-pinhole {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  background: #000;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 1.5px #1a1d26;
}
.pf-screen {
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1220;
  position: relative;
}
.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.pf-float {
  animation: floatY 6s ease-in-out infinite;
}
.pf-wrap:hover { transform: scale(1.02) rotate(0deg) !important; }

/* Theme showcase — three phones side by side */
.v1-themes {
  padding: 100px 24px 80px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.v1-themes-head { max-width: 680px; margin: 0 auto 56px; }
.v1-themes-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 36px;
  flex-wrap: wrap;
  perspective: 1200px;
}
.v1-themes-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: themeFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.v1-themes-item:nth-child(1) { animation-delay: 0.05s; }
.v1-themes-item:nth-child(2) { animation-delay: 0.18s; }
.v1-themes-item:nth-child(3) { animation-delay: 0.31s; }
@keyframes themeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.v1-themes-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-700);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.v1-themes-dot { width: 12px; height: 12px; border-radius: 50%; }

/* Real-screens bento — second bento with actual screenshots */
.v1-real {
  padding: 100px 24px 80px;
  max-width: 1240px;
  margin: 0 auto;
}
.v1-real-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.v1-real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v1-real-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--ink-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 380px;
}
.v1-real-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.v1-real-tall { grid-row: span 2; min-height: 780px; }
.v1-real-wide { grid-column: span 2; }
.v1-real-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.v1-real-card p {
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 380px;
}
.v1-real-card .v1-real-screen {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.v1-real-card .v1-real-screen-clip {
  /* Crops bottom of phone, showing only top of screen — for short cards */
  margin-bottom: -120px;
}
.v1-real-card .v1-real-screen-side {
  /* Phone on right side, text on left */
  position: absolute;
  right: -40px;
  bottom: -60px;
}
.v1-real-card-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--blue-600);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

/* Hero with real phone — replaces drawn placeholder */
.v1-phone-real {
  position: relative;
  display: flex;
  justify-content: center;
}
.v1-phone-real .pf-wrap {
  animation: floatY 6s ease-in-out infinite;
}
.v1-real-bg-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(47, 107, 255, 0.18), transparent 60%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

/* Showcase visuals — replace ui-screen with real phones */
.v1-show-visual {
  align-items: center !important;
  justify-content: center !important;
  min-height: 660px;
  padding: 40px 24px !important;
  overflow: visible;
}
.v1-show-visual .pf-wrap {
  filter: drop-shadow(0 30px 50px rgba(15, 23, 42, 0.18));
}

/* Hide floating chips on narrow viewports — they break layout */
@media (max-width: 860px) {
  .v1-float-live, .v1-float-bought { display: none; }
  .v1-show-visual { min-height: 580px; }
}

