:root {
  --bg-dark: #0a0a0a;
  --bg-navy: #0f1729;
  --bg-card: #161e31;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --accent-coral: #ff6b6b;
  --accent-orange: #ff8c42;
  --accent-blue: #4fc3f7;
  --accent-purple: #7c4dff;
  --accent-green: #26de81;
  --accent-teal: #2bd6cd;
  --gradient-coral: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
  --gradient-blue: linear-gradient(135deg, #4fc3f7 0%, #7c4dff 100%);
  --gradient-green: linear-gradient(135deg, #26de81 0%, #2bd6cd 100%);
  --gradient-dark: linear-gradient(180deg, #0f1729 0%, #0a0a0a 100%);
}

@page {
  size: letter;
  margin: 0.5in;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 17px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
header {
  background: radial-gradient(circle at top center, #1e293b 0%, #0a0a0a 100%);
  padding: 0.5rem 0 0.5rem;
  text-align: center;
}

.logo-container {
  margin-bottom: 0.25rem;
  padding-top: 0;
}

.logo-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  display: block;
  margin: 0 auto;
}

h1.main-title {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  font-weight: 800;
}

p.subtitle {
  font-size: 1.6rem;
  color: #cbd5e1;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 0.5rem;
  line-height: 1.5;
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.stat-card {
  background: linear-gradient(135deg, rgba(22, 30, 49, 0.9), rgba(15, 23, 41, 0.95));
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.stat-card.coral::before {
  background: var(--gradient-coral);
}
.stat-card.blue::before {
  background: var(--gradient-blue);
}
.stat-card.green::before {
  background: var(--gradient-green);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.coral .stat-number {
  color: var(--accent-coral);
}
.blue .stat-number {
  color: var(--accent-blue);
}
.green .stat-number {
  color: var(--accent-green);
}

.stat-label {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* OPPORTUNITY */
.opportunity-section {
  padding: 2rem 0 4rem;
  text-align: center;
}

.opportunity-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 2rem;
  position: relative;
}

.opportunity-box::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* SEQUENCES */
.sequence-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.sequence-bg-number {
  position: absolute;
  top: 0;
  right: 20%;
  font-size: 15rem;
  font-weight: 700;
  opacity: 0.03;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1;
  pointer-events: none;
}

.sequence-header {
  margin-bottom: 4rem;
  border-left: 6px solid;
  padding-left: 2rem;
}

.sequence-01 .sequence-header {
  border-color: var(--accent-coral);
}
.sequence-02 .sequence-header {
  border-color: var(--accent-blue);
}
.sequence-03 .sequence-header {
  border-color: var(--accent-green);
}

.sequence-title {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sequence-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sequence-01 .sequence-subtitle {
  color: var(--accent-coral);
}
.sequence-02 .sequence-subtitle {
  color: var(--accent-blue);
}
.sequence-03 .sequence-subtitle {
  color: var(--accent-green);
}

/* TIMELINE */
.timeline-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border: 2px solid;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-white);
}

.sequence-01 .timeline-dot {
  border-color: var(--accent-coral);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}
.sequence-02 .timeline-dot {
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}
.sequence-03 .timeline-dot {
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(38, 222, 129, 0.3);
}

.timeline-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
}

/* EMAIL CARDS */
.email-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.email-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.email-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.email-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.sequence-01 .email-badge {
  background: rgba(255, 107, 107, 0.15);
  color: var(--accent-coral);
}
.sequence-02 .email-badge {
  background: rgba(79, 195, 247, 0.15);
  color: var(--accent-blue);
}
.sequence-03 .email-badge {
  background: rgba(38, 222, 129, 0.15);
  color: var(--accent-green);
}

.email-subject {
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
  line-height: 1.5;
}

.email-content-list {
  list-style: none;
}

.email-content-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.email-content-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-white);
}

/* ROADMAP */
.roadmap-section {
  background: var(--bg-navy);
  padding: 4rem 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid;
}

.week-1 {
  border-color: var(--accent-coral);
}
.week-2 {
  border-color: var(--accent-orange);
}
.week-3 {
  border-color: var(--accent-blue);
}
.week-4 {
  border-color: var(--accent-green);
}

.week-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  display: block;
}

.week-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.checklist li {
  list-style: none;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

.checklist li::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
}

/* QUICK WINS */
.quick-wins-section {
  background: linear-gradient(135deg, #2a1b3d 0%, #1a1a2e 100%);
  padding: 4rem 0;
  text-align: center;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.win-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.win-number {
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-blue);
  color: white;
  font-weight: 700;
  padding: 1.25rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-pill-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.result-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: var(--accent-teal);
}

@media (max-width: 768px) {
  .hero-stats,
  .email-grid,
  .roadmap-grid,
  .wins-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container {
    flex-direction: column;
    gap: 1rem;
  }
  .timeline-container::before {
    display: none;
  }
  .timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .timeline-dot {
    margin: 0;
  }
  h1.main-title {
    font-size: 2.5rem;
  }
}