/* =============================================
   THE STAKES SECTION
   ============================================= */
.stakes {
  background: var(--cream);
  padding: 140px 0;
  position: relative;
}
.stakes-inner {
  max-width: 900px;
  margin: 0 auto;
}
.stakes-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.stakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.stakes-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.stakes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stakes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}
.stakes-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
/* Premium Quote Block */
.stakes-quote {
  background: white;
  border-radius: var(--radius-sm);
  padding: 48px 56px;
  border: 1px solid var(--hairline);
  position: relative;
}
.stakes-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--bronze);
}
.stakes-quote p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* =============================================
   MANIFESTO SECTION - Premium
   ============================================= */
.manifesto {
  background: var(--ink);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--bronze));
}
.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--bone);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
}

/* =============================================
   ABOUT SECTION + STATS
   ============================================= */
.about {
  background: white;
  padding: 140px 0;
}
.about-header {
  text-align: center;
  margin-bottom: 72px;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats grid - Premium */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 72px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stat-card {
  background: white;
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s;
}
.stat-card:hover {
  background: var(--bone);
}
.stat-number {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.stat-desc {
  font-size: 12px;
  color: var(--ink-50);
}

/* =============================================
   PROTOCOL SECTION - Premium
   ============================================= */
.protocol {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.protocol-label {
  font-family: var(--font-mono);
  color: var(--bronze-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.protocol-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--bone);
  font-weight: 400;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* Protocol timeline - Premium */
.protocol-timeline {
  display: flex;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.protocol-timeline::-webkit-scrollbar { height: 2px; }
.protocol-timeline::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); }
.protocol-timeline::-webkit-scrollbar-thumb { background: var(--bronze-dim); }

.protocol-step {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 24px 12px;
  position: relative;
  transition: background 0.3s;
}
.protocol-step:hover {
  background: rgba(255, 255, 255, 0.03);
}
.protocol-step--active {
  background: rgba(255, 255, 255, 0.05);
}

/* Connecting line */
.protocol-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.protocol-step:last-child::after { display: none; }

.protocol-step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--bone-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.3s, color 0.3s;
}
.protocol-step:hover .protocol-step-num {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--bone);
}
.protocol-step--active .protocol-step-num {
  border-color: var(--bronze);
  color: var(--bronze-light);
}
.protocol-step--gold .protocol-step-num {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}

.protocol-step-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.protocol-step-desc {
  font-size: 11px;
  color: var(--bone-deep);
  line-height: 1.5;
}

.protocol-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

/* =============================================
   COMPARISON SECTION
   ============================================= */
.comparison {
  background: var(--off-white);
  padding: 140px 0;
}
.comparison-header {
  text-align: center;
  margin-bottom: 64px;
}
.comparison-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead tr {
  background: var(--ink);
}
.comparison-table th {
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.comparison-table th:first-child { color: var(--bone-deep); width: 22%; }
.comparison-table th:nth-child(2) { color: var(--bone-deep); }
.comparison-table th:nth-child(3) { color: var(--bronze-light); }

.comparison-table td {
  padding: 20px 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--hairline);
  line-height: 1.5;
}
.comparison-table td:first-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-70);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}
.comparison-table td:nth-child(2) { color: var(--ink-50); }
.comparison-table td:nth-child(3) {
  color: var(--text-primary);
  font-weight: 500;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr {
  transition: background 0.2s;
}
.comparison-table tbody tr:hover {
  background: var(--bone);
}

/* =============================================
   OUTPUT SECTION
   ============================================= */
.output {
  background: white;
  padding: 140px 0;
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.output-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.output-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}
.output-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.output-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.output-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bronze);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Output preview card - Premium */
.output-preview {
  background: var(--bone);
  border-radius: var(--radius-sm);
  padding: 48px;
  border: 1px solid var(--hairline);
  position: relative;
  transition: border-color 0.3s;
}
.output-preview:hover {
  border-color: var(--hairline-dark);
}
.output-preview-badge {
  position: absolute;
  top: -12px;
  left: 48px;
  background: var(--ink);
  color: var(--bone);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.output-preview-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 40px;
  border: 1px solid var(--hairline);
}
.output-preview-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 12px;
}
.output-preview-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.output-preview-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-50);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.output-preview-theme {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.output-preview-theme-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
  margin-bottom: 10px;
}
.output-preview-theme-text {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}
.output-preview-quote {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 20px;
  position: relative;
}
.output-preview-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--bronze);
}
.output-preview-quote p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
}
.output-preview-quote cite {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-top: 12px;
}

/* =============================================
   SYSTEM / BIGGER PICTURE
   ============================================= */
.system {
  background: var(--primary);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.system-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.system-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: white;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.system-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.system-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.system-node {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid;
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.system-node:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.system-node--teal { border-color: var(--accent); }
.system-node--teal:hover { box-shadow: 0 0 40px rgba(43, 122, 120, 0.15); }
.system-node--gold { border-color: var(--highlight); }
.system-node--gold:hover { box-shadow: 0 0 40px rgba(212, 168, 67, 0.15); }
.system-node--red { border-color: #E74C3C; }
.system-node--red:hover { box-shadow: 0 0 40px rgba(231, 76, 60, 0.1); }

.system-node-marker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--bone-deep);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.system-node-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.system-node--teal .system-node-title { color: var(--accent-bright); }
.system-node--gold .system-node-title { color: var(--highlight); }
.system-node--red .system-node-title { color: #E74C3C; }
.system-node-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.system-connector {
  width: 2px;
  height: 36px;
  position: relative;
}
.system-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}
.system-connector::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-45deg);
}

.system-footer {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

/* =============================================
   ENDORSEMENTS
   ============================================= */
.endorsements {
  background: var(--cream);
  padding: 140px 0;
}
.endorsements-header {
  text-align: center;
  margin-bottom: 64px;
}
.endorsements-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.endorsements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.endorsement-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 48px;
  border: 1px solid var(--hairline);
  transition: border-color 0.3s;
}
.endorsement-card:hover {
  border-color: var(--hairline-dark);
}
/* Premium Endorsement Quote */
.endorsement-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 24px;
}
.endorsement-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--bronze);
}
.endorsement-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.endorsement-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-50);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Proof stats bar - Premium */
.proof-bar {
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 56px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat-number {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--bone);
}
.proof-stat-number--teal { color: var(--bone); }
.proof-stat-number--gold { color: var(--bronze-light); }
.proof-stat-number--white { color: var(--bone); }
.proof-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--bone-deep);
  margin-top: 12px;
}
.proof-sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   REGISTRATION SECTION
   ============================================= */
.register {
  background: var(--primary-deep);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.register-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.register-header {
  text-align: center;
  margin-bottom: 48px;
}
.register-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.register-title-accent {
  color: var(--highlight);
}
.register-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.register-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 52px;
}

/* Event details */
.register-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.register-detail {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s;
}
.register-detail:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.register-detail-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}
.register-detail-value {
  font-size: 15px;
  color: white;
  font-weight: 600;
}

/* =============================================
   YEAR 1 FOCUS SECTION
   ============================================= */
.focus {
  background: var(--off-white);
  padding: 140px 0;
}
.focus-header {
  text-align: center;
  margin-bottom: 64px;
}
.focus-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.focus-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.focus-card {
  background: white;
  padding: 40px 28px;
  text-align: left;
  transition: background 0.3s;
}
.focus-card:hover {
  background: var(--bone);
}
.focus-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  color: var(--ink-30);
  margin-bottom: 24px;
  display: block;
}
.focus-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.focus-card-text {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.7;
}
