:root {
  --background: #0a0a0a;
  --foreground: #ffffff;
  --accent: #FF4D33;
  --accent-foreground: #ffffff;
  --muted: #888888;
  --muted-dark: #1a1a1a;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --font-display: 'Inter', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --max-width: 1100px;
  --max-width-narrow: 800px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
}

@keyframes pulse {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

@keyframes pulse-date {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

.pulse-date {
  animation: pulse-date 3s infinite ease-in-out;
}

.announcement {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 100;
  animation: pulse 2s infinite ease-in-out;
}

.section {
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
}

.section-dark {
  background: var(--background);
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 77, 51, 0.05) 0%, transparent 50%);
  color: var(--foreground);
}

.section-light {
  background: #ffffff;
  color: #000000;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

/* Typography Overhaul */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

.headline {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
}

.headline span {
  display: block;
  color: var(--accent);
}

.preheadline {
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  display: block;
}

.hook {
  font-size: 1.25rem;
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.4;
}

/* Authors & Meta */
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.author, .calendar-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.section-light .author, 
.section-light .calendar-block {
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.03);
  color: #000;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author .name, .calendar-block .name {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.author .role, .calendar-block .role {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.section-light .author .role,
.section-light .calendar-block .role {
    color: #666;
}

/* Body Copy */
.body-copy {
  font-size: 1.2rem;
  line-height: 1.5;
}

.body-copy p {
  margin-bottom: 1.5rem;
}

.body-copy h2 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 3rem;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
}

/* Modules Grid */
.modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 1.5rem 0 4rem;
}

.module {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module:hover {
  background: var(--glass-hover);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.module h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.module ul {
  padding: 0;
  list-style: none;
}

.module li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.module-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.module-accent h4, .module-accent li {
  color: #fff;
}

.module-accent:hover {
    background: #FF624D;
}

/* Testimonials */
.testimonial-section {
  background: #1a1616;
  color: var(--foreground);
}

.testimonial-heading {
  text-align: center;
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 3rem;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  flex: 0 0 100%;
  min-width: 100%;
  gap: 3rem;
  align-items: start;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-person {
  display: grid;
  gap: 1.25rem;
}

.testimonial-person img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.testimonial-name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.testimonial-quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-quote p {
  margin: 0 0 1.25rem;
}

.testimonial-quote p:last-child {
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.18);
}

/* Trusted By */
.trusted-us {
  text-align: center;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 1;
}

.logos-container img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-container img:hover {
  transform: scale(1.05);
}

/* Pricing Card */
.offer {
  background: #ffffff;
  color: #000000;
  border-radius: 2rem;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 60px 130px -30px rgba(0,0,0,0.25), 0 20px 50px -10px rgba(0,0,0,0.15);
}

.offer h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  margin: 2rem 0;
}

.price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.3;
  margin-left: 1rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(255, 77, 51, 0.4);
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
  margin-top: 3rem;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 5px;
}

/* Footer */
.site-footer {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .headline {
    font-size: 3.5rem;
  }
  
  .hero-meta {
    gap: 1rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .testimonial-person {
    justify-items: center;
    text-align: center;
  }
}
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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

/* Team workshop page */
.hero-section {
  padding-bottom: 0;
}

.workshop-format {
  border-color: var(--accent);
  padding: 1.15rem 2rem;
}

.format-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.format-icon svg {
  width: 26px;
  height: 26px;
}

.workshop-format .name {
  font-size: 1.05rem;
}

.workshop-format .role {
  font-size: 0.9rem;
}

.intro-block {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.intro-block .body-copy {
  text-align: center;
}

.center-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 2rem auto;
  list-style: none;
}

.center-list li::before {
  content: "→";
  margin-right: 0.65rem;
  color: var(--accent);
  font-weight: 900;
}

.section-divider {
  height: 1px;
  margin: 4rem 0;
  background: var(--border);
}

.muted-copy {
  color: var(--muted);
}

.adoption-callout {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(255, 77, 51, 0.6);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 51, 0.15), transparent 55%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px -45px rgba(255, 77, 51, 0.75);
}

.adoption-callout::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
}

.adoption-label {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.adoption-callout h2 {
  margin: 0 auto 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.adoption-callout h2 span {
  display: block;
  color: var(--accent);
}

.adoption-callout p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.curriculum-section {
  padding-top: 5rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
}

.section-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading .preheadline {
  margin-bottom: 1.25rem;
}

.module-time {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module-accent .module-time {
  color: #fff;
  opacity: 0.78;
}

.module h3 {
  font-size: 1.45rem;
  line-height: 1.05;
}

.curriculum-note {
  margin: -1rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.curriculum-note span {
  color: var(--accent);
  font-weight: 900;
}

.dark-heading h2 {
  color: #000;
}

.dark-heading .preheadline {
  color: var(--accent);
}

.dark-heading p {
  color: #555;
}

.system-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid #e2dedb;
  border-bottom: 1px solid #e2dedb;
  background: #f4f1ef;
}

.package-summary {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 2.5rem 2rem 2.25rem;
  border: 1px solid rgba(255, 77, 51, 0.3);
  border-radius: 1rem;
  background: #fff;
  color: #111;
  text-align: center;
  box-shadow: 0 28px 60px -34px rgba(58, 25, 20, 0.35);
}

.package-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent);
}

.package-label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-summary p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.package-summary strong {
  color: var(--accent);
}

.audience-section {
  padding-top: 7rem;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.role-pill {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 100px;
  color: #111;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.fit-card {
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: #111;
  color: #fff;
}

.fit-card-muted {
  background: #f3f3f3;
  color: #222;
}

.fit-card h3 {
  font-size: 1.35rem;
}

.fit-card ul {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 1.5rem;
  color: #bbb;
}

.fit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.fit-card-muted li {
  color: #666;
}

.fit-card-muted li::before {
  content: "×";
}

.trusted-section {
  padding: 9rem 1.5rem;
}

.logo-invert {
  filter: brightness(0) invert(1);
}

.logos-container .logo-large {
  height: 150px;
}

.single-testimonial {
  min-width: 0;
}

.closing-section {
  text-align: center;
}

.closing-kicker {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-section h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}

.signoff {
  margin: 3rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.signature {
  margin-top: -0.4rem;
  color: var(--accent);
  font-family: "Caveat", cursive;
  font-size: 2.75rem;
  transform: rotate(-2deg);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: inherit;
  text-underline-offset: 0.2rem;
}

@media (max-width: 980px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .adoption-callout {
    padding: 2.75rem 1.5rem;
  }

  .body-copy h2 {
    font-size: 2.35rem;
  }

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

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

  .single-testimonial {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 2.8rem;
  }

  .author,
  .calendar-block {
    width: 100%;
    justify-content: flex-start;
    border-radius: 1rem;
  }

  .module,
  .fit-card,
  .offer {
    padding: 2rem 1.25rem;
  }

  .testimonial-heading {
    font-size: 2.2rem;
  }
}
