/* ============================================
   PersonTees v2 Home — Global Design System
   (Standalone, no inline-02.css dependency)
============================================ */

/* === DESIGN TOKENS === */
:root {
  /* Ground */
  --v2-ground: #08090A;
  --v2-surface-1: #16171C;
  --v2-surface-2: #1E1F25;
  --v2-surface-3: #26282F;
  --v2-hairline: rgba(255, 255, 255, 0.06);
  --v2-hairline-strong: rgba(255, 255, 255, 0.12);

  /* Text */
  --v2-text: #F7F8F8;
  --v2-text-2: #9CA3AF;
  --v2-text-3: #6B7280;

  /* Brand colors */
  --v2-purple-deep: #7C3AED;
  --v2-purple: #A855F7;
  --v2-pink: #EC4899;
  --v2-yellow: #F59E0B;
  --v2-cyan: #06B6D4;
  --v2-white: #FFFFFF;

  /* Mesh */
  --v2-mesh-1: #7C3AED;
  --v2-mesh-2: #A855F7;
  --v2-mesh-3: #EC4899;
  --v2-mesh-4: #F59E0B;

  /* Spacing */
  --v2-s-1: 4px;
  --v2-s-2: 8px;
  --v2-s-3: 16px;
  --v2-s-4: 24px;
  --v2-s-5: 40px;
  --v2-s-6: 64px;
  --v2-s-7: 96px;
  --v2-s-8: 128px;

  /* Radius */
  --v2-r-1: 8px;
  --v2-r-2: 12px;
  --v2-r-3: 16px;
  --v2-r-full: 999px;

  /* Ease */
  --v2-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --v2-ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Font */
  --v2-font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --v2-font-mono: 'Geist Mono', 'SF Mono', Consolas, monospace;
  --v2-font-hk: 'Noto Sans HK', var(--v2-font-display);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--v2-font-hk);
  font-size: 16px;
  line-height: 1.5;
  background: var(--v2-ground);
  color: var(--v2-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }

::selection { background: var(--v2-purple); color: var(--v2-ground); }

/* === LAYOUT === */
.v2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--v2-s-4);
}

.v2-section {
  padding: var(--v2-s-7) 0;
  background: var(--v2-ground);
  position: relative;
}
.v2-section-alt {
  background: var(--v2-surface-1);
}
.v2-section-grid {
  display: grid;
  gap: var(--v2-s-6);
}
.v2-section-grid-2col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 900px) {
  .v2-section-grid-2col { grid-template-columns: 1fr; }
}

/* === NAV === */
.v2-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--v2-hairline);
}
.v2-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--v2-s-3) var(--v2-s-4);
  display: flex;
  align-items: center;
  gap: var(--v2-s-5);
}
.v2-nav-logo {
  display: flex;
  align-items: baseline;
  font-family: var(--v2-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.v2-logo-mark { color: var(--v2-text); }
.v2-logo-slash { color: var(--v2-purple); font-weight: 900; }
.v2-logo-dot { color: var(--v2-purple); }
.v2-logo-product { color: var(--v2-text); }

.v2-nav-menu {
  display: flex;
  gap: var(--v2-s-5);
  flex: 1;
  justify-content: center;
}
.v2-nav-link {
  font-family: var(--v2-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--v2-text-2);
  transition: color 200ms var(--v2-ease);
}
.v2-nav-link:hover { color: var(--v2-text); }

.v2-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--v2-s-3);
}
.v2-nav-login { color: var(--v2-text-2); }
.v2-nav-login:hover { color: var(--v2-text); }
.v2-nav-apply {
  padding: 6px 14px;
  border: 1px solid var(--v2-purple);
  border-radius: var(--v2-r-full);
  color: var(--v2-purple);
  font-size: 12px;
  font-weight: 600;
  transition: all 200ms var(--v2-ease);
}
.v2-nav-apply:hover {
  background: var(--v2-purple);
  color: var(--v2-white);
}

.v2-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--v2-text-3);
}
.v2-lang-opt { transition: color 200ms var(--v2-ease); }
.v2-lang-opt:hover { color: var(--v2-text); }
.v2-lang-active { color: var(--v2-purple); font-weight: 600; }
.v2-lang-sep { color: var(--v2-hairline-strong); }

.v2-nav-mobile {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 6px;
}
.v2-nav-mobile span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--v2-text);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .v2-nav-menu { display: none; }
  .v2-nav-actions { display: none; }
  .v2-nav-mobile { display: flex; }
}

/* === BUTTONS === */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--v2-s-2);
  padding: 12px 20px;
  border-radius: var(--v2-r-full);
  font-family: var(--v2-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 200ms var(--v2-ease);
  white-space: nowrap;
  cursor: pointer;
}
.v2-btn-primary {
  background: var(--v2-white);
  color: var(--v2-ground);
}
.v2-btn-primary:hover {
  background: var(--v2-purple);
  color: var(--v2-white);
  transform: translateY(-1px);
}
.v2-btn-secondary {
  background: transparent;
  color: var(--v2-text);
  border: 1px solid var(--v2-hairline-strong);
}
.v2-btn-secondary:hover {
  background: var(--v2-hairline);
  border-color: var(--v2-purple);
}
.v2-btn-nav {
  padding: 8px 16px;
  font-size: 12px;
}
.v2-btn-magnetic { transition: transform 300ms var(--v2-ease); }
.v2-btn-arrow { width: 14px; height: 14px; }
.v2-cursor-blink {
  display: inline-block;
  color: var(--v2-purple);
  animation: v2-blink 1.1s step-end infinite;
}
@keyframes v2-blink { 50% { opacity: 0; } }

/* === TICKER === */
.v2-ticker {
  background: var(--v2-surface-1);
  border-bottom: 1px solid var(--v2-hairline);
  height: 32px;
  overflow: hidden;
  position: relative;
}
.v2-ticker-track {
  display: flex;
  gap: var(--v2-s-5);
  padding: 0 var(--v2-s-4);
  height: 100%;
  align-items: center;
  animation: v2-ticker-scroll 60s linear infinite;
  white-space: nowrap;
  font-size: 12px;
  color: var(--v2-text-2);
}
.v2-ticker-item strong { color: var(--v2-purple); font-weight: 600; }
@keyframes v2-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === HERO === */
.v2-hero {
  position: relative;
  min-height: 90vh;
  padding: var(--v2-s-7) 0 var(--v2-s-6);
  overflow: hidden;
  background: var(--v2-ground);
}
.v2-mesh-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.v2-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.v2-hero-products {
  position: fixed;
  right: 2%;
  top: 0;
  width: 50%;
  height: 100vh;
  pointer-events: none;
  z-index: 3;
  display: none;
}
@media (min-width: 1024px) {
  .v2-hero-products { display: block; }
}
.v2-hero-product {
  position: absolute;
  display: block;
  width: 160px;
  height: 160px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.4s var(--v2-ease);
  filter: drop-shadow(0 8px 24px rgba(168, 85, 247, 0.3));
  animation: v2-heroFloat 7s ease-in-out infinite;
}
.v2-hero-product img { width: 100%; height: 100%; object-fit: contain; }
.v2-hero-product:hover {
  transform: scale(1.22) translateY(-6px);
  filter: drop-shadow(0 12px 32px rgba(168, 85, 247, 0.6));
}
.v2-hero-product-1 { top: 6%; left: 12%; animation-delay: 0s; }
.v2-hero-product-2 { top: 24%; left: 56%; animation-delay: -1.4s; }
.v2-hero-product-3 { top: 56%; left: 18%; animation-delay: -2.8s; }
.v2-hero-product-4 { top: 48%; left: 62%; animation-delay: -4.2s; }
.v2-hero-product-5 { top: 14%; left: 70%; animation-delay: -5.6s; }
@keyframes v2-heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.v2-hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--v2-s-4);
}
.v2-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--v2-s-2);
  padding: 6px 14px;
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-full);
  font-family: var(--v2-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: var(--v2-s-4);
}
.v2-hero-tag { color: var(--v2-text); font-weight: 700; }
.v2-hero-sub { color: var(--v2-text-3); }

.v2-hero-h1 {
  font-family: var(--v2-font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 var(--v2-s-4);
  background: linear-gradient(90deg, #FFFFFF 0%, #F7F8F8 50%, #9CA3AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px;
}
.v2-letter {
  display: inline-block;
  transform: rotateX(-30deg);
  opacity: 0;
  animation: v2-letterIn 0.6s var(--v2-ease) forwards;
}
.v2-hero-h1 .v2-letter:nth-child(1) { animation-delay: 0s; }
.v2-hero-h1 .v2-letter:nth-child(2) { animation-delay: 0.04s; }
.v2-hero-h1 .v2-letter:nth-child(3) { animation-delay: 0.08s; }
.v2-hero-h1 .v2-letter:nth-child(4) { animation-delay: 0.12s; }
.v2-hero-h1 .v2-letter:nth-child(5) { animation-delay: 0.16s; }
.v2-hero-h1 .v2-letter:nth-child(6) { animation-delay: 0.20s; }
.v2-hero-h1 .v2-letter:nth-child(7) { animation-delay: 0.24s; }
.v2-hero-h1 .v2-letter:nth-child(8) { animation-delay: 0.28s; }
.v2-hero-h1 .v2-letter:nth-child(9) { animation-delay: 0.32s; }
.v2-hero-h1 .v2-letter:nth-child(10) { animation-delay: 0.36s; }
.v2-hero-h1 .v2-letter:nth-child(11) { animation-delay: 0.40s; }
.v2-hero-h1 .v2-letter:nth-child(12) { animation-delay: 0.44s; }
.v2-hero-h1 .v2-letter:nth-child(13) { animation-delay: 0.48s; }
@keyframes v2-letterIn {
  from { opacity: 0; transform: rotateX(-30deg); }
  to { opacity: 1; transform: rotateX(0); }
}

.v2-hero-subline {
  font-size: 18px;
  line-height: 1.5;
  color: var(--v2-text-2);
  max-width: 640px;
  margin: 0 0 var(--v2-s-5);
}
.v2-hero-accent {
  color: var(--v2-text);
  background: linear-gradient(90deg, var(--v2-purple), var(--v2-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.v2-hero-cta {
  display: flex;
  gap: var(--v2-s-3);
  flex-wrap: wrap;
  margin-bottom: var(--v2-s-6);
}

.v2-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--v2-s-4);
  padding: var(--v2-s-4);
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  max-width: 720px;
}
.v2-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-hero-stat-num {
  font-family: var(--v2-font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--v2-text);
  letter-spacing: -0.02em;
}
.v2-hero-stat-label {
  font-size: 12px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 600px) {
  .v2-hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.v2-hero-trust {
  display: flex;
  gap: var(--v2-s-6);
  margin-top: var(--v2-s-5);
  flex-wrap: wrap;
}
.v2-trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v2-trust-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--v2-purple);
}
.v2-trust-label {
  font-size: 12px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
}

.v2-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--v2-hairline);
  z-index: 5;
}
.v2-scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--v2-purple-deep), var(--v2-purple), var(--v2-pink));
  transition: width 100ms linear;
}

/* === STATS BAR === */
.v2-stats-bar {
  padding: var(--v2-s-6) 0;
  background: var(--v2-surface-1);
  border-top: 1px solid var(--v2-hairline);
  border-bottom: 1px solid var(--v2-hairline);
}
.v2-stats-bar-header { margin-bottom: var(--v2-s-5); }
.v2-stats-bar-lede {
  font-size: 18px;
  color: var(--v2-text-2);
  margin-top: var(--v2-s-2);
}
.v2-stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--v2-s-4);
}
@media (max-width: 900px) {
  .v2-stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
.v2-stat-card {
  padding: var(--v2-s-4);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  transition: all 200ms var(--v2-ease);
}
.v2-stat-card:hover {
  border-color: var(--v2-purple);
  background: var(--v2-surface-3);
}
.v2-stat-num {
  font-family: var(--v2-font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--v2-s-2);
}
.gradient-text {
  background: linear-gradient(90deg, var(--v2-purple-deep) 0%, var(--v2-purple) 50%, var(--v2-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.v2-stat-label {
  font-size: 13px;
  color: var(--v2-text-2);
  font-family: var(--v2-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* === EYEBROW === */
.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--v2-s-2);
  font-family: var(--v2-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-text-2);
  margin-bottom: var(--v2-s-3);
}
.v2-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--v2-purple);
}

/* === TYPOGRAPHY === */
.v2-h2 {
  font-family: var(--v2-font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--v2-s-3);
  color: var(--v2-text);
}
.v2-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--v2-text-2);
  margin: 0 0 var(--v2-s-4);
}

.v2-section-head {
  margin-bottom: var(--v2-s-6);
  max-width: 800px;
}

/* === PERSONA CHIPS === */
.v2-persona-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--v2-s-2);
  margin-bottom: var(--v2-s-4);
}
.v2-persona-chip {
  padding: 8px 14px;
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-full);
  font-size: 13px;
  color: var(--v2-text-2);
  font-family: var(--v2-font-mono);
  letter-spacing: 0.04em;
  transition: all 200ms var(--v2-ease);
  cursor: pointer;
}
.v2-persona-chip:hover {
  background: var(--v2-surface-3);
  border-color: var(--v2-purple);
  color: var(--v2-text);
}

/* === LUCY CHAT === */
.v2-lucy-chat {
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  padding: var(--v2-s-4);
  display: flex;
  flex-direction: column;
  gap: var(--v2-s-3);
  height: 540px;
  position: sticky;
  top: 96px;
}
.v2-lucy-header {
  display: flex;
  gap: var(--v2-s-3);
  align-items: center;
  padding-bottom: var(--v2-s-3);
  border-bottom: 1px solid var(--v2-hairline);
}
.v2-lucy-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--v2-r-full);
  background: linear-gradient(135deg, var(--v2-purple), var(--v2-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--v2-white);
  font-size: 18px;
}
.v2-lucy-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #10B981;
  border-radius: var(--v2-r-full);
  border: 2px solid var(--v2-surface-2);
}
.v2-lucy-name { font-weight: 700; font-size: 14px; }
.v2-lucy-status { font-size: 12px; color: var(--v2-text-3); font-family: var(--v2-font-mono); }
.v2-lucy-status strong { color: var(--v2-purple); font-weight: 600; }

.v2-lucy-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--v2-s-2);
}
.v2-lucy-meta {
  font-size: 11px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
  text-align: center;
  padding: var(--v2-s-2);
  border: 1px dashed var(--v2-hairline);
  border-radius: var(--v2-r-1);
}
.v2-lucy-msg {
  padding: 10px 14px;
  border-radius: var(--v2-r-2);
  font-size: 14px;
  max-width: 80%;
  line-height: 1.4;
}
.v2-lucy-in {
  background: var(--v2-surface-3);
  color: var(--v2-text);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.v2-lucy-out {
  background: var(--v2-purple);
  color: var(--v2-white);
  align-self: flex-end;
  border-top-right-radius: 4px;
}

.v2-lucy-typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--v2-surface-3);
  border-radius: var(--v2-r-2);
  border-top-left-radius: 4px;
  align-self: flex-start;
  font-size: 12px;
  color: var(--v2-text-3);
}
.v2-lucy-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--v2-purple);
  border-radius: var(--v2-r-full);
  animation: v2-typing 1.4s ease-in-out infinite;
}
.v2-lucy-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.v2-lucy-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes v2-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.v2-lucy-progress {
  height: 3px;
  background: var(--v2-surface-3);
  border-radius: var(--v2-r-full);
  overflow: hidden;
}
.v2-lucy-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--v2-purple), var(--v2-pink));
  border-radius: var(--v2-r-full);
  transition: width 8s linear;
}
.v2-lucy-chat:hover .v2-lucy-progress-bar { width: 100%; }

.v2-lucy-input {
  display: flex;
  gap: var(--v2-s-2);
}
.v2-lucy-input input {
  flex: 1;
  padding: 10px 14px;
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-full);
  color: var(--v2-text);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms var(--v2-ease);
}
.v2-lucy-input input:focus { border-color: var(--v2-purple); }
.v2-lucy-input .v2-btn-primary { padding: 10px 16px; font-size: 13px; }

/* === BENTO GRID === */
.v2-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--v2-s-3);
}
@media (max-width: 900px) {
  .v2-bento-grid { grid-template-columns: 1fr; }
}
.v2-bento-card {
  position: relative;
  padding: var(--v2-s-5);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  display: flex;
  flex-direction: column;
  gap: var(--v2-s-2);
  transition: all 300ms var(--v2-ease);
  overflow: hidden;
}
.v2-bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v2-purple), transparent);
  opacity: 0;
  transition: opacity 300ms var(--v2-ease);
}
.v2-bento-card:hover {
  border-color: var(--v2-purple);
  transform: translateY(-4px);
}
.v2-bento-card:hover::before { opacity: 1; }
.v2-bento-large { grid-column: span 2; grid-row: span 1; }
.v2-bento-wide { grid-column: span 3; }
@media (max-width: 900px) {
  .v2-bento-large { grid-column: span 1; }
  .v2-bento-wide { grid-column: span 1; }
}
.v2-bento-tag {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-purple);
  padding: 4px 10px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--v2-r-full);
  align-self: flex-start;
}
.v2-bento-h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--v2-text);
}
.v2-bento-p {
  font-size: 14px;
  color: var(--v2-text-2);
  line-height: 1.5;
  margin: 0;
}
.v2-bento-meta {
  margin-top: auto;
  font-size: 12px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
}

/* === FEATURE GRID === */
.v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--v2-s-3);
}
@media (max-width: 900px) { .v2-feature-grid { grid-template-columns: 1fr; } }
.v2-feature-card {
  padding: var(--v2-s-5);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  transition: all 300ms var(--v2-ease);
}
.v2-feature-card:hover {
  background: var(--v2-surface-3);
  border-color: var(--v2-purple);
  transform: translateY(-2px);
}
.v2-feature-num {
  font-family: var(--v2-font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-purple);
  margin-bottom: var(--v2-s-3);
  letter-spacing: 0.08em;
}
.v2-feature-h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--v2-s-2);
  color: var(--v2-text);
}
.v2-feature-card p {
  font-size: 14px;
  color: var(--v2-text-2);
  line-height: 1.5;
}

/* === CRAFT GRID === */
.v2-craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--v2-s-3);
}
@media (max-width: 900px) { .v2-craft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v2-craft-grid { grid-template-columns: 1fr; } }
.v2-craft-card {
  padding: var(--v2-s-5);
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  transition: all 300ms var(--v2-ease);
  position: relative;
}
.v2-craft-card:hover {
  background: var(--v2-surface-3);
  border-color: var(--v2-pink);
  transform: translateY(-2px);
}
.v2-craft-icon {
  font-family: var(--v2-font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--v2-purple);
  margin-bottom: var(--v2-s-3);
}
.v2-craft-h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--v2-s-2);
  color: var(--v2-text);
}
.v2-craft-card p {
  font-size: 13px;
  color: var(--v2-text-2);
  line-height: 1.5;
  margin-bottom: var(--v2-s-3);
}
.v2-craft-spec {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-text-3);
  letter-spacing: 0.06em;
  padding-top: var(--v2-s-3);
  border-top: 1px solid var(--v2-hairline);
}

/* === CTA FINAL === */
.v2-cta-final {
  background: var(--v2-ground);
  position: relative;
}
.v2-cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--v2-purple), transparent);
}
.v2-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--v2-s-6) var(--v2-s-5);
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
}
.v2-cta-eyebrow {
  font-family: var(--v2-font-mono);
  font-size: 12px;
  color: var(--v2-text-2);
  letter-spacing: 0.08em;
  margin-bottom: var(--v2-s-4);
}
.v2-h2-cta {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: var(--v2-s-4);
}
.v2-cta-lede {
  font-size: 16px;
  color: var(--v2-text-2);
  margin-bottom: var(--v2-s-5);
}
.v2-cta-buttons {
  display: flex;
  gap: var(--v2-s-3);
  justify-content: center;
  flex-wrap: wrap;
}

.v2-cta-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--v2-s-3);
  margin-top: var(--v2-s-5);
}
@media (max-width: 900px) { .v2-cta-social { grid-template-columns: 1fr; } }
.v2-cta-proof {
  padding: var(--v2-s-4);
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  text-align: left;
}
.v2-cta-proof-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--v2-s-1);
}
.v2-cta-proof-label {
  font-size: 13px;
  color: var(--v2-text-2);
  font-family: var(--v2-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--v2-s-3);
}
.v2-cta-proof-quote {
  font-size: 14px;
  color: var(--v2-text);
  font-style: italic;
  margin-bottom: var(--v2-s-2);
  line-height: 1.5;
}
.v2-cta-proof-author {
  font-size: 12px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
}

/* === FOOTER === */
.v2-footer {
  background: var(--v2-ground);
  border-top: 1px solid var(--v2-hairline);
  padding: var(--v2-s-7) 0 var(--v2-s-5);
}
.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--v2-s-5);
  margin-bottom: var(--v2-s-6);
}
@media (max-width: 900px) {
  .v2-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .v2-footer-grid { grid-template-columns: 1fr; }
}
.v2-footer-logo {
  font-family: var(--v2-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--v2-s-3);
}
.v2-footer-tagline {
  font-size: 13px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
  margin-bottom: var(--v2-s-3);
}
.v2-footer-social {
  display: flex;
  gap: var(--v2-s-2);
}
.v2-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--v2-hairline-strong);
  border-radius: var(--v2-r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--v2-text-2);
  transition: all 200ms var(--v2-ease);
}
.v2-social-link:hover {
  border-color: var(--v2-purple);
  color: var(--v2-purple);
}
.v2-footer-h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-text);
  margin-bottom: var(--v2-s-3);
  font-family: var(--v2-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.v2-footer-link {
  display: block;
  font-size: 13px;
  color: var(--v2-text-2);
  margin-bottom: var(--v2-s-2);
  transition: color 200ms var(--v2-ease);
}
.v2-footer-link:hover { color: var(--v2-text); }
.v2-footer-address {
  font-size: 12px;
  color: var(--v2-text-3);
  margin-top: var(--v2-s-3);
  line-height: 1.5;
}

.v2-footer-newsletter {
  display: flex;
  gap: var(--v2-s-5);
  align-items: center;
  justify-content: space-between;
  padding: var(--v2-s-5);
  background: var(--v2-surface-1);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-3);
  margin-bottom: var(--v2-s-3);
}
@media (max-width: 700px) {
  .v2-footer-newsletter { flex-direction: column; align-items: stretch; }
}
.v2-footer-newsletter-p {
  font-size: 14px;
  color: var(--v2-text-2);
  margin-top: var(--v2-s-2);
}
.v2-footer-newsletter-form {
  display: flex;
  gap: var(--v2-s-2);
}
.v2-footer-newsletter-form input {
  padding: 10px 14px;
  background: var(--v2-surface-2);
  border: 1px solid var(--v2-hairline);
  border-radius: var(--v2-r-full);
  color: var(--v2-text);
  font-size: 14px;
  min-width: 220px;
  outline: none;
}
.v2-footer-newsletter-form input:focus { border-color: var(--v2-purple); }
.v2-footer-unsubscribe {
  font-size: 11px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
  margin-bottom: var(--v2-s-5);
}
.v2-footer-bottom {
  padding-top: var(--v2-s-4);
  border-top: 1px solid var(--v2-hairline);
  font-size: 12px;
  color: var(--v2-text-3);
  font-family: var(--v2-font-mono);
}

/* === STICKY LUCY CTA === */
.v2-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: var(--v2-s-2);
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--v2-purple), var(--v2-pink));
  color: var(--v2-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--v2-r-full);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
  transition: all 300ms var(--v2-ease);
}
.v2-sticky-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.6);
}
.v2-sticky-cta-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: var(--v2-r-full);
  animation: v2-pulse 2s ease-in-out infinite;
}
@keyframes v2-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* === CURSOR === */
.v2-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--v2-purple);
  border-radius: var(--v2-r-full);
  pointer-events: none;
  z-index: 999;
  transition: transform 100ms ease-out, width 200ms var(--v2-ease), height 200ms var(--v2-ease);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 1024px) {
  .v2-cursor { display: block; }
}

/* === ANIMATIONS === */
.v2-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--v2-ease), transform 800ms var(--v2-ease);
}
.v2-fade-up.v2-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .v2-section { padding: var(--v2-s-6) 0; }
  .v2-hero { min-height: 80vh; padding: var(--v2-s-6) 0; }
  .v2-hero-products { display: none; }
  .v2-hero-h1 { font-size: clamp(36px, 12vw, 56px); }
}
