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

:root {
  --bg:           #080808;
  --bg2:          #0c0c0c;
  --surface:      #111111;
  --surface2:     #181818;
  --surface3:     #1f1f1f;
  --border:       rgba(255,255,255,0.06);
  --border-mid:   rgba(255,255,255,0.10);
  --border-hi:    rgba(255,255,255,0.18);
  --green:        #39FF14;
  --green-dim:    rgba(57,255,20,0.08);
  --green-glow:   rgba(57,255,20,0.22);
  --cyan:         #00E5FF;
  --blue:         #0066FF;
  --orange:       #FF9500;
  --red:          #FF3B30;
  --text:         #f2f2f2;
  --text2:        #999999;
  --text3:        #555555;
  --gradient:     linear-gradient(135deg, #39FF14 0%, #00E5FF 55%, #0066FF 100%);
  --radius:       18px;
  --radius-sm:    12px;
  --radius-xs:    8px;
  --max:          1100px;
  --transition:   all 0.18s ease;
}

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

/* ─── Typography helpers ─────────────────────────────────────────────────── */
.gradient-text {
  color: var(--green);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text2);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 52px;
}

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

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo-text em {
  font-style: normal;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--green); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  opacity: 0.4;
  cursor: default !important;
}

.nav-cta:hover {
  background: var(--green) !important;
  opacity: 0.4 !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text2);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 12px 28px 20px;
  gap: 4px;
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--text2);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile a.active { color: var(--green); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 28px 80px;
  text-align: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(57,255,20,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-green {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 24px var(--green-glow);
  opacity: 0.45;
  cursor: default;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
}

/* ─── Phone mockups ──────────────────────────────────────────────────────── */
.phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 0 0 20px;
  position: relative;
}

.phones::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center bottom, rgba(57,255,20,0.12) 0%, rgba(0,100,50,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.phone-wrap { position: relative; z-index: 1; }
.phone-wrap.center { z-index: 3; }
.phone-wrap.side-l { transform: translateY(50px) scale(0.84); opacity: 0.65; }
.phone-wrap.side-r { transform: translateY(50px) scale(0.84); opacity: 0.65; }
.phone-wrap.inner-l { transform: translateY(20px) scale(0.93); z-index: 2; opacity: 0.85; }
.phone-wrap.inner-r { transform: translateY(20px) scale(0.93); z-index: 2; opacity: 0.85; }

.phone {
  width: 210px;
  height: 440px;
  background: #161616;
  border-radius: 38px;
  border: 2px solid #444444;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 48px rgba(0,0,0,0.5);
}

.phone-wrap.center .phone {
  background: #181818;
  border: 2px solid rgba(57,255,20,0.5);
  box-shadow:
    0 0 0 1px rgba(57,255,20,0.2),
    0 32px 60px rgba(0,0,0,0.6),
    0 0 50px rgba(57,255,20,0.25),
    0 0 100px rgba(57,255,20,0.10);
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  height: calc(100% - 20px);
  overflow: hidden;
  background: #111111;
  padding: 8px 10px;
}

.phone-screen-img {
  padding: 0;
  display: flex;
  align-items: flex-start;
}

.phone-screen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ── Feed screen ── */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 10px;
  margin-bottom: 6px;
}

.mock-h-title {
  font-size: 16px;
  font-weight: 900;
  color: #f2f2f2;
  letter-spacing: -0.5px;
}

.mock-h-dot {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.mock-post-card {
  background: #111;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  overflow: hidden;
  margin-bottom: 8px;
}

.mock-post-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mock-post-img .can-glow {
  width: 36px;
  height: 72px;
  border-radius: 8px;
  position: relative;
}

.mock-post-img .can-glow::after {
  content: '';
  position: absolute;
  inset: -12px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.3) 0%, transparent 70%);
}

.mock-post-body {
  padding: 10px 10px 8px;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.mock-user-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.mock-avatar-sm {
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border: 1px solid #39FF14;
}

.mock-name-line {
  height: 7px;
  border-radius: 4px;
  background: #2a2a2a;
}

.mock-flavor-line {
  height: 9px;
  border-radius: 4px;
  background: #1f1f1f;
  margin-bottom: 4px;
}

.mock-stars {
  font-size: 10px;
  color: #39FF14;
  letter-spacing: 1px;
}

.mock-rating-badge {
  font-size: 10px;
  font-weight: 800;
  color: #39FF14;
}

.mock-actions {
  display: flex;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid #1a1a1a;
}

.mock-action-dot {
  width: 20px;
  height: 14px;
  border-radius: 4px;
  background: #1a1a1a;
}

/* ── Explore screen ── */
.mock-search {
  height: 28px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid #222;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.mock-search-icon { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.mock-search-bar  { flex: 1; height: 5px; border-radius: 3px; background: #2a2a2a; }

.mock-flavor-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
  padding: 8px 10px;
  margin-bottom: 5px;
}

.mock-flavor-accent {
  width: 3px;
  border-radius: 2px;
  align-self: stretch;
}

.mock-flavor-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mock-flavor-line-a { height: 8px; border-radius: 4px; background: #1f1f1f; }
.mock-flavor-line-b { height: 6px; border-radius: 4px; background: #161616; width: 60%; }

.mock-flavor-score {
  font-size: 9px;
  font-weight: 800;
  color: #39FF14;
}

/* ── Profile screen ── */
.mock-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 8px;
  gap: 6px;
}

.mock-profile-username {
  height: 8px;
  width: 80px;
  border-radius: 4px;
  background: #2a2a2a;
}

.mock-avatar-lg {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  border: 2px solid #39FF14;
  background: #1a1a1a;
  position: relative;
}

.mock-avatar-lg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #39FF14;
  border: 2px solid #0a0a0a;
}

.mock-stats-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 8px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin: 4px 0 10px;
}

.mock-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.mock-stat-val { height: 10px; width: 20px; border-radius: 4px; background: #2a2a2a; }
.mock-stat-lbl { height: 6px; width: 28px; border-radius: 3px; background: #191919; }

.mock-rank-bar {
  background: #111;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  padding: 10px 10px 8px;
  margin-bottom: 8px;
}

.mock-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.mock-rank-name {
  font-size: 10px;
  font-weight: 800;
  color: #FFD700;
}

.mock-rank-xp {
  font-size: 9px;
  color: #555;
  font-weight: 600;
}

.mock-rank-track {
  height: 5px;
  border-radius: 3px;
  background: #1a1a1a;
  overflow: hidden;
}

.mock-rank-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #39FF14, #00E5FF);
  width: 65%;
}

/* ─── Features ───────────────────────────────────────────────────────────── */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.feature-card:hover {
  border-color: rgba(57,255,20,0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}

.feature-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ─── Ranks ──────────────────────────────────────────────────────────────── */
.ranks-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.ranks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rank-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}

.rank-chip:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.rank-chip .rank-emoji { font-size: 16px; }

/* ─── How it works ───────────────────────────────────────────────────────── */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.step {
  display: flex;
  gap: 18px;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-block {
  background: var(--surface);
  padding: 32px 28px;
  text-align: center;
}

.stat-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}

/* ─── Disclaimer ─────────────────────────────────────────────────────────── */
.disclaimer-wrap {
  padding: 0 0 60px;
}

.disclaimer-card {
  background: rgba(255,149,0,0.05);
  border: 1px solid rgba(255,149,0,0.22);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.disclaimer-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }

.disclaimer-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #FFB800;
  margin-bottom: 5px;
  letter-spacing: 0.2px;
}

.disclaimer-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 28px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text2); }

.footer-copy {
  font-size: 12px;
  color: var(--text3);
}

/* ─── Design page ────────────────────────────────────────────────────────── */
.design-hero {
  padding: 72px 28px 60px;
  max-width: var(--max);
  margin: 0 auto;
}

.design-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.design-hero p {
  font-size: 16px;
  color: var(--text2);
  max-width: 540px;
  line-height: 1.65;
}

.design-section {
  padding: 60px 28px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.design-section h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.design-section .ds-sub {
  color: var(--text2);
  font-size: 14px;
  margin-bottom: 36px;
}

/* Color swatches */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.color-swatch {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.swatch-color {
  height: 80px;
}

.swatch-info {
  background: var(--surface);
  padding: 12px 14px;
}

.swatch-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.swatch-hex {
  font-size: 11px;
  color: var(--text2);
  font-family: 'SF Mono', 'Monaco', monospace;
}

.swatch-desc {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

/* Typography samples */
.type-samples { display: flex; flex-direction: column; gap: 24px; }

.type-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.type-meta {
  min-width: 100px;
  flex-shrink: 0;
}

.type-meta-name { font-size: 11px; font-weight: 600; color: var(--text2); }
.type-meta-spec { font-size: 10px; color: var(--text3); font-family: monospace; }
.type-sample { color: var(--text); }

/* Logo display */
.logo-display {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 220px;
}

.logo-card img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-card.dark-bg { background: #080808; }
.logo-card.light-bg { background: #f0f0f0; }

/* UI components */
.ui-components { display: flex; flex-direction: column; gap: 16px; }

.ui-component-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.ui-component-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}

/* Flavor card sample */
.sample-flavor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface2);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding-right: 16px;
  max-width: 320px;
}

.sample-flavor-accent { width: 5px; align-self: stretch; }

.sample-flavor-info { flex: 1; padding: 14px 0; }
.sample-flavor-cat  { font-size: 10px; font-weight: 700; color: var(--text3); letter-spacing: 1.5px; }
.sample-flavor-name { font-size: 15px; font-weight: 700; color: var(--text); }

.sample-rating {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}

/* Rating number buttons sample */
.rating-sample {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rating-btn {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid;
}

/* Rank badge sample */
.rank-samples { display: flex; flex-wrap: wrap; gap: 10px; }

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 600;
}

/* Need from designer */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.need-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.need-card-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-dim);
  border: 1px solid rgba(57,255,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 14px;
}

.need-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.need-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}

/* Brand feeling */
.feeling-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feeling-tag {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-mid);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}

/* ─── Scroll animation ───────────────────────────────────────────────────── */
.will-animate {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Phone theme mockups ─────────────────────────────────────────────────── */
.phone-label {
  text-align: center;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}
.phone-label em { font-style: normal; color: var(--green); }
.phone-label.light-label { color: #888; }

.tm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 8px;
}
.tm-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tm-plus-btn {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.tm-searchbar {
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 9px;
  margin-bottom: 7px;
}
.tm-sublabel {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.tm-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 8px;
}
.tm-card {
  border-radius: 7px;
  padding: 7px 5px;
  border-top: 2px solid;
}
.tm-flavor-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  border-bottom: 1px solid;
}
.tm-dot {
  width: 3px;
  height: 26px;
  border-radius: 2px;
  flex-shrink: 0;
}
.tm-fname { font-size: 9px; font-weight: 700; }
.tm-fcat { font-size: 8px; margin-top: 1px; }

/* Profile mockup */
.tm-avatar {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  border: 2px solid #39FF14;
  background: #1a1a1a;
  color: #39FF14;
  flex-shrink: 0;
}
.tm-pstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  flex: 1;
}
.tm-pstat-n { font-size: 11px; font-weight: 800; color: #f2f2f2; }
.tm-pstat-l { font-size: 7px; color: #555; }
.tm-rank-box {
  border-radius: 8px;
  padding: 7px 9px;
  margin-bottom: 7px;
  border: 1px solid rgba(255,215,0,0.2);
  background: rgba(255,215,0,0.06);
}
.tm-rank-name { font-size: 11px; font-weight: 900; color: #FFD700; margin-bottom: 4px; display: flex; justify-content: space-between; }
.tm-rank-xp { font-size: 8px; color: #555; font-weight: 400; }
.tm-rank-track { height: 5px; border-radius: 3px; overflow: hidden; background: #1f1f1f; }
.tm-rank-fill { height: 100%; border-radius: 3px; background: #FFD700; }
.tm-badge-row { display: flex; gap: 4px; margin-bottom: 7px; }
.tm-badge-chip {
  flex: 1;
  border-radius: 6px;
  padding: 5px 3px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  border: 1px solid;
}
.tm-pgrid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.tm-pgrid-cell { aspect-ratio: 1; border-radius: 4px; }

/* Rating mockup */
.tm-rating-row {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.tm-rnum {
  width: 17px;
  height: 17px;
  border-radius: 9px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
}
.tm-slider-wrap { margin-bottom: 8px; }
.tm-slider-label { display: flex; justify-content: space-between; align-items: center; font-size: 9px; margin-bottom: 4px; }
.tm-slider-label span:last-child { font-weight: 900; color: #39FF14; }
.tm-slider-track { height: 6px; background: #1f1f1f; border-radius: 3px; overflow: visible; position: relative; }
.tm-slider-fill { height: 100%; border-radius: 3px; background: #39FF14; }
.tm-slider-thumb { position: absolute; right: 24%; top: -5px; width: 16px; height: 16px; border-radius: 8px; background: #39FF14; border: 2px solid #111; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .phones .phone-wrap.side-l,
  .phones .phone-wrap.side-r,
  .phones .phone-wrap.inner-l,
  .phones .phone-wrap.inner-r { display: none; }
  .phones { height: auto; padding-bottom: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero h1 { letter-spacing: -2px; }
}

@media (max-width: 560px) {
  .hero { padding: 64px 20px 56px; }
  .container { padding: 0 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
