/* TERMINAL TAKEOVER - AI FIRST KICKOFF 2026 */
/* Complete redesign - Mobile First */

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a25;
  --green: #00FF41;
  --green-dim: rgba(0, 255, 65, 0.15);
  --green-glow: rgba(0, 255, 65, 0.4);
  --blue: #0066FF;
  --blue-glow: rgba(0, 102, 255, 0.4);
  --red: #FF0041;
  --text: #e0e0e0;
  --text-bright: #ffffff;
  --text-muted: #808080;
  --border: #2a2a35;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO SECTION - Full viewport */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  background: var(--bg-elevated);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
}

.hero-image .window-dots {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

/* Window dots - Global utility */
.dot-red { background: #ff5f56; width: 14px; height: 14px; border-radius: 50%; }
.dot-yellow { background: #ffbd2e; width: 14px; height: 14px; border-radius: 50%; }
.dot-green { background: #27c93f; width: 14px; height: 14px; border-radius: 50%; }

.hero-image img {
  width: 100%;
  display: block;
  filter: contrast(1.05);
}

.hero-image:hover {
  box-shadow: 0 30px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Hero Image - Full Width Responsive */
.hero-image-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.hero-image-disclaimer {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.hero-terminal {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-event {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-cta:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 30px var(--green-glow);
}

.earlybird-countdown {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  animation: pulse-orange 2s ease-in-out infinite;
}

@keyframes pulse-orange {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--green-glow); }
  50% { box-shadow: 0 0 40px var(--green-glow), 0 0 60px var(--green-dim); }
}

/* SECTION BASE */
.section {
  padding: 60px 20px;
}

.section-title {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}

/* BUNDLE FEATURED SECTION */
.bundle-section {
  background: var(--bg);
  padding: 80px 20px;
}

/* Bundle Finder Window */
.bundle-window {
  max-width: 700px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 40px var(--green-dim);
  border: 2px solid var(--green);
  animation: bundle-glow 3s ease-in-out infinite;
}

@keyframes bundle-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px var(--green-dim); }
  50% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 40px var(--green-glow); }
}

.bundle-window .window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.bundle-window-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

.bundle-window-content {
  padding: 0;
  position: relative;
}

.bundle-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--green);
  position: relative;
  animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 20px var(--green-dim), inset 0 0 20px rgba(0,255,65,0.05); }
  50% { box-shadow: 0 0 40px var(--green-glow), inset 0 0 30px rgba(0,255,65,0.1); }
}

.bundle-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
}

.bundle-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.bundle-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  margin-bottom: 8px;
}

.bundle-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-bright);
  text-transform: uppercase;
}

.bundle-body {
  padding: 24px 20px;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bundle-price-old {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-price {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.bundle-price-vat {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bundle-save {
  background: var(--green-dim);
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
}

.bundle-includes {
  margin: 20px 0;
}

.bundle-includes-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bundle-workshop-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.bundle-workshop-item:last-child { border-bottom: none; }

.bundle-check {
  color: var(--green);
  font-family: var(--mono);
  flex-shrink: 0;
}

.bundle-workshop-name {
  color: var(--text-bright);
  font-weight: 600;
}

.bundle-workshop-date {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
}

.bundle-cta {
  display: block;
  width: 100%;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--green);
  margin-top: 24px;
  transition: all 0.3s ease;
}

.bundle-cta:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 30px var(--green-glow);
}

.bundle-or-individual {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--green);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.bundle-or-individual:hover {
  opacity: 0.8;
}

/* WORKSHOPS SECTION */
.workshops-section {
  background: var(--bg-card);
  padding: 80px 20px;
}

.workshops-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* WORKSHOP WRAPPER & LABEL */
.workshop-wrapper {
  display: flex;
  flex-direction: column;
}

.workshop-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

/* TERMINAL CARD */
.terminal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--mono);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

.terminal-body {
  padding: 20px;
}

.terminal-line {
  margin-bottom: 8px;
  font-size: 14px;
}

.terminal-prompt { color: var(--green); }
.terminal-key { color: var(--text-muted); }
.terminal-value { color: var(--text-bright); }
.terminal-value-accent { color: var(--green); }

.terminal-list {
  margin: 16px 0;
  padding-left: 20px;
  list-style: none;
}

.terminal-list li {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 6px;
}

.terminal-list li::before {
  content: '>';
  color: var(--green);
  margin-right: 8px;
}

/* WORKSHOP BENEFITS LIST */
.workshop-benefits-list {
  margin: 12px 0 8px;
  padding-left: 0;
  list-style: none;
}

.workshop-benefit-item {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 8px;
}

.terminal-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--text-bright);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--blue);
  margin-top: 16px;
  transition: all 0.3s ease;
}

.terminal-cta:hover {
  background: transparent;
  color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
}

/* ABOUT SECTION */
.about-section {
  background: var(--bg);
  padding: 80px 20px;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.about-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
  border: 1px solid var(--border);
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text);
  margin-bottom: 16px;
}

/* FINAL CTA SECTION */
.final-cta-section {
  background: var(--bg-card);
  padding: 80px 20px;
  text-align: center;
}

.final-prompt {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 32px;
}

.final-cursor {
  display: inline-block;
  width: 12px;
  height: 24px;
  background: var(--green);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.final-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.final-cta-primary {
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 32px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
}

.final-cta-primary:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 30px var(--green-glow);
}

.final-cta-secondary {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 14px;
  text-decoration: none;
  padding: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.final-cta-secondary:hover {
  color: var(--text-bright);
  border-color: var(--text-muted);
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover { color: var(--green); }

.footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* MATRIX BACKGROUND */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.matrix-bg::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 40px,
      rgba(0,255,65,0.03) 40px,
      rgba(0,255,65,0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 80px,
      rgba(0,255,65,0.02) 80px,
      rgba(0,255,65,0.02) 81px
    );
  animation: matrix-fall 30s linear infinite;
}

@keyframes matrix-fall {
  0% { transform: translateY(0); }
  100% { transform: translateY(33.33%); }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .matrix-bg::before,
  .hero-cta,
  .bundle-card { animation: none; }
  .final-cursor { animation: none; opacity: 1; }
}

/* MOBILE - Hide matrix background and bundle title */
@media (max-width: 767px) {
  .matrix-bg,
  .hero-canvas,
  .bundle-title { display: none !important; }

  /* Fix EARLY BIRD badge overlap with headline */
  .bundle-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 12px;
    display: inline-block;
  }
  .bundle-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* TABLET+ */
@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .bundle-name { font-size: 2rem; }
  .bundle-price { font-size: 2.5rem; }
  .workshops-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 200px 1fr; align-items: center; }
  .final-buttons { flex-direction: row; justify-content: center; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .section { padding: 100px 20px; }
}

/* UTILITY - Loading state */
.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.is-loading::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* HERO DAYS - Finder Window Style */
.hero-days-window {
  margin-bottom: 28px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
}

.hero-days-window .window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.hero-days-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

.hero-days-content {
  padding: 20px 24px;
  text-align: left;
}

.hero-day {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hero-day:last-child {
  margin-bottom: 0;
}

.day-label {
  color: var(--green);
  font-weight: 700;
  font-family: var(--mono);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
}

.hero-trust span,
.hero-trust a {
  background: var(--green-dim);
  border: 1px solid var(--green);
  padding: 8px 16px;
  color: var(--green);
}

/* INFO SECTION */
.info-section {
  background: var(--bg-card);
  padding: 80px 20px;
}

.info-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.info-main h2 {
  font-size: 1.75rem;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.info-main p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.highlight-box {
  background: var(--green-dim);
  border-left: 3px solid var(--green);
  padding: 16px 20px;
  color: var(--text-bright);
  font-style: italic;
}

.info-points {
  display: grid;
  gap: 20px;
}

.info-point {
  display: flex;
  gap: 16px;
}

.info-icon {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.info-point strong {
  color: var(--text-bright);
  display: block;
  margin-bottom: 4px;
}

.info-point p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* BUNDLE EXTRAS */
.bundle-note {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* TERMINAL EXTRAS */
.terminal-desc {
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.6;
}

.terminal-agenda-title {
  color: var(--green);
  font-size: 12px;
  margin: 16px 0 8px;
}

/* SECTION HEADING */
.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .section-heading { font-size: 2.5rem; }
}

/* AUDIENCE SECTION */
.audience-section {
  background: var(--bg);
  padding: 80px 20px;
}

.audience-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
}

.audience-id {
  font-family: var(--mono);
  color: var(--green);
  font-size: 12px;
  margin-bottom: 12px;
}

.audience-card h3 {
  color: var(--text-bright);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* INCLUDED SECTION */
.included-section {
  background: var(--bg-card);
  padding: 80px 20px;
}

.included-grid {
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  gap: 16px;
}

.included-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.included-icon {
  font-family: var(--mono);
  color: var(--green);
  flex-shrink: 0;
}

.included-item strong {
  color: var(--text-bright);
  display: block;
  margin-bottom: 4px;
}

.included-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.takehome-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border: 2px solid var(--green);
  padding: 24px;
}

.takehome-box h3 {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  margin-bottom: 16px;
}

.takehome-box ul {
  list-style: none;
}

.takehome-box li {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.takehome-box li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: var(--mono);
}

.takehome-box strong {
  color: var(--text-bright);
}

/* REVIEWS SECTION */
.reviews-section {
  background: var(--bg);
  padding: 40px 20px 80px;
}

.reviews-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
}

.review-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-id {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
}

.review-header strong {
  color: var(--text-bright);
  display: block;
}

.review-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
}

.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

/* LinkedIn Review Card - Finder Style */
.linkedin-review-finder {
  display: block;
  max-width: 550px;
  margin: 40px auto 0;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.linkedin-review-finder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.linkedin-review-finder .window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.linkedin-window-title {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text-muted);
}

.linkedin-window-title .linkedin-logo {
  width: 16px;
  height: 16px;
  fill: #0a66c2;
}

.linkedin-image {
  width: 100%;
  height: auto;
  display: block;
}

/* TRAINER SECTION - Mobile First */
.trainer-section {
  background: var(--bg-card);
  padding: 60px 20px;
}

.trainer-content {
  max-width: 900px;
  margin: 0 auto;
}

.trainer-image-landscape {
  margin-bottom: 32px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}

.trainer-image-landscape .window-dots {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.trainer-image-landscape img {
  width: 100%;
  height: auto;
  display: block;
}

.trainer-text {
  text-align: left;
}

.trainer-text h2 {
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: 16px;
  text-align: center;
}

.trainer-text p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.trainer-creds {
  list-style: none;
  margin-top: 32px;
  background: var(--bg);
  border: 1px solid var(--green);
  padding: 24px;
}

.trainer-creds li {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text-bright);
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
}

.trainer-creds li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.trainer-creds li:last-child {
  margin-bottom: 0;
}

/* TRAINER CTA SECTION */
.trainer-cta-section {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  padding: 40px 20px 60px;
  text-align: center;
}

.trainer-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.trainer-cta-prompt {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--green);
  margin-bottom: 20px;
}

.trainer-cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background: var(--green);
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}

.trainer-cta-button {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.trainer-cta-button:hover {
  background: #00cc44;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,255,65,0.3);
}

/* TEAM SECTION */
.team-section {
  background: var(--bg);
  padding: 80px 20px;
}

.team-grid {
  max-width: 800px;
  margin: 0 auto 24px;
  display: grid;
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
}

.team-card h3 {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 12px;
}

.team-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid var(--blue);
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.team-cta:hover {
  background: var(--blue);
  color: var(--text-bright);
}

.team-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
  background: var(--bg-card);
  padding: 80px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: var(--mono);
  color: var(--green);
  font-size: 14px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item ul {
  list-style: none;
  margin: 12px 0;
}

.faq-item li {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.faq-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
}

.faq-item a {
  color: var(--blue);
}

/* LEGAL SECTION */
.legal-section {
  background: var(--bg);
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 24px;
}

.legal-block h3 {
  font-family: var(--mono);
  color: var(--text-bright);
  font-size: 14px;
  margin-bottom: 8px;
}

.legal-block p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* FOOTER EXTRAS */
.footer-disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.7;
}

/* TABLET+ RESPONSIVE */
@media (min-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-text h2 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ERROR BANNER */
.error-banner {
  background: #ff4444;
  color: white;
  padding: 16px 20px;
  text-align: center;
  font-family: var(--mono);
}
.error-banner p { margin: 4px 0; }
.error-banner a {
  color: white;
  text-decoration: underline;
}

/* BUNDLE FOOTNOTE */
.bundle-footnote {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  font-family: var(--mono);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SOLD OUT STATES */
.bundle-sold-out {
  text-align: center;
  padding: 24px;
  background: rgba(255, 68, 68, 0.1);
  border: 2px solid #ff4444;
  border-radius: 8px;
  margin-top: 24px;
}
.sold-out-badge {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ff4444;
  font-family: var(--mono);
  margin-bottom: 8px;
}
.bundle-sold-out p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.bundle-sold-out a {
  color: #ff4444;
  text-decoration: underline;
}
.terminal-sold-out {
  text-align: center;
  padding: 20px;
  background: rgba(255, 68, 68, 0.1);
  border: 2px solid #ff4444;
  border-radius: 8px;
  margin-top: 16px;
}
.terminal-sold-out .sold-out-badge {
  font-size: 20px;
}
.terminal-sold-out p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.terminal-sold-out a {
  color: #ff4444;
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: var(--bg);
  padding: 60px 20px;
}
.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--green);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 30px var(--green-dim);
}
.newsletter-card .window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #3a3a3f 0%, #2a2a30 100%);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
.newsletter-window-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
}
.newsletter-content {
  padding: 32px 24px;
  text-align: center;
}
.newsletter-content h2 {
  color: var(--text-bright);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.newsletter-content p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 20px;
}
.newsletter-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.newsletter-features span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  background: var(--green-dim);
  padding: 6px 12px;
}
.newsletter-cta {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
}
.newsletter-cta:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
}

/* SOLD OUT SUCCESS STYLING */
.sold-out-success {
  color: var(--green) !important;
  font-size: 13px !important;
  margin: 8px 0 12px !important;
}
.terminal-newsletter-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  background: var(--green);
  color: #0a0a0a !important;
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 10px 16px;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.terminal-newsletter-cta:hover {
  background: #00cc44;
  border-color: #00cc44;
}
.bundle-sold-out-hint {
  color: var(--green) !important;
  font-weight: 600;
}
.bundle-newsletter-cta {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  background: var(--green);
  color: #0a0a0a !important;
  text-decoration: none;
  border: 1px solid var(--green);
  padding: 10px 16px;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.bundle-newsletter-cta:hover {
  background: #00cc44;
  border-color: #00cc44;
}

/* URGENCY STYLING */
.spots-left-urgent {
  font-family: var(--mono);
  font-size: 14px;
  color: #ffbd2e;
  background: rgba(255, 189, 46, 0.15);
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid #ffbd2e;
  animation: pulse-urgent 2s ease-in-out infinite;
}
@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* HERO SOLD OUT STATES */
.hero-cta-newsletter {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.hero-cta-newsletter:hover {
  background: var(--green);
  color: var(--bg);
}
.hero-success-note {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  margin-top: 12px;
}
.trust-success {
  background: var(--green) !important;
  color: var(--bg) !important;
}
.trust-urgent,
.hero-trust a.trust-urgent {
  background: #ff9500 !important;
  border-color: #ff9500 !important;
  color: #0a0a0a !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.trust-urgent:hover,
.hero-trust a.trust-urgent:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #0a0a0a !important;
}

/* FINAL CTA NEWSLETTER */
.final-cta-newsletter {
  background: transparent;
  color: var(--green);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.3s ease;
}
.final-cta-newsletter:hover {
  background: var(--green);
  color: var(--bg);
}
