/* ==============================
   Fuzozo Research Site — Style
   Aesthetic: Soft, warm, rounded
   Palette: Lavender + Peach + Cream
   ============================== */

:root {
  --fuzozo-lavender: #c4b5fd;
  --fuzozo-purple: #8b5cf6;
  --fuzozo-purple-deep: #6d28d9;
  --fuzozo-peach: #fbbf8b;
  --fuzozo-pink: #f9a8d4;
  --fuzozo-cream: #fef3e2;
  --fuzozo-mint: #a7f3d0;
  --fuzozo-sky: #bae6fd;
  --bg-primary: #faf5ff;
  --bg-card: #ffffff;
  --bg-alt: #f5f0ff;
  --text-primary: #1e1b4b;
  --text-secondary: #4c3f8f;
  --text-muted: #7c6fb0;
  --border-soft: rgba(139, 92, 246, 0.12);
  --shadow-soft: 0 4px 24px rgba(139, 92, 246, 0.08);
  --shadow-hover: 0 8px 40px rgba(139, 92, 246, 0.15);
  --shadow-card: 0 2px 16px rgba(139, 92, 246, 0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --azure-blue: #0078d4;
  --azure-light: #e8f4fd;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== FLOATING EYES ==================== */
.fuzozo-eyes {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--fuzozo-lavender);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fuzozo-eyes:hover { transform: scale(1.1); }

.eye {
  width: 32px;
  height: 32px;
  background: #1e1b4b;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.eye::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.pupil {
  width: 14px;
  height: 14px;
  background: #4c1d95;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* ==================== HERO PRODUCT BANNER ==================== */
.hero-product-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 0;
  overflow: visible;
}
.hero-banner-img {
  display: none; /* preload only */
}

/* Brand Logo in Nav */
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fuzozo-lavender);
}

/* Hero Product Images */
.hero-product-images {
  margin-bottom: 20px;
}
.hero-product-img {
  width: 200px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  border: 4px solid rgba(255,255,255,0.6);
  animation: breath 4s ease-in-out infinite;
}

/* Product Real Image */
.product-real-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 245, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-soft);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fuzozo-purple-deep);
}
.brand-icon { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: var(--fuzozo-purple);
  background: rgba(139, 92, 246, 0.08);
}
.nav-link.active {
  color: white;
  background: var(--fuzozo-purple);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ede9fe 0%, #fce7f3 30%, #fef3c7 60%, #ddd6fe 100%);
  padding: 120px 24px 80px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(196, 181, 253, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 168, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251, 191, 139, 0.2) 0%, transparent 60%);
  animation: float-bg 15s ease-in-out infinite;
}
@keyframes float-bg {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.05); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fuzozo-purple-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 24px;
}

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.meta-item {
  background: rgba(255,255,255,0.6);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.hero-stat {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--fuzozo-purple-deep);
  line-height: 1.2;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-azure {
  background: linear-gradient(180deg, var(--azure-light) 0%, #f0f5ff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==================== INFO CARD ==================== */
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  margin-bottom: 32px;
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.info-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.info-card-icon { font-size: 1.4rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.info-item {
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
}
.info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}
.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.info-value.highlight { color: var(--fuzozo-purple-deep); }
.info-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ==================== FEATURE CARDS ==================== */

/* ==================== TEAM SECTION ==================== */
.team-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  margin-bottom: 32px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.team-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-soft);
  background: var(--bg-alt);
  position: relative;
}
.team-card.ceo { border-color: var(--fuzozo-purple); background: rgba(139,92,246,0.04); }
.team-card.cto { border-color: var(--fuzozo-sky); }
.team-card.coo { border-color: var(--fuzozo-peach); }
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fuzozo-purple);
  margin-bottom: 6px;
}
.team-card.cto .team-role { color: #0284c7; }
.team-card.coo .team-role { color: #d97706; }
.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.team-name.need-confirm {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1.1rem;
}
.confirm-tag { font-style: normal; }
.team-bg { margin-bottom: 10px; }
.bg-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--fuzozo-lavender);
  color: var(--fuzozo-purple-deep);
}
.team-card.cto .bg-tag { background: #e0f2fe; color: #0369a1; }
.team-card.coo .bg-tag { background: #fef3c7; color: #92400e; }
.team-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.team-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.share-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.share-bar {
  flex: 1;
  height: 8px;
  background: rgba(139,92,246,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.share-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--fuzozo-lavender), var(--fuzozo-purple));
}
.team-card.cto .share-fill { background: linear-gradient(90deg, #bae6fd, #0284c7); }
.team-card.coo .share-fill { background: linear-gradient(90deg, #fde68a, #d97706); }
.share-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
}
.team-note {
  padding: 14px 18px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: var(--radius-sm);
  border-left: 4px solid #f59e0b;
  font-size: 0.82rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.equity-breakdown {
  margin-bottom: 16px;
}
.equity-breakdown h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.equity-bar {
  display: flex;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}
.eq-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.62rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  padding: 2px 4px;
  overflow: hidden;
}
.eq-seg.founder { background: var(--fuzozo-purple); }
.eq-seg.cofounder1 { background: #0284c7; }
.eq-seg.cofounder2 { background: #d97706; }
.eq-seg.investor { background: #10b981; }
.eq-seg.esop { background: #94a3b8; font-size: 0.55rem; }
.team-context {
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==================== FEATURE CARDS ==================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== PARTNERS ==================== */
.partners-bar {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.partners-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.partner-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
}
.partner-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fuzozo-purple-deep);
  margin-bottom: 8px;
}
.partner-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== TIMELINE ==================== */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto 48px;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--fuzozo-lavender), var(--fuzozo-purple), var(--fuzozo-pink));
  border-radius: 4px;
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fuzozo-lavender);
  border: 3px solid var(--bg-alt);
}
.timeline-dot.funded {
  background: var(--fuzozo-purple);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}
.timeline-dot.milestone {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}
.timeline-content {
  background: var(--bg-card);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fuzozo-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 4px 0 8px;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.timeline-extra {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--fuzozo-purple);
  font-weight: 600;
}
.investor-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-secondary);
  margin: 2px 2px;
}
.investor-tag.lead {
  background: var(--fuzozo-purple);
  color: white;
}

/* ==================== METRICS ==================== */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.metric-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.metric-icon { font-size: 1.8rem; margin-bottom: 8px; }
.metric-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--fuzozo-purple-deep);
}
.metric-value.highlight-gold { color: #f59e0b; }
.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==================== MARKET CONTEXT ==================== */
.market-context {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.market-context h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.market-stat {
  text-align: center;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}
.market-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fuzozo-purple-deep);
}
.market-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==================== PRODUCT SHOWCASE ==================== */
.product-showcase {
  margin-bottom: 48px;
}
.product-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  align-items: center;
}
.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-avatar {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--fuzozo-lavender) 0%, var(--fuzozo-pink) 50%, var(--fuzozo-peach) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2);
  animation: breath 4s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.avatar-eye {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #1e1b4b;
  border-radius: 50%;
  top: 65px;
}
.avatar-eye.left { left: 48px; }
.avatar-eye.right { right: 48px; }
.avatar-eye::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}
.avatar-pupil {
  width: 18px;
  height: 18px;
  background: var(--fuzozo-purple-deep);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.avatar-blush {
  position: absolute;
  width: 30px;
  height: 16px;
  background: rgba(249, 168, 212, 0.6);
  border-radius: 50%;
  top: 110px;
}
.avatar-blush.left { left: 35px; }
.avatar-blush.right { right: 35px; }

.product-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.product-tagline {
  color: var(--fuzozo-purple);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.spec-label {
  font-weight: 600;
  color: var(--text-secondary);
}
.spec-value {
  color: var(--text-primary);
}

/* ==================== TABLE ==================== */
.competitive-table, .revenue-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.competitive-table h3, .revenue-table h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.table-wrapper {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.85rem;
}
thead th {
  background: var(--bg-alt);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-primary);
}
.row-highlight td {
  background: rgba(139, 92, 246, 0.04);
  font-weight: 600;
}

/* ==================== MODEL CARDS ==================== */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.model-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.model-card.highlight-card {
  border: 2px solid var(--azure-blue);
  background: var(--azure-light);
  box-shadow: 0 4px 24px rgba(0, 120, 212, 0.12);
}
.model-badge.competitor {
  background: #fbbf24;
  color: #78350f;
}

/* Model Landscape */
.model-landscape {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  margin-bottom: 48px;
}
.model-landscape h3 { margin-bottom: 20px; font-weight: 700; }
.landscape-table { margin-bottom: 16px; }
.landscape-insight {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(251, 191, 139, 0.15), rgba(196, 181, 253, 0.15));
  border-radius: var(--radius-sm);
  border-left: 4px solid #f59e0b;
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.7;
}

/* Azure Key Insight */
.azure-key-insight {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(139, 92, 246, 0.08));
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 120, 212, 0.2);
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.rating.medium { color: #d97706; }

/* Arch Subtitle + Note */
.arch-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.arch-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(0, 120, 212, 0.06);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--azure-blue);
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-primary);
}
.highlight-layer {
  background: rgba(0, 120, 212, 0.15) !important;
  border: 2px solid var(--azure-blue) !important;
  font-weight: 700 !important;
}
.model-header {
  margin-bottom: 12px;
}
.model-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.model-badge.current {
  background: var(--fuzozo-lavender);
  color: var(--fuzozo-purple-deep);
}
.model-badge.opportunity {
  background: var(--azure-blue);
  color: white;
}
.model-card h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.model-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.model-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== TOKEN ANALYSIS ==================== */
.token-analysis {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  margin-bottom: 48px;
}
.token-analysis h3 { margin-bottom: 24px; font-weight: 700; }
.token-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.token-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 16px;
}
.token-item.prominent {
  padding: 12px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid var(--fuzozo-lavender);
}
.token-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.token-bar {
  height: 36px;
  background: linear-gradient(90deg, var(--fuzozo-lavender), var(--fuzozo-purple));
  border-radius: 18px;
  width: var(--bar-width);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  min-width: 120px;
  transition: width 1s ease;
}
.token-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}
.token-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

/* ==================== REQUIREMENTS ==================== */
.requirements-grid h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.req-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.req-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.req-icon { font-size: 1.6rem; margin-bottom: 8px; }
.req-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.req-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.req-azure {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure-blue);
  padding: 6px 12px;
  background: var(--azure-light);
  border-radius: 8px;
}

/* ==================== JAPAN ADVANTAGES ==================== */
.japan-advantages {
  margin-bottom: 48px;
}
.japan-advantages h3, .japan-timeline h3, .function-matrix h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.advantage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.advantage-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.advantage-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--fuzozo-lavender);
  line-height: 1;
  margin-bottom: 10px;
}
.advantage-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.advantage-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== JAPAN TIMELINE ==================== */
.japan-timeline { margin-bottom: 48px; }
.jp-timeline {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
}
.jp-phase {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--border-soft);
  position: relative;
}
.jp-phase.done { border-color: var(--fuzozo-mint); background: #f0fdf4; }
.jp-phase.current { border-color: var(--fuzozo-purple); background: #f5f0ff; }
.jp-phase.upcoming { border-color: var(--border-soft); opacity: 0.8; }
.jp-phase-marker {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.jp-phase-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fuzozo-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jp-phase-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 6px;
}
.jp-phase-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== FUNCTION MATRIX ==================== */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.matrix-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.matrix-item.priority-5 { border-left: 4px solid var(--fuzozo-purple); }
.matrix-item.priority-4 { border-left: 4px solid var(--fuzozo-lavender); }
.matrix-item.priority-3 { border-left: 4px solid var(--fuzozo-peach); }
.matrix-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.matrix-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 6px 0 4px;
}
.matrix-tech {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==================== AZURE COMPARISON ==================== */
.azure-comparison {
  margin-bottom: 48px;
}
.azure-comparison h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.comparison-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.comparison-header, .comparison-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
}
.comparison-header {
  font-weight: 700;
  font-size: 0.85rem;
}
.comparison-header .label-col { background: var(--bg-alt); }
.comparison-header .domestic { background: #fff1f2; color: #be123c; text-align: center; padding: 16px; }
.comparison-header .azure { background: var(--azure-light); color: var(--azure-blue); text-align: center; padding: 16px; }
.comparison-row {
  border-bottom: 1px solid var(--border-soft);
}
.comp-col {
  padding: 14px 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}
.comp-col.label-col {
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-secondary);
}
.comp-col.domestic, .comp-col.azure {
  justify-content: center;
  text-align: center;
}
.rating.weak { color: #dc2626; }
.rating.strong { color: #059669; font-weight: 600; }

/* ==================== ARCHITECTURE ==================== */
.architecture {
  margin-bottom: 48px;
}
.architecture h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.arch-diagram {
  max-width: 600px;
  margin: 0 auto;
}
.arch-layer {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
}
.arch-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.arch-component {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.azure-comp {
  background: var(--azure-light);
  color: var(--azure-blue);
  border: 1px solid rgba(0, 120, 212, 0.2);
}
.arch-connector {
  text-align: center;
  color: var(--fuzozo-lavender);
  font-size: 1.2rem;
  padding: 4px 0;
  margin-left: 40px;
}

.revenue-note {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--fuzozo-purple);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==================== ACTION STEPS ==================== */
.action-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 48px;
}
.action-step {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease;
}
.action-step:hover { transform: translateX(8px); }
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--fuzozo-purple), var(--fuzozo-pink));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.step-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--fuzozo-lavender);
  color: var(--fuzozo-purple-deep);
}

/* ==================== RISKS ==================== */
.risks-section {
  margin-bottom: 48px;
}
.risks-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.risk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.risk-card {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.risk-level {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
}
.risk-level.medium { background: #f59e0b; }
.risk-level.low { background: #10b981; }
.risk-content h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.risk-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== VERDICT ==================== */
.verdict {
  text-align: center;
  background: linear-gradient(135deg, var(--fuzozo-lavender) 0%, var(--fuzozo-pink) 50%, var(--fuzozo-peach) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.verdict::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  border-radius: inherit;
}
.verdict > * { position: relative; z-index: 1; }
.verdict-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: bounce-soft 3s ease-in-out infinite;
}
.verdict h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.verdict-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.8;
}
.verdict-text strong {
  color: var(--fuzozo-purple-deep);
}
.verdict-cta {
  display: inline-block;
  background: var(--fuzozo-purple-deep);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  text-align: center;
}
.footer p {
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.footer-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* ==================== ANIMATIONS ==================== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .equity-bar { height: 36px; }
  .eq-seg { font-size: 0.55rem; }
  .partners-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .market-stats { grid-template-columns: repeat(2, 1fr); }
  .product-main { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .req-cards { grid-template-columns: 1fr; }
  .advantage-cards { grid-template-columns: 1fr; }
  .jp-timeline { flex-direction: column; }
  .matrix-grid { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row {
    grid-template-columns: 120px 1fr 1fr;
  }
  .risk-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .token-item { grid-template-columns: 1fr; gap: 4px; }
  .verdict { padding: 36px 24px; }
  .arch-layer { grid-template-columns: 1fr; }
  .arch-label { text-align: left; }
  .arch-connector { margin-left: 0; }
}
