:root {
  --ink: #f8edcd;
  --text: #fff6df;
  --muted: rgba(255, 246, 223, 0.72);
  --dark: #080603;
  --dark-2: #120d07;
  --panel: rgba(20, 13, 7, 0.72);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(246, 203, 107, 0.23);
  --gold: #f3c75b;
  --gold-2: #b67b1d;
  --blue: #86d8ff;
  --aqua: #5de7d6;
  --rose: #ffb88b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 199, 91, 0.2), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(134, 216, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #090704 0%, #150f08 45%, #070503 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(1220px, calc(100% - 40px)); margin: 0 auto; }
.hidden { display: none !important; }

.aurora, .grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.aurora {
  background:
    radial-gradient(circle at 50% 10%, rgba(243, 199, 91, 0.25), transparent 30%),
    radial-gradient(circle at 10% 50%, rgba(93, 231, 214, 0.08), transparent 26%),
    radial-gradient(circle at 90% 60%, rgba(243, 199, 91, 0.12), transparent 28%);
  filter: blur(10px);
  animation: auroraMove 16s ease-in-out infinite alternate;
}
.grain {
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 80%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 5, 3, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(7, 5, 3, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 18px 40px rgba(243, 199, 91, 0.18);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 1.35rem; letter-spacing: 0.02em; }
.brand-copy span { color: var(--muted); font-size: 0.88rem; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.2s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.main-nav .nav-pill {
  color: #1a1004;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  box-shadow: 0 16px 30px rgba(243, 199, 91, 0.22);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.62;
  transform: scale(1.04);
  filter: brightness(0.96) contrast(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(243, 199, 91, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(8, 6, 3, 0.78) 0%, rgba(8, 6, 3, 0.46) 24%, rgba(8, 6, 3, 0.18) 58%, rgba(8, 6, 3, 0.64) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 540px);
  gap: 40px;
  align-items: start;
}
.hero-left { max-width: 700px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-subtitle {
  margin: 14px 0 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}
.hero-left h1 {
  margin: 20px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.claim {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  text-shadow: 0 0 35px rgba(243, 199, 91, 0.22);
}
.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 246, 223, 0.84);
  font-size: 1.22rem;
  line-height: 1.75;
}
.hero-note { margin: 12px 0 0; color: #fff0a6; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 10px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.hero-metrics div, .hero-points, .what-card, .compare-card, .loop-card, .reward-card,
.membership-card, .deal-card, .feature-card, .post-card, .creator-panel, .vision-card,
.join-card, .community-card, .short-card, .market-card, .mini-creator-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-metrics div {
  padding: 18px;
  border-radius: 18px;
}
.hero-metrics strong { display: block; color: var(--gold); margin-bottom: 6px; }
.hero-metrics span { color: rgba(255, 255, 255, 0.76); font-size: 0.92rem; }
.hero-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
}
.lp-chip {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 12px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(243, 199, 91, 0.28), rgba(255, 255, 255, 0.14));
  color: #fff;
  font-weight: 900;
  font-size: 1.28rem;
  box-shadow: 0 22px 50px rgba(243, 199, 91, 0.18);
}
.lp-chip small { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; }
.ask-guide {
  margin-top: 34px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(8, 6, 3, 0.94), rgba(12, 8, 4, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}
.ask-copy { margin-bottom: 18px; }
.ask-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ask-subtitle { margin: 12px 0 0; color: rgba(255, 255, 255, 0.82); font-size: 1rem; line-height: 1.75; }
.ask-form { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: stretch; margin-top: 18px; }
.ask-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.ask-form input::placeholder { color: rgba(255, 255, 255, 0.58); }
.ask-response {
  min-height: 140px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}
.ask-thinking { color: var(--gold); font-weight: 700; margin: 0 0 10px; }
.ask-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.ask-card, .deal-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ask-card.official, .deal-card.official { border-color: rgba(243, 199, 91, 0.35); box-shadow: 0 28px 72px rgba(243, 199, 91, 0.18); }
.ask-card h3, .deal-card h3 { margin: 16px 0 10px; color: #fff; }
.ask-card p, .deal-card p, .what-card p, .compare-card p, .reward-card p, .community-card p, .mini-creator-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.ask-card .deal-thumb, .deal-card .deal-thumb {
  height: 130px;
  margin-bottom: 16px;
}
.deal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ask-empty { margin-top: 18px; color: rgba(255, 255, 255, 0.72); }
.prompt-row { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.prompt-row button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.prompt-row button:hover,
.prompt-row button.active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(243, 199, 91, 0.45);
  box-shadow: 0 12px 30px rgba(243, 199, 91, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 17px;
  padding: 16px 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #150d03;
  background: linear-gradient(135deg, var(--gold), #fff0a6 55%, #c58a26);
  box-shadow: 0 20px 42px rgba(243, 199, 91, 0.26);
}
.btn-glass {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.btn-glow {
  color: #150d03;
  background: linear-gradient(135deg, rgba(243, 199, 91, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 20px 50px rgba(243, 199, 91, 0.28);
}
.btn.small { padding: 12px 16px; }
.btn.is-active, .btn:disabled {
  opacity: 0.9;
  cursor: default;
  border-color: rgba(243, 199, 91, 0.4);
  box-shadow: 0 14px 34px rgba(243, 199, 91, 0.18);
}

.app-preview {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(12, 8, 4, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.app-preview::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto;
  height: 240px;
  background: radial-gradient(circle, rgba(243, 199, 91, 0.35), transparent 58%);
}
.preview-topbar, .preview-wallet, .mockup-grid { position: relative; z-index: 1; }
.preview-topbar { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 18px; }
.status-live { color: var(--gold); font-weight: 900; }
.preview-wallet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.preview-wallet strong { color: #fff; font-size: 1.3rem; }
.preview-wallet span { color: rgba(255, 255, 255, 0.72); }
.mockup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mockup-card {
  padding: 22px;
  min-height: 170px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.mockup-card:hover { transform: translateY(-5px); border-color: rgba(243, 199, 91, 0.34); }
.mockup-tag, .deal-badge, .membership-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 199, 91, 0.16);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mockup-card strong { display: block; margin: 16px 0 10px; color: #fff; font-size: 1.15rem; line-height: 1.4; }
.mockup-card p { margin: 0; color: rgba(255, 255, 255, 0.78); line-height: 1.7; }

.section { padding: 88px 0; }
.section-header { display: grid; gap: 14px; max-width: 760px; }
.section-header h2, .compare-copy h2, .section-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; }
.section-header p, .section-copy p, .compare-copy p { margin: 0; color: rgba(255, 255, 255, 0.75); line-height: 1.8; }

.what-grid, .compare-grid, .deal-grid, .community-grid, .shorts-grid, .market-grid, .feature-grid {
  display: grid;
  gap: 18px;
}
.what-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 30px; }
.what-card, .compare-card, .reward-card, .community-card, .short-card, .mini-creator-card, .market-card, .feature-card {
  padding: 24px;
  border-radius: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.what-card:hover, .compare-card:hover, .reward-card:hover, .community-card:hover, .short-card:hover, .mini-creator-card:hover, .market-card:hover, .feature-card:hover, .post-card:hover, .deal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 199, 91, 0.28);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(243, 199, 91, 0.08);
}
.what-card span { display: block; color: var(--gold); font-weight: 800; margin-bottom: 14px; }
.compare-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
.compare-sentence { margin-top: 24px; font-weight: 800; color: #fff; }
.compare-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; }
.compare-card strong { display: block; margin-bottom: 12px; color: #fff; }

.loop-grid {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
  margin-top: 28px;
}
.loop-card {
  min-width: 220px;
  padding: 28px 24px;
  border-radius: 28px;
  text-align: center;
}
.loop-card span {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.loop-card strong { color: #fff; font-size: 1.4rem; line-height: 1.2; }
.loop-arrow { color: rgba(243, 199, 91, 0.9); font-size: 2.4rem; font-weight: 900; }

.points-grid { display: grid; grid-template-columns: 1.8fr 0.95fr; gap: 26px; align-items: start; margin-top: 30px; }
.earn-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.reward-card h3, .community-card h3, .mini-creator-card h3 { margin: 0 0 14px; color: #fff; }
.membership-card { padding: 28px; display: flex; flex-direction: column; gap: 18px; border-radius: 30px; }
.membership-card h3 { margin: 0; font-size: 1.8rem; color: #fff; }
.membership-card ul { margin: 0; padding-left: 20px; color: rgba(255, 255, 255, 0.82); line-height: 1.7; }
.membership-card li { margin-bottom: 8px; }

.deal-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 28px; }
.deal-card { position: relative; }
.deal-prices { display: grid; gap: 10px; margin-bottom: 16px; }
.deal-prices div, .deal-meta { display: flex; justify-content: space-between; }
.deal-prices span { color: rgba(255, 255, 255, 0.65); }
.deal-meta { margin-bottom: 10px; color: rgba(255, 255, 255, 0.9); font-weight: 700; }
.deal-card button { width: 100%; margin-top: 16px; }
.deal-thumb, .market-thumb, .short-thumb, .creator-cover, .post-art {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.deal-thumb, .market-thumb {
  height: 130px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.thumb-official { background: linear-gradient(135deg, rgba(243, 199, 91, 0.5), rgba(134, 216, 255, 0.24)), radial-gradient(circle at 70% 40%, rgba(255,255,255,0.3), transparent 35%); }
.thumb-creator { background: linear-gradient(135deg, rgba(255, 184, 139, 0.36), rgba(243, 199, 91, 0.26)), radial-gradient(circle at 25% 30%, rgba(255,255,255,0.22), transparent 28%); }
.thumb-market { background: linear-gradient(135deg, rgba(93, 231, 214, 0.28), rgba(243, 199, 91, 0.28)), radial-gradient(circle at 75% 20%, rgba(255,255,255,0.25), transparent 25%); }
.thumb-premium { background: linear-gradient(135deg, rgba(86, 115, 255, 0.22), rgba(243, 199, 91, 0.22)), radial-gradient(circle at 60% 25%, rgba(255,255,255,0.22), transparent 28%); }
.thumb-digital { background: linear-gradient(135deg, rgba(134, 216, 255, 0.3), rgba(255, 184, 139, 0.24)), radial-gradient(circle at 35% 65%, rgba(255,255,255,0.25), transparent 22%); }

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.feature-card span { display: inline-grid; place-items: center; width: 58px; height: 58px; font-size: 1.45rem; border-radius: 18px; background: rgba(255, 255, 255, 0.08); margin-bottom: 18px; }
.feature-card h3 { margin: 0 0 10px; }
.feature-card p { margin: 0; color: rgba(255, 255, 255, 0.76); line-height: 1.75; }

.split-layout, .creator-grid, .footer-grid {
  display: grid;
  gap: 28px;
}
.split-layout { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.composer, .join-form {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.composer input, .join-form input {
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.micro-copy, .form-message { margin-top: 12px; color: rgba(255, 255, 255, 0.7); }
.feed-wall { display: grid; gap: 18px; }
.post-card {
  padding: 22px;
  border-radius: 26px;
}
.post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 16px;
}
.post-head small { color: rgba(255, 255, 255, 0.6); margin-left: auto; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(243, 199, 91, 0.55), rgba(255, 255, 255, 0.18));
}
.avatar.blue, .avatar-chip.blue { background: linear-gradient(135deg, rgba(134, 216, 255, 0.64), rgba(255,255,255,0.18)); }
.avatar.gold, .avatar-chip.gold { background: linear-gradient(135deg, rgba(243, 199, 91, 0.72), rgba(255,255,255,0.18)); }
.avatar.rose, .avatar-chip.rose { background: linear-gradient(135deg, rgba(255, 184, 139, 0.7), rgba(255,255,255,0.18)); }
.avatar-chip.aqua { background: linear-gradient(135deg, rgba(93, 231, 214, 0.68), rgba(255,255,255,0.18)); }
.avatar-chip {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.12);
}
.avatar-stack { display: flex; }
.avatar-stack .avatar-chip { margin-right: -8px; }
.post-card p { margin: 0; color: rgba(255, 255, 255, 0.84); line-height: 1.75; }
.post-art {
  height: 150px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sky-art {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.28), transparent 20%),
    linear-gradient(135deg, rgba(243,199,91,0.35), rgba(134,216,255,0.28)),
    radial-gradient(circle at 72% 65%, rgba(243,199,91,0.28), transparent 22%);
}
.post-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.post-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}
.post-actions button.active {
  background: rgba(243, 199, 91, 0.16);
  border-color: rgba(243, 199, 91, 0.4);
  color: var(--ink);
}

.shorts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.short-card { padding: 16px; border-radius: 28px; }
.short-thumb {
  height: 280px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.short-one { background: linear-gradient(180deg, rgba(243, 199, 91, 0.24), rgba(8,6,3,0.2)), radial-gradient(circle at 52% 32%, rgba(255,255,255,0.18), transparent 22%); }
.short-two { background: linear-gradient(180deg, rgba(134, 216, 255, 0.28), rgba(8,6,3,0.2)), radial-gradient(circle at 32% 20%, rgba(255,255,255,0.2), transparent 22%); }
.short-three { background: linear-gradient(180deg, rgba(255, 184, 139, 0.26), rgba(8,6,3,0.2)), radial-gradient(circle at 72% 28%, rgba(255,255,255,0.18), transparent 25%); }
.short-four { background: linear-gradient(180deg, rgba(93, 231, 214, 0.24), rgba(8,6,3,0.2)), radial-gradient(circle at 25% 70%, rgba(255,255,255,0.18), transparent 26%); }
.play-badge, .video-length {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.play-badge { left: 16px; top: 16px; }
.video-length { right: 16px; bottom: 16px; color: #fff; }
.short-meta { display: grid; gap: 6px; }
.short-meta strong { font-size: 1.06rem; }
.short-meta span { color: rgba(255, 255, 255, 0.68); }

.community-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.community-card { display: flex; flex-direction: column; gap: 14px; }
.community-card button { margin-top: auto; }

.creator-grid { grid-template-columns: 0.92fr 1.08fr; align-items: start; }
.creator-panel, .vision-card, .join-card {
  padding: 24px;
  border-radius: 30px;
}
.creator-cover {
  height: 180px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(243, 199, 91, 0.28), rgba(134, 216, 255, 0.18)), radial-gradient(circle at 72% 18%, rgba(255,255,255,0.26), transparent 20%);
}
.creator-profile { display: flex; gap: 14px; align-items: center; }
.creator-profile img { width: 58px; height: 58px; border-radius: 18px; object-fit: cover; box-shadow: 0 0 0 1px var(--line); }
.creator-profile h3 { margin: 0; }
.creator-profile span { color: rgba(255, 255, 255, 0.68); }
.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.creator-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.creator-stats b { display: block; font-size: 1.1rem; }
.creator-stats span { color: rgba(255, 255, 255, 0.66); }
.creator-avatars { display: flex; gap: 8px; margin: 0 0 18px; }
.pill-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.pill-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
}
.creator-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.mini-creator-card { display: flex; flex-direction: column; gap: 14px; }
.mini-creator-card button { margin-top: auto; }

.market-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; }
.market-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}
.market-card h3 { margin: 0 0 12px; }
.market-card p { margin: 0 0 16px; color: rgba(255, 255, 255, 0.76); line-height: 1.7; }
.market-card b { color: #fff; font-size: 1.15rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.filter-row button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 16px;
  font-weight: 700;
}
.filter-row button.active {
  color: #160d03;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
}

.vision-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}
.vision-card img { width: 86px; height: 86px; border-radius: 24px; box-shadow: 0 0 0 1px var(--line); }
.join-card { max-width: 880px; margin: 0 auto; text-align: center; }
.site-footer { padding: 34px 0 50px; border-top: 1px solid var(--line); }
.footer-grid { grid-template-columns: 1fr auto; align-items: center; }
.footer-grid nav { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255, 255, 255, 0.7); }

.lp-toast-stack {
  position: fixed;
  right: 20px;
  top: 96px;
  z-index: 80;
  display: grid;
  gap: 10px;
}
.lp-toast {
  min-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(12, 8, 4, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lp-toast.show { transform: translateY(0); opacity: 1; }
.lp-toast.success { border-color: rgba(243, 199, 91, 0.38); }
.lp-toast.warn { border-color: rgba(255, 184, 139, 0.35); }
.lp-toast.info { border-color: rgba(134, 216, 255, 0.35); }
.lp-pulse { animation: lpPulse 0.7s ease; }
.unlocked { animation: unlockedGlow 1s ease; }
.shake { animation: shakeCard 0.45s ease; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }

.floating { animation: floatPanel 8s ease-in-out infinite; }
.floating-card-fast { animation: floatFast 6s ease-in-out infinite; }
.floating-card-slow { animation: floatSlow 8.5s ease-in-out infinite; }
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(243, 199, 91, 0.9);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 13px rgba(243, 199, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 199, 91, 0); }
}
@keyframes auroraMove {
  from { transform: translateY(-1.2%) scale(1); }
  to { transform: translateY(1.2%) scale(1.03); }
}
@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes floatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lpPulse {
  0% { box-shadow: 0 0 0 rgba(243, 199, 91, 0); }
  50% { box-shadow: 0 0 0 8px rgba(243, 199, 91, 0.12); }
  100% { box-shadow: 0 0 0 rgba(243, 199, 91, 0); }
}
@keyframes unlockedGlow {
  0% { box-shadow: 0 0 0 rgba(243, 199, 91, 0); }
  50% { box-shadow: 0 0 0 2px rgba(243, 199, 91, 0.25), 0 0 34px rgba(243, 199, 91, 0.24); }
  100% { box-shadow: 0 0 0 rgba(243, 199, 91, 0); }
}
@keyframes shakeCard {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@media (max-width: 1080px) {
  .hero-content,
  .compare-layout,
  .points-grid,
  .split-layout,
  .creator-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-metrics,
  .what-grid,
  .compare-grid,
  .deal-grid,
  .community-grid,
  .market-grid,
  .shorts-grid,
  .feature-grid,
  .creator-mini-grid,
  .mockup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .earn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loop-grid { grid-template-columns: 1fr; }
  .loop-arrow { display: none; }
  .hero-metrics div { min-height: 100%; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 14px;
    border-radius: 20px;
    background: rgba(8, 6, 3, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  .main-nav.open { display: flex; }
  .hero-actions, .composer, .join-form { flex-direction: column; }
  .btn, .composer button, .join-form button { width: 100%; }
  .ask-form { grid-template-columns: 1fr; }
  .prompt-row, .ask-cards, .what-grid, .compare-grid, .deal-grid, .community-grid,
  .shorts-grid, .market-grid, .feature-grid, .creator-mini-grid, .mockup-grid,
  .earn-grid, .hero-metrics { grid-template-columns: 1fr; }
  .creator-stats { grid-template-columns: 1fr; }
  .vision-card { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { text-align: center; }
  .footer-grid nav { justify-content: center; }
  .lp-toast-stack { left: 20px; right: 20px; top: auto; bottom: 20px; }
}


/* v0.5 Account, Rewards & Language */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(246, 203, 107, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.language-switch button {
  min-width: 42px;
  padding: 9px 11px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 246, 223, 0.74);
  background: transparent;
  font-weight: 900;
}
.language-switch button.active {
  color: #150d03;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  box-shadow: 0 10px 24px rgba(243, 199, 91, 0.22);
}

.account-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.account-card,
.rule-card,
.tier-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.account-card {
  border-radius: 32px;
  padding: 26px;
}
.account-form {
  display: grid;
  gap: 18px;
}
.account-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.account-form input,
.account-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}
.account-form select option {
  color: #130d06;
}
.interest-group {
  display: grid;
  gap: 12px;
}
.interest-group > span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}
.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.interest-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}
.starter-bonus {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(243, 199, 91, 0.25);
  background: rgba(243, 199, 91, 0.1);
  box-shadow: 0 24px 70px rgba(243, 199, 91, 0.1);
}
.starter-bonus strong {
  color: #fff0a6;
  font-size: 1.25rem;
}
.starter-bonus span {
  color: rgba(255, 255, 255, 0.74);
}
.profile-widget {
  display: grid;
  gap: 18px;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.profile-head img {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(243, 199, 91, 0.25);
}
.profile-head h3 {
  margin: 0;
  font-size: 1.5rem;
}
.profile-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.profile-stats div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.profile-stats strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
}
.profile-stats span {
  color: rgba(255, 255, 255, 0.64);
}
.level-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.level-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #fff0a6);
  box-shadow: 0 0 24px rgba(243, 199, 91, 0.26);
  transition: width 0.35s ease;
}
.profile-interests {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.rule-card,
.tier-card {
  padding: 24px;
  border-radius: 28px;
}
.rule-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.rule-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #150d03;
  background: linear-gradient(135deg, var(--gold), #fff0a6);
  font-weight: 900;
}
.rule-card p,
.tier-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}
.free-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 24px;
}
.tier-card h3 {
  margin: 16px 0 14px;
  color: #fff;
}
.tier-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}
.tier-card.premium {
  border-color: rgba(243, 199, 91, 0.35);
  box-shadow: 0 26px 80px rgba(243, 199, 91, 0.1);
}

@media (max-width: 1080px) {
  .account-grid,
  .free-premium-grid {
    grid-template-columns: 1fr;
  }
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .language-switch {
    margin-left: auto;
  }
  .rules-grid,
  .profile-stats {
    grid-template-columns: 1fr;
  }
  .profile-actions {
    flex-direction: column;
  }
}

/* v0.6 clarity, profiles, modals, galleries */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.profile-card,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 24px;
}
.profile-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 199, 91, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3), 0 0 0 1px rgba(243, 199, 91, .08);
}
.profile-card h3 { margin: 0; font-size: 1.35rem; }
.profile-card p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.65; }
.profile-mini-stats { display: grid; gap: 8px; color: rgba(255,255,255,.72); font-size: .92rem; }
.profile-card button { margin-top: auto; }
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.avatar-lux { background: radial-gradient(circle at 35% 25%, #fff0a6, transparent 18%), linear-gradient(135deg, #f3c75b, #392312 62%, #090704); }
.avatar-gold { background: radial-gradient(circle at 65% 30%, #fff0a6, transparent 16%), linear-gradient(135deg, #120d07, #b67b1d, #080603); }
.avatar-blue { background: radial-gradient(circle at 30% 25%, #fff, transparent 13%), linear-gradient(135deg, #86d8ff, #2f3f56 55%, #090704); }
.avatar-rose { background: radial-gradient(circle at 35% 25%, #fff, transparent 13%), linear-gradient(135deg, #ffb88b, #5a2a19 62%, #090704); }
.quote-card {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.quote-card blockquote {
  margin: 28px auto 14px;
  max-width: 880px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--ink);
}
.quote-card p { color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.modal-open { overflow: hidden; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(18px);
}
.detail-modal {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  border-radius: 34px;
  border: 1px solid rgba(243, 199, 91, .28);
  background: linear-gradient(180deg, rgba(18,13,7,.97), rgba(8,6,3,.96));
  box-shadow: 0 40px 120px rgba(0,0,0,.58);
  padding: 28px;
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}
.modal-product {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: start;
}
.modal-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(243,199,91,.22);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.modal-thumbs button {
  padding: 0;
  border: 1px solid rgba(243,199,91,.2);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.modal-thumbs img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.modal-copy h2,
.modal-profile h2,
.modal-post h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 18px 0 14px;
  line-height: 1.05;
}
.modal-copy p,
.modal-profile p,
.modal-post p {
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.modal-price-grid,
.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.modal-price-grid div,
.profile-detail-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.modal-price-grid span,
.profile-detail-grid span { display: block; color: rgba(255,255,255,.62); margin-bottom: 6px; }
.modal-price-grid strong,
.profile-detail-grid strong { color: #fff; }
.modal-note { font-size: .92rem; }
.modal-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
}
.modal-profile .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 34px;
}
.deal-card[data-deal-card], .market-card, .profile-card, .post-card { cursor: pointer; }
.deal-thumb img,
.market-thumb img { border-radius: 22px; }
.deal-card .deal-thumb { height: 160px; }
.ask-card .deal-thumb { height: 150px; }
@media (max-width: 1080px) {
  .profiles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modal-product, .modal-profile { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .profiles-grid, .modal-price-grid, .profile-detail-grid { grid-template-columns: 1fr; }
  .detail-modal { padding: 18px; border-radius: 26px; }
}

/* v0.9: more personal generated profile icons */
.profile-photo {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 45px rgba(0,0,0,.32);
  background: rgba(255,255,255,.08);
}
.modal-profile-photo {
  width: min(220px, 40vw);
  height: min(220px, 40vw);
  border-radius: 36px;
  align-self: start;
}
.mobile-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.mobile-demo-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.mobile-demo-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(243,199,91,.14);
  color: var(--gold);
  font-size: 1.45rem;
}
.mobile-demo-card h3 { margin: 0 0 10px; }
.mobile-demo-card p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.7; }
@media (max-width: 1080px) {
  .mobile-demo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .mobile-demo-grid { grid-template-columns: 1fr; }
  .modal-profile-photo { width: 160px; height: 160px; }
}


/* v1.0 leafy refinement layer */
.living-layer-section {
  padding-top: 70px;
  background: linear-gradient(180deg, rgba(243,199,91,0.055), rgba(255,255,255,0));
}
.living-layer-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}
.living-copy h2 { max-width: 740px; }
.pulse-board,
.path-card,
.journey-card {
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 18% 5%, rgba(243,199,91,.16), transparent 32%),
    rgba(255,255,255,.045);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.pulse-board { padding: 22px; }
.pulse-board-head { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; }
.pulse-board-head strong { font-size:1.18rem; color:#fff; }
.pulse-list { display:grid; gap:12px; }
.pulse-list article {
  display:grid;
  grid-template-columns:46px 1fr auto;
  align-items:center;
  gap:12px;
  padding:12px;
  border-radius:20px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
}
.pulse-list img { width:46px; height:46px; border-radius:16px; object-fit:cover; }
.pulse-list b { display:block; color:#fff; }
.pulse-list span { color:rgba(255,255,255,.68); font-size:.92rem; }
.pulse-list em { color:var(--gold); font-style:normal; font-weight:900; font-size:.85rem; }
.path-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:22px; }
.path-card { text-align:left; color:var(--ink); padding:22px; cursor:pointer; transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.path-card:hover { transform:translateY(-5px); border-color:rgba(243,199,91,.34); box-shadow:0 28px 90px rgba(243,199,91,.12); }
.path-card span { display:inline-flex; color:var(--gold); font-weight:900; margin-bottom:20px; letter-spacing:.12em; }
.path-card strong { display:block; color:#fff; font-size:1.2rem; margin-bottom:10px; }
.path-card p { margin:0; color:rgba(255,255,255,.72); line-height:1.65; }
.journey-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:28px; }
.journey-card { padding:28px; min-height:360px; display:flex; flex-direction:column; overflow:hidden; position:relative; }
.journey-card::after { content:""; position:absolute; inset:auto -20% -40% 25%; height:210px; background:radial-gradient(circle, rgba(243,199,91,.18), transparent 58%); pointer-events:none; }
.journey-card span { color:var(--gold); font-weight:900; letter-spacing:.1em; text-transform:uppercase; font-size:.82rem; }
.journey-card h3 { color:#fff; font-size:1.55rem; line-height:1.18; margin:18px 0 14px; }
.journey-card p { color:rgba(255,255,255,.76); line-height:1.7; margin:0 0 20px; }
.journey-card ul { margin:auto 0 0; padding:0; display:grid; gap:10px; list-style:none; }
.journey-card li { padding:12px 14px; border-radius:16px; background:rgba(255,255,255,.065); color:rgba(255,255,255,.86); border:1px solid rgba(255,255,255,.075); }
.profile-card { position:relative; overflow:hidden; }
.profile-card::before { content:""; position:absolute; inset:-40% -20% auto 55%; height:180px; background:radial-gradient(circle, rgba(243,199,91,.16), transparent 55%); }
.profile-card > * { position:relative; z-index:1; }
.profile-card .profile-photo { filter:saturate(.95) contrast(1.02); }
.profile-bio-line { color:rgba(255,255,255,.82); line-height:1.65; margin:12px 0 16px; }
.profile-tags { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 18px; }
.profile-tags span { padding:8px 10px; border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.82); font-size:.78rem; border:1px solid rgba(255,255,255,.08); }
.profile-card-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:16px; }
.profile-card-actions button { padding:11px 12px; }
.post-card { cursor:pointer; }
.post-head img.post-avatar { width:46px; height:46px; border-radius:16px; object-fit:cover; box-shadow:0 0 0 1px rgba(255,255,255,.12); }
.post-context { display:flex; flex-wrap:wrap; gap:8px; margin:14px 0 0; }
.post-context span { border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.06); color:rgba(255,255,255,.76); border-radius:999px; padding:7px 10px; font-size:.8rem; }
.post-actions button { cursor:pointer; }
.modal-profile .profile-tags { margin:18px 0; }
.modal-profile .profile-story-list { list-style:none; padding:0; margin:18px 0 0; display:grid; gap:10px; }
.modal-profile .profile-story-list li { padding:12px 14px; border-radius:16px; background:rgba(255,255,255,.065); color:rgba(255,255,255,.82); }
@media (max-width: 980px) {
  .living-layer-grid, .journey-grid { grid-template-columns:1fr; }
  .path-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .path-grid { grid-template-columns:1fr; }
  .pulse-list article { grid-template-columns:42px 1fr; }
  .pulse-list em { grid-column:2; }
  .journey-card { min-height:auto; }
  .profile-card-actions { grid-template-columns:1fr; }
}

/* LiberationCore public refinement layer */
.hero-core {
  display: inline-block;
  margin-left: .08em;
  color: var(--gold);
  text-shadow: 0 0 42px rgba(243,199,91,.24);
}
.core-story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(243,199,91,.16), transparent 28%),
    radial-gradient(circle at 84% 40%, rgba(93,231,214,.10), transparent 30%),
    linear-gradient(180deg, rgba(8,6,3,.98), rgba(18,13,7,.96));
}
.core-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: .35;
}
.core-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: stretch;
}
.core-story-copy,
.core-story-panel {
  border: 1px solid rgba(255,255,255,.105);
  background: rgba(255,255,255,.052);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.core-story-copy { padding: clamp(28px, 5vw, 54px); }
.core-story-copy h2 {
  margin: 24px 0;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.core-story-copy p {
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  font-size: 1.08rem;
  max-width: 760px;
}
.core-story-copy .story-line {
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 950;
  letter-spacing: -.035em;
  margin-top: 30px;
}
.core-story-panel {
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 28px;
  align-content: center;
}
.story-orbit {
  min-height: 300px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle, rgba(243,199,91,.18), transparent 34%),
    rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.story-orbit::before,
.story-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(243,199,91,.22);
  border-radius: 50%;
}
.story-orbit::before { width: 210px; height: 210px; }
.story-orbit::after { width: 290px; height: 290px; opacity: .55; }
.story-orbit span {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 84px;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.11);
  font-weight: 850;
  font-size: .84rem;
}
.story-orbit .orbit-center {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  min-width: 112px;
  border-radius: 34px;
  color: #160d03;
  background: linear-gradient(135deg, var(--gold), #fff1a8);
  box-shadow: 0 24px 80px rgba(243,199,91,.22);
  font-size: 1.12rem;
}
.story-orbit span:nth-child(2) { top: 28px; left: 50%; transform: translateX(-50%); }
.story-orbit span:nth-child(3) { right: 20px; top: 50%; transform: translateY(-50%); }
.story-orbit span:nth-child(4) { bottom: 28px; left: 50%; transform: translateX(-50%); }
.story-orbit span:nth-child(5) { left: 20px; top: 50%; transform: translateY(-50%); }
.story-stack { display: grid; gap: 12px; }
.story-stack article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.064);
  border: 1px solid rgba(255,255,255,.08);
}
.story-stack b { color: var(--gold); }
.story-stack span { color: rgba(255,255,255,.74); line-height: 1.55; }
.living-layer-section .section-kicker { border-color: rgba(243,199,91,.30); }
@media (max-width: 980px) {
  .core-story-grid { grid-template-columns: 1fr; }
  .story-orbit { min-height: 260px; }
}
@media (max-width: 620px) {
  .hero-core { display: block; margin-left: 0; }
  .core-story-copy, .core-story-panel { border-radius: 26px; }
  .story-stack article { grid-template-columns: 1fr; gap: 6px; }
  .story-orbit span { min-width: 72px; font-size: .75rem; }
  .story-orbit .orbit-center { width: 96px; height: 96px; min-width: 96px; }
}
