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

body {
  background: #000;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  line-height: 1.8;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 30px;
}

/* Navigation */
nav {
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
  margin-bottom: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.5px;
}

nav a:hover {
  text-decoration: underline;
}

nav a.active {
  text-decoration: underline;
}

/* Header */
.logo {
  font-size: 16px;
  margin-bottom: 25px;
  color: #666;
  letter-spacing: 1px;
}

h1 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

h2 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 25px;
  margin-top: 50px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 12px;
  color: #888;
}

/* Content */
p {
  margin-bottom: 20px;
  color: #ccc;
}

.intro {
  font-size: 22px;
  color: #fff;
  margin-bottom: 40px;
}

.prompt {
  color: #0f0;
}

.cursor {
  animation: blink 1s infinite;
}

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

/* Lists */
ul, ol {
  margin-left: 25px;
  margin-bottom: 25px;
}

li {
  margin-bottom: 12px;
  color: #ccc;
}

/* Day sections */
.day {
  margin-bottom: 50px;
}

/* Module Grid - 2 columns */
.modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 20px;
}

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

/* Cards / Modules */
.card {
  border: 1px solid #333;
  padding: 25px;
}

.card-header {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.card p {
  margin-bottom: 12px;
  font-size: 16px;
}

.card .behavior {
  color: #0f0;
  font-size: 14px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #222;
}

.card .behavior span {
  color: #666;
}

/* Testimonials */
.testimonial {
  border-left: 2px solid #444;
  padding-left: 25px;
  margin-bottom: 40px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-author {
  color: #666;
  font-size: 16px;
}

/* Trainers */
.trainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

.trainer {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #333;
}

.trainer-portrait {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.trainer-portrait svg {
  width: 100%;
  height: 100%;
}

.trainer-name {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.trainer-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.trainer-link {
  font-size: 14px;
  color: #0f0;
  text-decoration: none;
}

.trainer-link:hover {
  text-decoration: underline;
  color: #0f0;
}

/* Tools */
.tool {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #222;
}

.tool:last-child {
  border-bottom: none;
}

.tool-name {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.tool-desc {
  color: #888;
  font-size: 16px;
}

/* Footer */
footer {
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid #333;
  color: #444;
  font-size: 14px;
}

/* Links */
a {
  color: #fff;
}

a:hover {
  color: #ccc;
}

/* Code blocks */
code {
  background: #111;
  padding: 3px 8px;
  font-size: 16px;
}

pre {
  background: #111;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 25px;
}

/* CTA */
.cta {
  display: inline-block;
  border: 1px solid #fff;
  padding: 15px 30px;
  margin-top: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.cta:hover {
  background: #fff;
  color: #000;
}

/* Format section */
.format-list {
  margin-top: 20px;
}

.format-list li {
  font-size: 16px;
}
