/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #EFF6FF;
  --bg-card: #F0F5FF;
  --bg-card-hover: #E8F0FE;
  --royal: #1e40af;
  --royal-bright: #2563eb;
  --royal-light: #DBEAFE;
  --royal-dim: rgba(30, 64, 175, 0.08);
  --royal-border: rgba(30, 64, 175, 0.15);
  --sky: #38bdf8;
  --sky-dim: rgba(56, 189, 248, 0.08);
  --sky-border: rgba(56, 189, 248, 0.2);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(15, 23, 42, 0.1);
  --border-light: rgba(15, 23, 42, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

em { font-style: normal; color: var(--royal); font-weight: 800; }
strong { font-weight: 800; color: var(--royal-bright); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 64px 64px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--royal-border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--royal);
  margin-bottom: 32px;
  background: var(--royal-dim);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 6px var(--sky);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--sky); }
  50% { opacity: 0.5; box-shadow: 0 0 12px var(--sky); }
}

.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--royal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background: var(--royal-bright);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--royal-border);
  color: var(--royal);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat { display: flex; flex-direction: column; gap: 2px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* === HERO RIGHT === */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30, 64, 175, 0.15), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(30, 64, 175, 0.12);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-callouts {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 560px;
  margin-top: 20px;
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.callout-top { align-items: flex-start; }
.callout-bot { align-items: flex-end; }

.callout-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.callout-val {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--royal);
  letter-spacing: 0.05em;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 96px 64px;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.philosophy-headline {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
}

.philosophy-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.philosophy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mindset-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ring-svg { width: 200px; height: 200px; }

.ring-caption {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* === METHOD === */
.method {
  padding: 96px 64px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-primary);
}

.method-header {
  margin-bottom: 56px;
}

.method-headline {
  font-size: clamp(32px, 3.5vw, 52px);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.pillar {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.25s ease;
}

.pillar:hover {
  border-color: var(--royal-border);
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
  transform: translateY(-2px);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.8;
}

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

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Cycle visual */
.method-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.method-cycle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cycle-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.cycle-visual {
  display: flex;
  align-items: center;
  gap: 0;
}

.cycle-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cycle-node span {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.node-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid;
  position: relative;
}

.node-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--royal);
  opacity: 0.25;
}

.node-1 { border-color: var(--royal); opacity: 1; }
.node-2 { border-color: rgba(30,64,175,0.4); }
.node-3 { border-color: rgba(30,64,175,0.15); }

.cycle-arrow { padding: 0 8px; display: flex; align-items: center; }

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 96px 64px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-headline {
  font-size: clamp(32px, 3.5vw, 52px);
  margin-bottom: 12px;
}

.testimonials-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  border-color: var(--royal-border);
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.testimonials-cta {
  text-align: center;
}

/* === PLAYBOOK === */
.playbook {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 96px 64px;
}

.playbook-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.player-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}

.player-type {
  display: flex;
  gap: 20px;
  padding: 28px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: all 0.25s ease;
}

.player-type:hover {
  border-color: var(--royal-border);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
}

.pt-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--royal-border);
  border-radius: 50%;
  background: var(--royal-dim);
}

.pt-content { flex: 1; }

.pt-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.pt-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.outro-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.4;
  color: var(--text-secondary);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
}

.outro-attr {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  padding: 120px 64px;
  text-align: center;
  background: var(--bg-primary);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--royal-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--royal);
  margin-bottom: 40px;
  background: var(--royal-dim);
}

.closing-headline {
  font-size: clamp(38px, 4.5vw, 64px);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
}

/* === PRICING GRID === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  border-color: var(--royal-border);
}

.pricing-elite {
  border: 2px solid var(--royal);
  position: relative;
}

.pricing-elite:hover {
  border-color: var(--royal);
  box-shadow: 0 4px 24px rgba(30, 64, 175, 0.15);
}

.cta-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--royal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: var(--royal-bright);
}

.closing-promise {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid var(--royal);
  color: var(--royal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-outline:hover {
  background: var(--royal);
  color: #fff;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 64px;
  background: var(--bg-secondary);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 64px;
    gap: 48px;
  }

  .hero-right { order: -1; }

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

  .philosophy-inner { grid-template-columns: 1fr; }

  .philosophy-visual { display: none; }

  .player-types { grid-template-columns: 1fr; }

  .method, .philosophy, .playbook, .closing { padding: 64px 32px; }

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

@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }

  .hero-headline { font-size: 38px; }

  .hero-stats { gap: 20px; }

  .stat-num { font-size: 22px; }

  .nav-inner { padding: 0 20px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 2px; }