/* ════════════════════════════════════════════════════════════════
   Maki — Landing (Anime / Cyan-Ice)
   Performance-tuned: minimal backdrop-filter, no heavy animations,
   no 3D tilt event handlers, lighter particle layer.
   ════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   Background (static, no animation)
───────────────────────────────────── */
.landing-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  contain: strict;
}

.landing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(1.1) contrast(1.05);
  /* no animation: was bg-drift (heavy on weaker GPUs) */
  transform: scale(1.04);
}

.landing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34,211,238,0.16) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,10,20,0.55) 0%, rgba(5,10,20,0.82) 60%, rgba(5,10,20,0.97) 100%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* particles disabled for performance (no continuous animations) */
.particles-layer { display: none !important; }

/* ─────────────────────────────────────
   Off-screen render skipping
   `content-visibility: auto` lets the browser skip layout/paint
   for sections that aren't in (or near) the viewport.
───────────────────────────────────── */
#discover,
#features,
.community-section,
.landing-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ─────────────────────────────────────
   Hero
───────────────────────────────────── */
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 70px;
}

.hero-grid {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-left { position: relative; z-index: 2; }

/* ─────────────────────────────────────
   Hero tag — community pill with avatars
───────────────────────────────────── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 16px 5px 6px;
  background:
    linear-gradient(180deg, rgba(165,243,252,0.10), rgba(165,243,252,0.04));
  border: 1px solid rgba(165,243,252,0.18);
  border-radius: 999px;
  margin-bottom: 28px;
  position: relative;
  box-shadow:
    0 6px 22px rgba(8,14,24,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
  font-family: var(--font-display);
}

.hero-tag-avatars {
  display: inline-flex;
  align-items: center;
  padding-left: 2px;
}

.hta-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  border: 2px solid #050a14;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hta-av:first-child { margin-left: 0; }

.hero-tag:hover .hta-av { transform: translateY(-1px); }

.hta-av-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ice-3), var(--ice-5));
  color: #061121;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

.hero-tag-divider {
  width: 1px;
  height: 18px;
  background: rgba(165,243,252,0.18);
  border-radius: 1px;
}

.hero-tag-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ice-2);
  white-space: nowrap;
}

.hero-tag-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,0.55);
  flex-shrink: 0;
}

.hero-tag-label { letter-spacing: 0.1px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: -1.8px;
  color: #f0f9ff;
}

.gradient-text,
.hero-title .gradient-text {
  background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 35%, #06b6d4 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15.5px, 1.45vw, 17.5px);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.65;
}

/* Claim input */
.claim-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10,18,31,0.65);
  border: 1px solid rgba(165,243,252,0.16);
  border-radius: 14px;
  padding: 5px 5px 5px 16px;
  max-width: 460px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.claim-form:focus-within {
  border-color: rgba(34,211,238,0.55);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.10);
}

.claim-prefix {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ice-3);
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  user-select: none;
}

.claim-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 14.5px;
  padding: 12px 8px;
  font-weight: 500;
  min-width: 0;
}
.claim-input::placeholder { color: var(--text-muted); }

.claim-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 50%, #06b6d4 100%);
  color: #061121;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow:
    0 4px 14px rgba(34,211,238,0.30),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
.claim-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(34,211,238,0.45), inset 0 1px 0 rgba(255,255,255,0.6);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-mini-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}
.hero-mini-note svg { color: var(--ice-3); }

/* ─────────────────────────────────────
   Hero Right — Profile preview deck
───────────────────────────────────── */
.hero-right {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  /* large soft radial — no filter:blur, the gradient itself fades smoothly */
  background: radial-gradient(circle, rgba(34,211,238,0.14), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.preview-deck {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative back "mini" cards floating behind the main preview */
.preview-mini {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  background: rgba(8,14,24,0.92);
  border: 1px solid rgba(165,243,252,0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  opacity: 0.92;
  pointer-events: none;
}

.preview-mini-left {
  top: 12%;
  left: -10%;
  transform: rotateZ(-6deg);
}
.preview-mini-right {
  bottom: 14%;
  right: -8%;
  transform: rotateZ(5deg);
}

.preview-mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  border: 2px solid rgba(8,14,24,0.9);
  flex-shrink: 0;
}

.preview-mini-meta { line-height: 1.2; }

.preview-mini-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.preview-mini-name .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.6);
}
.preview-mini-name .dot.dot-idle { background: #fbbf24; box-shadow: 0 0 6px rgba(251,191,36,0.5); }

.preview-mini-handle {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ice-3);
  opacity: 0.85;
  margin-top: 2px;
}

/* Front (main) card */
.preview-card {
  position: relative;
  z-index: 3;
  width: 320px;
  background: #0a1426;
  border: 1px solid rgba(165,243,252,0.18);
  border-radius: 22px;
  padding: 0 0 18px;
  box-shadow:
    0 32px 72px rgba(0,0,0,0.55),
    0 0 60px rgba(34,211,238,0.14),
    inset 0 1px 0 rgba(165,243,252,0.10);
  transform: rotateZ(-1.5deg);
}

.preview-banner {
  height: 92px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background-color: #082233;
}
.preview-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,14,24,0.7));
}

.preview-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -38px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.preview-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 4px solid #0a1320;
  background-color: #082233;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 22px rgba(34,211,238,0.35);
  position: relative;
}

.preview-avatar::after {
  content: '';
  position: absolute;
  bottom: 3px; right: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #34d399;
  border: 3px solid #0a1320;
}

.preview-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  padding: 0 18px;
}

.preview-verified {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #061121;
  font-size: 9px;
  flex-shrink: 0;
}

.preview-handle {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ice-3);
  margin-bottom: 14px;
  opacity: 0.85;
  padding: 0 18px;
}

.preview-bio {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  padding: 0 18px;
}

.preview-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0 18px;
}
.preview-badge {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(165,243,252,0.08);
  border: 1px solid rgba(165,243,252,0.15);
  color: var(--ice-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.preview-badge.gold { background: rgba(251,191,36,0.10); border-color: rgba(251,191,36,0.25); color: #fbbf24; }
.preview-badge.purple { background: rgba(167,139,250,0.10); border-color: rgba(167,139,250,0.25); color: #c4b5fd; }

.preview-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 18px;
}
.preview-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(165,243,252,0.05);
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 11px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.preview-link:hover {
  background: rgba(165,243,252,0.08);
  border-color: rgba(165,243,252,0.22);
}
.preview-link svg,
.preview-link i {
  width: 16px;
  text-align: center;
  color: var(--ice-3);
  font-size: 14px;
}
.preview-link-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────
   Sections — base
───────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ice-3);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-3));
}
.section-label::after {
  background: linear-gradient(90deg, var(--ice-3), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #f0f9ff;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─────────────────────────────────────
   Discover — Auto-scrolling marquee
───────────────────────────────────── */
.discover-rail {
  position: relative;
  overflow: hidden;
  /* fade out both edges so cards melt into the background */
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  padding: 8px 0 16px;
}

.discover-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-left 60s linear infinite;
  will-change: transform;
}

.discover-rail:hover .discover-track,
.discover-rail:focus-within .discover-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from { transform: translate3d(0, 0, 0); }
  /* the track is rendered twice, so -50% loops seamlessly */
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .discover-track { animation: none; }
}

.user-card {
  flex: 0 0 240px;
  background: rgba(10,18,31,0.6);
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  /* Only animate cheap properties (transform/colors). Box-shadow swaps are
     paint-heavy on hover and cause visible mouse lag. */
  transition: transform 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  position: relative;
}

.user-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.32);
}

.user-card-banner {
  height: 70px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.user-card-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,14,24,0.7));
}

.user-card-body {
  padding: 0 16px 16px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.user-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #0a1320;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  position: relative;
}
.user-card-avatar.is-fallback {
  background-color: #07101c;
  background-image:
    url('../brand/maki-128.png'),
    radial-gradient(120% 100% at 30% 20%, rgba(103, 232, 249, 0.22), transparent 68%),
    linear-gradient(165deg, #0e1a2c 0%, #08121f 100%);
  background-size: 58% auto, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(103, 232, 249, 0.18),
    0 0 18px -8px rgba(34, 211, 238, 0.35);
}
.user-card-avatar.online::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #34d399;
  border: 2.5px solid #0a1320;
}

.discover-empty {
  flex: 0 0 auto;
  min-width: min(520px, 80vw);
  margin: 8px auto;
  padding: 28px 24px;
  text-align: center;
  color: rgba(186, 224, 255, 0.72);
  font-size: 14px;
  border: 1px dashed rgba(165, 243, 252, 0.18);
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.45);
}
.discover-empty--loading {
  border-style: solid;
  opacity: 0.7;
}
.user-card-bio--empty {
  min-height: 0;
}

.user-card-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.user-card-name .verified {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #061121;
  font-size: 7.5px;
  flex-shrink: 0;
}

.user-card-handle {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ice-3);
  opacity: 0.8;
  margin-bottom: 8px;
}

.user-card-bio {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

/* ─────────────────────────────────────
   Features — Scrapbook board
   Numbered cards with mock UI previews
───────────────────────────────────── */
.features-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14,22,38,0.78), rgba(10,18,31,0.62));
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 20px;
  padding: 18px 20px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  /* compositor-only transitions on hover (no paint-heavy shadow swaps) */
  transition: transform 0.2s ease, border-color 0.2s ease;
}

/* hairline highlight accent on the left edge */
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--ice-3) 50%, transparent);
  opacity: 0.55;
  border-radius: 2px;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.28);
}

/* Asymmetric, scrapbook layout */
.f-customize { grid-column: span 7; grid-row: span 2; min-height: 360px; transform: rotate(-0.4deg); }
.f-onelink   { grid-column: span 5; min-height: 220px; transform: rotate(0.3deg); }
.f-live      { grid-column: span 5; min-height: 220px; transform: rotate(-0.25deg); }
.f-insights  { grid-column: span 4; transform: rotate(0.3deg); }
.f-premium   { grid-column: span 4; transform: rotate(-0.2deg); }
.f-fast      { grid-column: span 4; transform: rotate(0.25deg); }

.f-customize:hover,
.f-onelink:hover,
.f-live:hover,
.f-insights:hover,
.f-premium:hover,
.f-fast:hover {
  /* preserve subtle rotation on hover, just lift */
  transform: translateY(-4px);
}

/* head: numbered tag + status chip */
.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 6px;
  background: rgba(165,243,252,0.06);
  border: 1px solid rgba(165,243,252,0.16);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.tag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  color: #061121;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0;
}

.tag-label {
  color: var(--ice-2);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10.5px;
}

.feature-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(165,243,252,0.04);
  border: 1px solid rgba(165,243,252,0.08);
  white-space: nowrap;
}

.feature-stat.up { color: #67e8f9; border-color: rgba(34,211,238,0.30); }

.feature-stat.dot-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6ee7b7;
  border-color: rgba(52,211,153,0.35);
}
.feature-stat.dot-stat i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.7);
}

/* title with // marker */
.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #f0f9ff;
  letter-spacing: -0.2px;
  margin: 0 0 6px;
  line-height: 1.3;
}

.f-customize .feature-title { font-size: 26px; line-height: 1.2; max-width: 560px; }

.feature-desc {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.f-customize .feature-desc { font-size: 14.5px; max-width: 560px; }

/* shared demo block (lives at bottom) */
.feature-demo {
  margin-top: auto;
  padding-top: 18px;
}

/* ── 01 Customize: theme thumbs + swatch row ── */
.demo-customize {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.theme-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-thumb {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  box-shadow:
    0 6px 16px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.theme-thumb:hover { transform: translateY(-3px) rotate(-2deg); }

.theme-ring {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 2px solid var(--c);
  box-shadow: 0 0 14px color-mix(in srgb, var(--c) 55%, transparent);
  pointer-events: none;
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .theme-ring { box-shadow: 0 0 14px rgba(34,211,238,0.45); }
}

.theme-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  background: rgba(165,243,252,0.06);
  border: 1px dashed rgba(165,243,252,0.22);
  color: var(--ice-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.demo-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.demo-swatches .sw {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--c);
  box-shadow:
    0 3px 10px color-mix(in srgb, var(--c) 35%, transparent),
    inset 0 0 0 1px rgba(255,255,255,0.18);
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .demo-swatches .sw { box-shadow: 0 3px 10px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.18); }
}

/* ── 02 One link: fake URL bar + link rows ── */
.demo-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-urlbar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  background: rgba(8,14,24,0.7);
  border: 1px solid rgba(165,243,252,0.12);
  border-radius: 9px;
}
.demo-favicon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(165,243,252,0.25);
  flex-shrink: 0;
}
.demo-url {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ice-2);
}
.demo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 11px;
  background: rgba(165,243,252,0.04);
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ice-2);
}
.demo-link em {
  font-style: normal;
  font-size: 10px;
  color: var(--text-muted);
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(165,243,252,0.06);
}
.demo-link em.live {
  color: #6ee7b7;
  background: rgba(52,211,153,0.10);
}

/* ── 03 Live: now-playing widget ── */
.demo-music {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(8,14,24,0.65);
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 12px;
}
.demo-music-art {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, #67e8f9, #0891b2 55%, #082233 100%);
  box-shadow: 0 6px 14px rgba(34,211,238,0.30);
  flex-shrink: 0;
  overflow: hidden;
}
.demo-music-pulse {
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.45);
  opacity: 0.65;
}
.demo-music-meta { flex: 1; min-width: 0; }
.demo-music-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-display);
}
.demo-music-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 1px;
}
.demo-music-bar {
  margin-top: 7px;
  height: 3px;
  background: rgba(165,243,252,0.10);
  border-radius: 99px;
  overflow: hidden;
}
.demo-music-bar span {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, #67e8f9, #22d3ee);
  border-radius: 99px;
  box-shadow: 0 0 6px rgba(34,211,238,0.5);
}

/* ── 04 Insights: mini line chart ── */
.demo-chart {
  height: 56px;
  position: relative;
}
.demo-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── 05 Premium: avatar with crown + badges ── */
.demo-premium {
  display: flex;
  align-items: center;
  gap: 14px;
}

.premium-avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px #050a14,
    0 0 0 4px rgba(251,191,36,0.55),
    0 8px 24px rgba(251,191,36,0.25);
}

.premium-crown {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  filter: drop-shadow(0 2px 4px rgba(251,191,36,0.55));
}
.premium-crown svg { width: 100%; height: 100%; }

.demo-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.db {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(165,243,252,0.08);
  border: 1px solid rgba(165,243,252,0.16);
  color: var(--ice-1);
}
.db.gold {
  background: linear-gradient(135deg, rgba(251,191,36,0.20), rgba(245,158,11,0.10));
  border-color: rgba(251,191,36,0.40);
  color: #fbbf24;
}
.db.purple {
  background: linear-gradient(135deg, rgba(167,139,250,0.20), rgba(139,92,246,0.08));
  border-color: rgba(167,139,250,0.40);
  color: #c4b5fd;
}

/* ── 06 Fast: speed gauge ── */
.demo-speed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.speed-track {
  position: relative;
  height: 6px;
  border-radius: 99px;
  background: rgba(165,243,252,0.08);
  overflow: hidden;
}
.speed-track span {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, #67e8f9, #22d3ee 60%, #06b6d4);
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(34,211,238,0.55);
}
.speed-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

/* Big card decorations (only for f-customize) — no filter:blur, gradient fades itself */
.f-customize::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle, rgba(34,211,238,0.12), transparent 70%);
  pointer-events: none;
}

/* ─────────────────────────────────────
   Pricing
───────────────────────────────────── */
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(10,18,31,0.62);
  border: 1px solid rgba(165,243,252,0.10);
  border-radius: 22px;
  padding: 30px 26px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.22);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(34,211,238,0.10), rgba(10,18,31,0.7));
  border-color: rgba(34,211,238,0.32);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px; left: 30%; right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #67e8f9, transparent);
}

.pricing-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a5f3fc, #06b6d4);
  color: #061121;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-period { font-size: 13px; color: var(--text-muted); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.45;
}
.pricing-features li svg {
  width: 16px; height: 16px;
  color: var(--ice-3);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li svg { color: var(--ice-2); }

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.pricing-btn-secondary {
  background: rgba(165,243,252,0.08);
  border: 1px solid rgba(165,243,252,0.14);
  color: var(--text-primary);
}
.pricing-btn-secondary:hover {
  background: rgba(165,243,252,0.14);
  color: #fff;
}
.pricing-btn-primary {
  background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 50%, #06b6d4 100%);
  color: #061121;
  box-shadow: 0 4px 16px rgba(34,211,238,0.30);
}
.pricing-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(34,211,238,0.45);
  color: #061121;
}

/* ─────────────────────────────────────
   Community + Roadmap section
───────────────────────────────────── */
.community-section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.community-card {
  position: relative;
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(14,22,38,0.82), rgba(10,18,31,0.65));
  border: 1px solid rgba(165,243,252,0.12);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  /* compositor-only hover transitions */
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.32);
}

/* Decorative shape behind each card — no filter:blur, the radial fades itself */
.cc-shape {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(88,101,242,0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cc-shape-r {
  background:
    radial-gradient(circle, rgba(251,191,36,0.20), transparent 70%);
  right: auto;
  left: -120px;
  bottom: -120px;
  top: auto;
}

/* Wildflover card — gold (LoL) hover accent */
.wildflover-card:hover {
  border-color: rgba(251,191,36,0.35);
}

/* head row: icon + status pill */
.cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5865f2, #4452c2);
  color: #fff;
  box-shadow:
    0 8px 22px rgba(88,101,242,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.cc-icon svg { width: 24px; height: 24px; }

/* When the icon is rendered as a real image (server banner) */
.cc-icon-image {
  background-size: cover;
  background-position: center;
  background-color: #082233;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
}
.cc-icon-image::after {
  /* subtle glossy sheen on top */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 45%);
  pointer-events: none;
}

.cc-icon-maki {
  background-image: url('../brand/maki-discord.png');
  box-shadow:
    0 10px 26px rgba(56,189,248,0.40),
    inset 0 0 0 1px rgba(165,243,252,0.25);
}

.cc-icon-wildflover {
  background-image: url('../brand/wildflover-icon.png?v=20260802');
  background-color: #1a1208;
  box-shadow:
    0 10px 26px rgba(251,191,36,0.45),
    inset 0 0 0 1px rgba(251,191,36,0.30);
}

.cc-icon.roadmap-icon {
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  color: #061121;
  box-shadow:
    0 8px 22px rgba(34,211,238,0.40),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* legacy class kept for safety */
.cc-icon.wildflover-icon {
  background: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
  color: #fff;
  box-shadow:
    0 8px 22px rgba(244,114,182,0.40),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.cc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #6ee7b7;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.30);
  letter-spacing: 0.3px;
}
.cc-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52,211,153,0.7);
}
.cc-pill.cc-pill-soft {
  color: var(--ice-2);
  background: rgba(34,211,238,0.08);
  border-color: rgba(34,211,238,0.28);
}

/* Wildflover pill — gold (LoL skin manager) */
.cc-pill.cc-pill-wf {
  color: #fde68a;
  background: rgba(251,191,36,0.10);
  border-color: rgba(251,191,36,0.36);
  text-transform: uppercase;
}
.cc-pill-dot.cc-pill-dot-wf {
  background: #fbbf24;
  box-shadow: 0 0 6px rgba(251,191,36,0.7);
}

.cc-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ice-3);
  opacity: 0.85;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.cc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #f0f9ff;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.cc-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.cc-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cc-foot-quiet { justify-content: flex-start; }

.cc-subtle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.cc-avatars {
  display: inline-flex;
  align-items: center;
}
.cc-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #082233;
  border: 2px solid #0a121f;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.cc-av:first-child { margin-left: 0; }

.cc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 50%, #06b6d4 100%);
  color: #061121;
  font-weight: 700;
  font-size: 13px;
  border-radius: 11px;
  letter-spacing: 0.1px;
  box-shadow:
    0 8px 20px rgba(34,211,238,0.48),
    inset 0 1px 0 rgba(255,255,255,0.55);
  /* keep transition compositor-only */
  transition: transform 0.2s ease;
}
.cc-cta svg { width: 14px; height: 14px; }

.community-card:hover .cc-cta {
  transform: translateX(2px);
}

/* Wildflover CTA — gold gradient (LoL skin manager) */
.cc-cta.cc-cta-wf {
  background: linear-gradient(135deg, #fef9c3 0%, #fde047 45%, #f59e0b 100%);
  color: #2a1a06;
  box-shadow:
    0 8px 20px rgba(251,191,36,0.50),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

/* Roadmap list */
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(8,14,24,0.55);
  border: 1px solid rgba(165,243,252,0.08);
  border-radius: 12px;
}

.rm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: 0 0 0 0 transparent;
}
.rm-dot.rm-now {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,0.7);
}
.rm-dot.rm-next {
  background: var(--ice-3);
  box-shadow: 0 0 6px rgba(103,232,249,0.55);
}
.rm-dot.rm-later { background: rgba(165,243,252,0.25); }

.rm-text {
  font-size: 13.5px;
  color: var(--text-primary);
  font-weight: 500;
}

.rm-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(165,243,252,0.05);
  border: 1px solid rgba(165,243,252,0.10);
  color: var(--text-muted);
}
.rm-tag.rm-tag-now {
  color: #6ee7b7;
  background: rgba(52,211,153,0.10);
  border-color: rgba(52,211,153,0.30);
}

/* ─────────────────────────────────────
   Footer
───────────────────────────────────── */
.landing-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(165,243,252,0.08);
  padding: 40px 24px 28px;
  background: rgba(5,10,20,0.55);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-row .topbar-brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 14px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(165,243,252,0.06);
  border: 1px solid rgba(165,243,252,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-2);
  font-size: 13px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.footer-socials a:hover {
  background: rgba(165,243,252,0.14);
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(165,243,252,0.22);
}

.footer-col-title {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ice-3);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(165,243,252,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 12.5px;
}

/* ─────────────────────────────────────
   Buttons override (anime cyan)
───────────────────────────────────── */
.btn-brand {
  background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 50%, #06b6d4 100%);
  color: #061121;
  font-weight: 700;
  box-shadow:
    0 4px 18px rgba(34,211,238,0.35),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(34,211,238,0.55),
    inset 0 1px 0 rgba(255,255,255,0.6);
  color: #061121;
}

.btn-secondary {
  background: rgba(165,243,252,0.06);
  border: 1px solid rgba(165,243,252,0.14);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: rgba(165,243,252,0.12);
  border-color: rgba(165,243,252,0.25);
}

/* ─────────────────────────────────────
   Responsive
───────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 480px; }
  .features-board { grid-template-columns: repeat(6, 1fr); }
  .f-customize { grid-column: span 6; grid-row: auto; min-height: 280px; }
  .f-onelink   { grid-column: span 3; }
  .f-live      { grid-column: span 3; }
  .f-insights  { grid-column: span 2; }
  .f-premium   { grid-column: span 2; }
  .f-fast      { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  /* hide back deck cards on smaller screens (they overflow) */
  .preview-mini-left  { left: -2%; }
  .preview-mini-right { right: 0; }
}

@media (max-width: 768px) {
  .landing-hero { padding: 110px 18px 50px; }
  .section { padding: 56px 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .claim-form { flex-wrap: wrap; padding: 6px; }
  .claim-prefix { padding: 8px 4px 0 8px; }
  .claim-input { padding: 8px; }
  .claim-submit { width: 100%; }
  .hero-right { height: 460px; }
  .preview-card { width: 290px; }
  .preview-mini { display: none; } /* declutter on mobile */
  .features-board { grid-template-columns: 1fr; }
  .f-customize, .f-onelink, .f-live,
  .f-insights, .f-premium, .f-fast {
    grid-column: span 1;
    transform: none;
    min-height: 200px;
  }
  .f-customize { min-height: 240px; }
  .f-customize .feature-title { font-size: 22px; }
  .pricing-section .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .community-card { min-height: 280px; padding: 22px; }
  .cc-title { font-size: 19px; }
  .user-card { flex: 0 0 220px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
