:root {
  --background: oklch(14% 0.02 250);
  --foreground: oklch(92% 0.01 80);
  --amber: oklch(82% 0.17 75);
  --amber-dim: oklch(72% 0.15 75);
  --secondary: oklch(24% 0.03 250);
  --card: oklch(18% 0.03 250);
  --border: oklch(30% 0.03 250);
  --muted-foreground: oklch(60% 0.02 250);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(74, 111, 165, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 111, 165, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Nav */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: oklch(14% 0.02 250 / 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand svg {
  color: var(--amber);
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-text-link {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

.nav-text-link:hover {
  color: var(--foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.btn-lg {
  padding: 0.9rem 2rem;
}

.btn-sm {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
}

.btn-amber {
  background-color: var(--amber);
  color: var(--background);
  box-shadow: 0 0 24px oklch(82% 0.17 75 / 0.25);
}

.btn-amber:hover {
  background-color: var(--amber-dim);
}

.btn-outline-amber {
  background-color: transparent;
  color: var(--amber);
  border: 1px solid oklch(82% 0.17 75 / 0.4);
}

.btn-outline-amber:hover {
  background-color: oklch(82% 0.17 75 / 0.1);
}

/* Sections */
section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.eyebrow {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-lede {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
section.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(14% 0.02 250 / 0.7) 0%,
    oklch(14% 0.02 250 / 0.85) 50%,
    var(--background) 100%
  );
}

.hero-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

h1.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

h1.hero-title .amber {
  color: var(--amber);
}

.hero-lede {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--amber);
}

.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.hero-note {
  color: var(--muted-foreground);
  font-size: 0.85rem;
  margin-top: 2rem;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

/* Card */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.75rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 32px oklch(82% 0.17 75 / 0.15);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background-color: var(--amber);
  color: var(--background);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.pricing-tier-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.price-now {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.price-was {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.price-off {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: var(--amber);
  border: 1px solid oklch(82% 0.17 75 / 0.4);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.feature-list li.included {
  color: var(--foreground);
}

.feature-list li.excluded {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.feature-list .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.feature-list li.included .icon { color: var(--amber); }
.feature-list li.excluded .icon { color: var(--muted-foreground); }

/* Testimonials */
.testimonial p.quote {
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.testimonial .name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial .role {
  color: var(--muted-foreground);
  font-size: 0.8rem;
}

.disclaimer {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 2.5rem;
  opacity: 0.6;
}

/* Hack cards */
.hack-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.hack-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hack-badge.free {
  background-color: oklch(82% 0.17 75 / 0.15);
  color: var(--amber);
}

.hack-badge.course {
  background-color: var(--secondary);
  color: var(--muted-foreground);
}

.more-hacks-note {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  text-align: center;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Lead capture */
section.lead-capture {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

.lead-form input[type="email"] {
  flex: 1 1 240px;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--foreground);
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
}

.lead-form input[type="email"]::placeholder {
  color: var(--muted-foreground);
}

.fine-print {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.03em;
}

.form-success {
  display: none;
  color: var(--amber);
  font-size: 0.9rem;
  margin: 1rem 0;
}

/* Quote */
section.quote {
  text-align: center;
}

section.quote h2 {
  font-size: 1.75rem;
  max-width: 40rem;
  margin: 0 auto 1rem;
}

section.quote p {
  color: var(--muted-foreground);
  max-width: 30rem;
  margin: 0 auto;
}

/* Checklist */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .checklist { grid-template-columns: repeat(2, 1fr); }
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.checklist .icon {
  color: var(--amber);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background-color: oklch(24% 0.03 250 / 0.3);
}

.faq-question svg {
  color: var(--amber);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 20rem;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Final CTA */
section.final-cta {
  text-align: center;
}

section.final-cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

section.final-cta h2 {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

section.final-cta p {
  color: var(--muted-foreground);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

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

footer.site-footer .brand {
  justify-content: center;
  margin-bottom: 0.75rem;
}

footer.site-footer .tagline {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

.copyright {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Checkout / coming soon page */
.coming-soon-badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid oklch(82% 0.17 75 / 0.4);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.checkout-wrap {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.checkout-wrap .checklist {
  text-align: left;
  margin: 2.5rem 0;
}

.checkout-divider {
  border-top: 1px solid var(--border);
  margin: 3rem 0;
  padding-top: 3rem;
}

/* Legal pages */
main.legal .container {
  max-width: 720px;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

main.legal h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

main.legal .updated {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

main.legal h2 {
  font-size: 1.15rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

main.legal p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

main.legal .em-dash-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
}

main.legal .em-dash-list li {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

main.legal a {
  color: var(--amber);
}

@media (max-width: 640px) {
  h1.hero-title { font-size: 2.25rem; }
  h2 { font-size: 1.625rem; }
}
