/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080b;
  --bg-soft: #0d0f14;
  --surface: #11141b;
  --surface-2: #161a23;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --text-dim: #9aa0ad;
  --text-mute: #6b7080;
  --accent: #7cf2c2;
  --accent-2: #5aa9ff;
  --accent-warn: #ffb86b;
  --accent-purple: #c084fc;
  --accent-pink: #ff7a9c;
  --accent-yellow: #ffe066;
  --accent-glow: rgba(124, 242, 194, 0.35);
  --radius: 16px;
  --radius-lg: 22px;
  --max-w: 1160px;
  --transition: 200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Background ambience ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background:
    radial-gradient(closest-side, rgba(124, 242, 194, 0.18), transparent 70%),
    radial-gradient(closest-side, rgba(90, 169, 255, 0.12), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
.orb-1 {
  top: 800px;
  left: -120px;
  background: radial-gradient(closest-side, rgba(192, 132, 252, 0.35), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.orb-2 {
  top: 1800px;
  right: -150px;
  background: radial-gradient(closest-side, rgba(255, 122, 156, 0.3), transparent 70%);
  animation: orbDrift 22s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, -40px); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(7, 8, 11, 0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07080b;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.logo-mark.small { width: 22px; height: 22px; font-size: 10px; border-radius: 6px; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a { transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-primary { background: var(--text); color: #07080b; }
.btn-primary:hover { transform: translateY(-1px); background: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text); }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 50px; text-align: center; }
@media (min-width: 768px) { .hero { padding: 120px 0 80px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-purple) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 70px;
}

/* ---------- Phone Showcase ---------- */
.phone-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 70px;
  max-width: 900px;
  perspective: 1400px;
  height: 480px;
}
@media (max-width: 720px) {
  .phone-showcase { height: 440px; gap: 0; }
}

.phone {
  position: relative;
  width: 230px;
  height: 460px;
  background: linear-gradient(180deg, #1a1d24, #0f1116);
  border: 1px solid #2a2f3a;
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.phone-left   { transform: rotate(-7deg) translateY(20px); z-index: 1; }
.phone-center { transform: translateY(-10px); z-index: 3; }
.phone-right  { transform: rotate(7deg) translateY(20px); z-index: 1; }
.phone-left:hover, .phone-right:hover { transform: translateY(0) rotate(0); z-index: 2; }
.phone-center:hover { transform: translateY(-20px); }

@media (max-width: 840px) {
  .phone-left, .phone-right { display: none; }
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0a0c10;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  padding: 38px 16px 16px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* MUSIC SCREEN */
.screen-music {
  background:
    linear-gradient(180deg, #2a0d3f 0%, #4a1e6b 40%, #1a0830 100%);
}
.m-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 18px;
}
.m-back, .m-more { font-size: 18px; }
.m-cover {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, #ff7a9c, transparent 50%),
    radial-gradient(circle at 70% 70%, #c084fc, transparent 50%),
    linear-gradient(135deg, #ffb86b, #ff7a9c);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}
.m-song {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 4px;
}
.m-artist {
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.m-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
  height: 32px;
}
.m-wave span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-pink), var(--accent-purple));
  animation: waveBeat 1.4s ease-in-out infinite;
}
.m-wave span:nth-child(1)  { height: 40%; animation-delay: 0.0s; }
.m-wave span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.m-wave span:nth-child(3)  { height: 90%; animation-delay: 0.2s; }
.m-wave span:nth-child(4)  { height: 60%; animation-delay: 0.3s; }
.m-wave span:nth-child(5)  { height: 80%; animation-delay: 0.4s; }
.m-wave span:nth-child(6)  { height: 100%; animation-delay: 0.5s; }
.m-wave span:nth-child(7)  { height: 70%; animation-delay: 0.4s; }
.m-wave span:nth-child(8)  { height: 50%; animation-delay: 0.3s; }
.m-wave span:nth-child(9)  { height: 85%; animation-delay: 0.2s; }
.m-wave span:nth-child(10) { height: 60%; animation-delay: 0.1s; }
.m-wave span:nth-child(11) { height: 40%; animation-delay: 0.0s; }
.m-wave span:nth-child(12) { height: 30%; animation-delay: 0.2s; }
@keyframes waveBeat {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.m-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}
.m-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07080b !important;
  font-size: 18px !important;
  box-shadow: 0 10px 30px -8px var(--accent-pink);
}

/* SOCIAL SCREEN */
.screen-social {
  background: linear-gradient(180deg, #0a0d12 0%, #0d1018 100%);
}
.s-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}
.s-title {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.s-bell { color: var(--accent); font-size: 16px; }
.s-stories {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.s-story {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid;
}
.s-1 { background: linear-gradient(135deg, #7cf2c2, #5aa9ff); border-color: var(--accent); }
.s-2 { background: linear-gradient(135deg, #c084fc, #ff7a9c); border-color: var(--accent-purple); }
.s-3 { background: linear-gradient(135deg, #ffb86b, #ffe066); border-color: var(--accent-warn); }
.s-4 { background: linear-gradient(135deg, #5aa9ff, #c084fc); border-color: var(--accent-2); }

.s-post {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.s-post.small { padding-bottom: 0; border-bottom: 0; }
.s-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-a1 { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.s-a2 { background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink)); }
.s-post-body { flex: 1; }
.s-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 5px;
}
.s-line-1 { width: 60%; }
.s-line-2 { width: 90%; }
.s-line-2.short { width: 50%; }
.s-img {
  margin-top: 8px;
  height: 90px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(124, 242, 194, 0.2), rgba(90, 169, 255, 0.2)),
    linear-gradient(45deg, #1a1f2a, #11141b);
  border: 1px solid rgba(255,255,255,0.04);
}
.s-tabbar {
  position: absolute;
  bottom: 16px;
  left: 16px; right: 16px;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.s-tabbar span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.s-tabbar span.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* FINANCE SCREEN */
.screen-finance {
  background: linear-gradient(180deg, #061b14 0%, #0a2818 60%, #051410 100%);
}
.f-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.f-greet {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.f-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.f-card {
  background:
    linear-gradient(135deg, rgba(124, 242, 194, 0.15), rgba(90, 169, 255, 0.1));
  border: 1px solid rgba(124, 242, 194, 0.2);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.f-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.f-amount {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
}
.f-amount span { font-size: 16px; color: rgba(255,255,255,0.5); }
.f-delta {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
}
.f-chart {
  height: 60px;
  margin-bottom: 12px;
}
.f-chart svg { width: 100%; height: 100%; }
.f-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
}
.f-row span:last-child { font-family: 'JetBrains Mono', monospace; font-weight: 500; }

/* ---------- Hero stats ---------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #cdd1da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-top: 6px;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 30%, transparent 100%); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.12;
}
.section-sub {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-sub-left {
  color: var(--text-dim);
  margin: 0 0 24px;
  font-size: 1rem;
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 520px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: transform var(--transition), border-color var(--transition);
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity var(--transition), transform var(--transition);
  filter: blur(40px);
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.cat-card:hover::before { opacity: 0.7; transform: scale(1.2); }

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #07080b;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.cat-social  .cat-icon { background: linear-gradient(135deg, #ff7a9c, #c084fc); }
.cat-social::before    { background: radial-gradient(closest-side, #ff7a9c, transparent); }
.cat-finance .cat-icon { background: linear-gradient(135deg, #7cf2c2, #4cd1ff); }
.cat-finance::before   { background: radial-gradient(closest-side, #7cf2c2, transparent); }
.cat-health  .cat-icon { background: linear-gradient(135deg, #ff7a59, #ff7a9c); }
.cat-health::before    { background: radial-gradient(closest-side, #ff7a59, transparent); }
.cat-prod    .cat-icon { background: linear-gradient(135deg, #5aa9ff, #7cf2c2); }
.cat-prod::before      { background: radial-gradient(closest-side, #5aa9ff, transparent); }
.cat-ai      .cat-icon { background: linear-gradient(135deg, #c084fc, #6b8cff); }
.cat-ai::before        { background: radial-gradient(closest-side, #c084fc, transparent); }
.cat-games   .cat-icon { background: linear-gradient(135deg, #ffb86b, #ff5f57); }
.cat-games::before     { background: radial-gradient(closest-side, #ffb86b, transparent); }
.cat-media   .cat-icon { background: linear-gradient(135deg, #ffe066, #ffb86b); }
.cat-media::before     { background: radial-gradient(closest-side, #ffe066, transparent); }
.cat-tools   .cat-icon { background: linear-gradient(135deg, #9aa0ad, #cdd1da); }
.cat-tools::before     { background: radial-gradient(closest-side, #cdd1da, transparent); }

.cat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.cat-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.cat-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--text-mute);
  position: relative;
  z-index: 1;
}

/* ---------- Modes ---------- */
.modes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 840px) { .modes-grid { grid-template-columns: repeat(2, 1fr); } }

.mode-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.mode-card:hover { transform: translateY(-3px); }
.mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.mode-private::before { background: radial-gradient(circle at 100% 0%, rgba(124, 242, 194, 0.12), transparent 50%); }
.mode-public::before  { background: radial-gradient(circle at 100% 0%, rgba(90, 169, 255, 0.14), transparent 50%); }
.mode-card > * { position: relative; z-index: 1; }

.mode-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.mode-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(124, 242, 194, 0.1);
  color: var(--accent);
  border: 1px solid rgba(124, 242, 194, 0.22);
}
.tag-public {
  background: rgba(90, 169, 255, 0.1);
  color: var(--accent-2);
  border-color: rgba(90, 169, 255, 0.25);
}
.mode-lock { font-size: 18px; opacity: 0.7; }
.mode-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.mode-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.mode-feats { display: flex; flex-direction: column; gap: 8px; }
.mode-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
}
.mode-feats li span { color: var(--accent); font-weight: 700; }
.mode-public .mode-feats li span { color: var(--accent-2); }

/* ---------- Studio ---------- */
.proto-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 960px) {
  .proto-wrap { grid-template-columns: 1fr 1.05fr; gap: 60px; }
}
.proto-copy .section-kicker { margin-bottom: 14px; }
.proto-copy .section-title { text-align: left; margin-bottom: 18px; }

.studio-feats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 560px) { .studio-feats { grid-template-columns: repeat(2, 1fr); } }
.sf {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sf-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 242, 194, 0.15), rgba(90, 169, 255, 0.1));
  border: 1px solid rgba(124, 242, 194, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.sf strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.sf span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.proto-visual { position: relative; }
.proto-mock {
  background: linear-gradient(180deg, #14181f, #0d1015);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.proto-mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
.proto-dots { display: flex; gap: 6px; }
.proto-dots span {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: #2a2f3a;
}
.proto-dots span:nth-child(1) { background: #ff5f57; }
.proto-dots span:nth-child(2) { background: #ffbd2e; }
.proto-dots span:nth-child(3) { background: #28c840; }
.proto-title-bar {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-mute);
}

.proto-screens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}
.proto-screen {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.proto-screen.done    { border-color: rgba(124, 242, 194, 0.3); }
.proto-screen.review  { border-color: rgba(255, 184, 107, 0.3); }
.proto-screen.pending { opacity: 0.7; }
.proto-screen-thumb {
  height: 70px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.thumb-1 { background: linear-gradient(135deg, rgba(124, 242, 194, 0.18), rgba(90, 169, 255, 0.12)); }
.thumb-2 { background: linear-gradient(135deg, rgba(255, 184, 107, 0.18), rgba(255, 122, 156, 0.12)); }
.thumb-3 { background: linear-gradient(135deg, rgba(192, 132, 252, 0.18), rgba(255, 122, 156, 0.1)); }
.thumb-4 { background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)); }
.proto-screen-thumb::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px; bottom: 10px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}
.proto-screen-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}
.proto-screen-name { font-size: 13px; font-weight: 500; }
.proto-pill {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.pill-done    { background: rgba(124, 242, 194, 0.12); color: var(--accent); }
.pill-review  { background: rgba(255, 184, 107, 0.12); color: var(--accent-warn); }
.pill-pending { background: rgba(255, 255, 255, 0.06); color: var(--text-mute); }

.palette-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}
.palette-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}
.palette-swatches {
  display: flex;
  gap: 6px;
}
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--transition);
}
.swatch:hover { transform: scale(1.15); }
.s-mint   { background: var(--accent); }
.s-blue   { background: var(--accent-2); }
.s-purple { background: var(--accent-purple); }
.s-pink   { background: var(--accent-pink); }
.s-yellow { background: var(--accent-yellow); }
.s-dark   { background: #1a1d24; }

.proto-comment {
  display: flex;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.proto-avatar {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-purple), #6b8cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #07080b;
  flex-shrink: 0;
}
.proto-comment-body { flex: 1; }
.proto-comment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.proto-comment-body strong { font-size: 12.5px; }
.proto-comment-body p { font-size: 13px; color: var(--text-dim); }
.proto-vote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--accent);
  background: rgba(124, 242, 194, 0.1);
  border: 1px solid rgba(124, 242, 194, 0.2);
  border-radius: 999px;
  padding: 2px 8px;
}

/* ---------- Community feed ---------- */
.feed {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feed-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.feed-tab {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.feed-tab:hover { border-color: var(--border-strong); color: var(--text); }
.feed-tab.active {
  background: rgba(124, 242, 194, 0.08);
  color: var(--accent);
  border-color: rgba(124, 242, 194, 0.25);
}

.feed-item {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.feed-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 46px;
}
.vote-up, .vote-down {
  background: transparent;
  border: none;
  color: var(--text-mute);
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}
.vote-up:hover {
  color: var(--accent);
  background: rgba(124, 242, 194, 0.08);
}
.vote-down:hover {
  color: var(--accent-pink);
  background: rgba(255, 122, 156, 0.08);
}
.vote-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.feed-body { flex: 1; min-width: 0; }
.feed-cat {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.cat-social { background: rgba(255, 122, 156, 0.1); color: var(--accent-pink); border-color: rgba(255, 122, 156, 0.22); }
.cat-health { background: rgba(124, 242, 194, 0.1); color: var(--accent); border-color: rgba(124, 242, 194, 0.22); }
.cat-food   { background: rgba(255, 184, 107, 0.1); color: var(--accent-warn); border-color: rgba(255, 184, 107, 0.25); }
.cat-ai     { background: rgba(192, 132, 252, 0.1); color: var(--accent-purple); border-color: rgba(192, 132, 252, 0.25); }
.cat-tools  { background: rgba(90, 169, 255, 0.1); color: var(--accent-2); border-color: rgba(90, 169, 255, 0.25); }

.feed-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.35;
}
.feed-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 10px;
}
.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mute);
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #07080b;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.6);
}
.app-icon-fast  { background: linear-gradient(135deg, #7cf2c2, #4cd1ff); }
.app-icon-money { background: linear-gradient(135deg, #ffd36b, #ff7a59); }
.app-icon-hemi  { background: linear-gradient(135deg, #c084fc, #6b8cff); }

.started-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(124, 242, 194, 0.08);
  color: var(--accent);
  border: 1px solid rgba(124, 242, 194, 0.2);
  margin-bottom: 12px;
  align-self: flex-start;
}

.app-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.app-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.app-desc {
  color: var(--text-dim);
  font-size: 14px;
  flex: 1;
  margin-bottom: 18px;
}
.app-link {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--transition);
}
.app-link:hover { opacity: 0.75; }

.app-card-more {
  background: transparent;
  border: 1px dashed var(--border-strong);
  align-items: flex-start;
  justify-content: center;
}
.more-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

/* ---------- Waitlist card ---------- */
.platform-card {
  position: relative;
  background: linear-gradient(180deg, rgba(124, 242, 194, 0.05), rgba(90, 169, 255, 0.02));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 60px 32px;
  text-align: center;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(124, 242, 194, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.platform-card > * { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124, 242, 194, 0.08);
  border: 1px solid rgba(124, 242, 194, 0.2);
  margin-bottom: 22px;
  font-weight: 600;
}
.platform-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.1;
}
.platform-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.waitlist {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.waitlist input::placeholder { color: var(--text-mute); }
.waitlist input:focus { border-color: var(--accent); }

.waitlist-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-tags span {
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-mute);
  font-size: 13.5px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-right { display: flex; gap: 22px; }
.footer-right a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .feed-item { padding: 16px; gap: 14px; }
  .vote { min-width: 38px; }
  .container { padding: 0 20px; }
  .phone { width: 200px; height: 400px; }
}
