/* ============================================
   IKIGAI AI-Intensive Landing Page
   Design System + Full Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F8F7FF;
  --bg-dark: #0F0D1A;
  --bg-dark-card: #1A1730;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-on-dark: #E5E7EB;
  --accent: #7C3AED;
  --accent-hover: #6D28D9;
  --accent-light: #EDE9FE;
  --accent-glow: rgba(124, 58, 237, 0.15);
  --lime: #84CC16;
  --lime-light: #ECFCCB;
  --border: #E5E7EB;
  --border-light: #F3F4F6;

  /* Typography */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --section-py: 96px;
  --section-py-mobile: 56px;
  --container: 1200px;
  --gap: 24px;
  --gap-lg: 48px;

  /* Radius */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-accent: 0 4px 24px rgba(124, 58, 237, 0.2);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--accent-hover);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: var(--section-py) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section--dark .section-tag {
  background: rgba(124, 58, 237, 0.2);
  color: #C4B5FD;
}

h1 {
  font-size: 52px;
  font-weight: var(--fw-extrabold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-size: 40px;
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 680px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.highlight {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 18px;
  font-weight: var(--fw-bold);
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  gap: 8px;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(124, 58, 237, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--accent);
}

.btn--white:hover {
  background: #F3F4F6;
  color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: 20px;
  padding: 22px 48px;
  border-radius: 14px;
}

/* ============================================
   HEADER (Sticky)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--duration) var(--ease);
}

.header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: var(--accent);
}

.header__cta {
  font-size: 15px;
  font-weight: var(--fw-bold);
  padding: 10px 24px;
  border-radius: 10px;
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  padding: 120px 0 var(--section-py);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--accent);
  background: var(--accent-light);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__badge span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero__sub {
  font-size: 22px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
}

.hero__meta-item--accent .hero__meta-value {
  color: var(--accent);
  font-weight: var(--fw-extrabold);
  background: var(--accent-light);
  padding: 2px 12px;
  border-radius: 6px;
  display: inline-block;
}

.hero__meta-label {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__meta-value {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text);
}

/* Hero Visual — Neural Network Animation */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neural-net {
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  position: relative;
}

.neural-net canvas {
  width: 100%;
  height: 100%;
}

/* ============================================
   1.5 CREDENTIALS
   ============================================ */
.credentials {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.credentials__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.credentials__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credentials__icon {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.credentials__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.credentials__text {
  display: flex;
  flex-direction: column;
}

.credentials__text strong {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text);
}

.credentials__text span {
  font-size: 12px;
  color: var(--text-muted);
}

.credentials__link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.credentials__link:hover {
  opacity: 0.7;
}

.credentials__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.credentials__badge-ah {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: #16a34a;
}

/* ============================================
   2. PROBLEM
   ============================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.problem__card {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.problem__card--positive {
  background: var(--white);
  border-color: var(--lime);
  border-left: 4px solid var(--lime);
}

.problem__card--negative {
  background: var(--white);
  border-color: #FCA5A5;
  border-left: 4px solid #EF4444;
}

.problem__card-icon {
  margin-bottom: 16px;
}

.problem__card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.problem__card ul {
  list-style: none;
  padding: 0;
}

.problem__card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem__card--positive li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: var(--fw-bold);
}

.problem__card--negative li::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: var(--fw-bold);
  font-size: 18px;
}

.problem__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--text);
}

/* ============================================
   3. PROGRAM
   ============================================ */
.program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.program__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.program__card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.program__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
  border-radius: 12px;
  margin-bottom: 20px;
}

.program__card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.program__card ul {
  list-style: none;
  padding: 0;
}

.program__card li {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.program__card li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================
   4. RESULTS
   ============================================ */
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.results__card {
  text-align: center;
  padding: 32px 24px;
}

.results__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.results__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.results__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   5. AUDIENCE
   ============================================ */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.audience__card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.audience__card:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience__emoji {
  margin-bottom: 16px;
}

.audience__card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.audience__card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   5.5 POWER — Claude Code Section
   ============================================ */
.power__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.power__card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--duration) var(--ease);
}

.power__card:hover {
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(132, 204, 22, 0.15);
}

.power__card-icon {
  margin-bottom: 20px;
}

.power__card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.power__card p {
  font-size: 15px;
  color: var(--text-on-dark);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 16px;
}

.power__link {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--lime);
  transition: opacity var(--duration) var(--ease);
}

.power__link:hover {
  color: var(--lime);
  opacity: 0.8;
}

/* ============================================
   6. SPEAKER
   ============================================ */
.speaker__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
}

.speaker__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f0d1a;
}

.speaker__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: normal;
}

.speaker__info h2 {
  margin-bottom: 8px;
}

.speaker__title {
  font-size: 20px;
  color: var(--accent);
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
}

.speaker__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.speaker__stat {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

.speaker__stat strong {
  color: var(--accent);
  font-size: 18px;
  font-weight: var(--fw-extrabold);
}

.speaker__bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaker__bio p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.speaker__role-highlight {
  font-weight: var(--fw-bold);
  color: var(--accent) !important;
  font-size: 17px !important;
}

.speaker__role-highlight a,
.speaker__bio a,
.team__member a,
.team__together a,
.footer__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.speaker__role-highlight a:hover,
.speaker__bio a:hover,
.team__member a:hover,
.team__together a:hover,
.footer__text a:hover {
  opacity: 0.7;
}

/* ============================================
   6.5 TEAM
   ============================================ */
.team__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.team__photo-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0f0d1a;
}

.team__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team__info h2 {
  margin-bottom: 24px;
}

.team__members {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.team__member {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.team__member h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team__member-role {
  font-size: 14px;
  color: var(--accent);
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
}

.team__member p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.team__together {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.team__awards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.award__icon {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.award__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award__text h4 {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: 2px;
}

.award__text p {
  font-size: 14px;
  color: var(--text-muted);
}

.award--link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.award--link:hover {
  opacity: 0.7;
}

/* ============================================
   7. EXPECTATIONS
   ============================================ */
.expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.expect__card {
  padding: 36px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.expect__card:hover {
  border-color: var(--accent);
}

.expect__card-icon {
  margin-bottom: 16px;
}

.expect__card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.expect__card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   7.5 FAQ
   ============================================ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq__item.active {
  border-color: var(--accent);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: var(--fw-semibold);
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--duration) var(--ease);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--text-muted);
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   8. PRICING
   ============================================ */
.pricing__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--lime));
}

.pricing__amount {
  font-size: 64px;
  font-weight: var(--fw-extrabold);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing__currency {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
}

.pricing__note {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.pricing__extras {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

.pricing__extras strong {
  color: var(--text);
}

.pricing__cta {
  margin-bottom: 16px;
}

.pricing__cta .btn {
  width: 100%;
}

.pricing__guarantee {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   8.5 VENUE
   ============================================ */
.venue__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.venue__info h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

.venue__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.venue__detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  color: var(--text-muted);
}

.venue__detail svg {
  flex-shrink: 0;
  color: var(--accent);
}

.venue__map-btn {
  gap: 8px;
}

/* ============================================
   9. URGENCY (Dark CTA)
   ============================================ */
.urgency {
  text-align: center;
}

.urgency h2 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}

.urgency__text {
  font-size: 20px;
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.8;
}

.urgency .btn {
  font-size: 20px;
}

/* ============================================
   10. UPSELL
   ============================================ */
.upsell__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.upsell__step {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: all var(--duration) var(--ease);
}

.upsell__step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.upsell__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(124, 58, 237, 0.2);
  color: #C4B5FD;
  font-size: 14px;
  font-weight: var(--fw-extrabold);
  border-radius: 10px;
  margin-bottom: 14px;
}

.upsell__step h4 {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 8px;
}

.upsell__step p {
  font-size: 14px;
  color: var(--text-on-dark);
  opacity: 0.7;
  line-height: 1.5;
}

.upsell__bottom {
  text-align: center;
}

.upsell__meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.upsell__meta-item {
  font-size: 16px;
  color: var(--text-on-dark);
  opacity: 0.7;
}

.upsell__meta-item strong {
  font-size: 28px;
  font-weight: var(--fw-extrabold);
  color: var(--white);
  display: block;
  opacity: 1;
}

.upsell__result {
  font-size: 17px;
  color: var(--text-on-dark);
  opacity: 0.8;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ============================================
   10.5 COMMUNITY
   ============================================ */
.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.community__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--duration) var(--ease);
  position: relative;
}

.community__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.community__card--wa:hover {
  border-color: #25D366;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.15);
}

.community__card--tg:hover {
  border-color: #2AABEE;
  box-shadow: 0 4px 24px rgba(42, 171, 238, 0.15);
}

.community__icon {
  flex-shrink: 0;
}

.community__info h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text);
}

.community__meta-line {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.community__meta-line strong {
  color: var(--accent);
}

.community__card--wa .community__meta-line strong {
  color: #25D366;
}

.community__card--tg .community__meta-line strong {
  color: #2AABEE;
}

.community__info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.community__join {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--accent);
  margin-top: auto;
  transition: gap var(--duration) var(--ease);
}

.community__card--wa .community__join {
  color: #25D366;
}

.community__card--tg .community__join {
  color: #2AABEE;
}

.community__card:hover .community__join {
  gap: 4px;
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 36px;
  width: auto;
}

.footer__text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--white);
}

/* ============================================
   NEON GLOW EFFECT (cursor-following)
   ============================================ */
.glow-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  overflow: hidden;
}

.glow-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(
    300px circle at var(--mouse-x) var(--mouse-y),
    rgba(124, 58, 237, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

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

/* Neon border glow */
.glow-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  background: radial-gradient(
    250px circle at var(--mouse-x) var(--mouse-y),
    rgba(124, 58, 237, 0.4),
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero { padding: 100px 0 72px; }
  .hero__sub { font-size: 19px; }
  .section { padding: 72px 0; }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .results__grid,
  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .power__grid {
    grid-template-columns: 1fr;
  }

  .speaker__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .speaker__photo {
    max-width: 360px;
  }

  .team__layout {
    gap: 40px;
  }

  .credentials__inner {
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; line-height: 1.15; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .container { padding: 0 20px; }
  .section { padding: var(--section-py-mobile) 0; }

  .hero {
    padding: 88px 0 var(--section-py-mobile);
  }
  .hero__sub { font-size: 17px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__meta { gap: 20px; }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .credentials {
    padding: 24px 0;
  }

  .credentials__inner {
    flex-direction: column;
    gap: 16px;
  }

  .credentials__divider {
    width: 60%;
    height: 1px;
  }

  .problem__grid,
  .program__grid {
    grid-template-columns: 1fr;
  }

  .problem__card { padding: 28px; }
  .program__card { padding: 28px; }

  .results__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .results__card {
    padding: 24px 16px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .power__grid {
    grid-template-columns: 1fr;
  }

  .speaker__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .speaker__photo {
    max-width: 280px;
  }

  .speaker__stats {
    flex-direction: column;
    gap: 8px;
  }

  .team__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .expect__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card {
    padding: 40px 24px;
  }

  .pricing__amount {
    font-size: 48px;
  }

  .urgency h2 {
    font-size: 30px;
  }

  .upsell__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .upsell__step {
    padding: 20px 16px;
  }

  .upsell__meta {
    gap: 24px;
  }

  .upsell__meta-item strong {
    font-size: 22px;
  }

  .venue__card {
    padding: 32px 20px;
  }

  .venue__info h3 {
    font-size: 22px;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .btn--lg {
    font-size: 18px;
    padding: 18px 36px;
  }

  .header__logo {
    height: 32px;
  }

  .header__nav {
    display: none;
  }

  .header__cta span {
    display: none;
  }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.modal__close:hover {
  color: var(--text);
}

.modal__title {
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: 24px;
  text-align: center;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.modal__input:focus {
  border-color: var(--accent);
}

.modal__submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.modal__success {
  text-align: center;
  padding: 24px 0;
}

.modal__success p {
  font-size: 18px;
  color: var(--text);
  font-weight: var(--fw-semibold);
}

/* Tablet — upsell grid */
@media (max-width: 1024px) {
  .upsell__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .upsell__grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .results__grid {
    grid-template-columns: 1fr;
  }

  .hero__meta {
    flex-direction: column;
    gap: 12px;
  }
}
