/* AI Bildrs Early Bird Workshop LP
   Tokens from ai-bildrs-style-tokens.md */

:root {
  --teal: #10A28E;
  --teal-dark: #0C7E6F;
  --teal-light: #D6EFEA;
  --black: #111111;
  --graphite: #5B5C61;
  --white: #FFFFFF;
  --canvas-soft: #F6F5F2;
  --border: #E4E3DF;
  --border-strong: #D5D4CF;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --content: 1040px;
  --space: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

.container {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Wordmark */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--black);
}

.wordmark .ai {
  color: var(--teal);
}

.wordmark:hover {
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-premium {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-premium:hover {
  background: #2a2a2a;
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.microcopy {
  font-size: 0.875rem;
  color: var(--graphite);
  margin-top: 12px;
}

.trust-line {
  font-size: 0.875rem;
  color: var(--graphite);
  margin-top: 16px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal-dark);
}

.badge-live {
  background: var(--black);
  color: var(--white);
}

.badge-signup {
  background: var(--teal);
  color: var(--white);
}

/* Sticky bar */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
}

.sticky-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.sticky-countdowns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  flex: 1;
  min-width: 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.countdown-item__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
}

.countdown-item__value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .sticky-bar__inner {
    gap: 8px;
  }

  .sticky-countdowns {
    width: 100%;
    justify-content: space-between;
  }

  .sticky-actions {
    width: 100%;
    justify-content: space-between;
  }

  .sticky-actions .btn {
    flex: 1;
  }
}

/* Site header (under sticky) */
.site-header {
  padding: 20px 0;
  background: var(--white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hero */
.hero {
  padding: 48px 0 64px;
  background: var(--canvas-soft);
}

.hero__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 48px;
  }
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__subhead {
  font-size: 1.0625rem;
  color: var(--graphite);
  margin-bottom: 24px;
  max-width: 36em;
}

.hero__chip {
  margin-bottom: 20px;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.checkout-card h2,
.checkout-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.checkout-card .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.checkout-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

.form-helper {
  font-size: 0.8125rem;
  color: var(--graphite);
  margin-top: 6px;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--canvas-soft);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: #c8c8c8;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section__intro {
  font-size: 1.0625rem;
  color: var(--graphite);
  margin-bottom: 36px;
  max-width: 40em;
}

.section--dark .section__intro {
  color: #a8a8a8;
}

/* Demo bullets */
.demo-list {
  display: grid;
  gap: 20px;
}

.demo-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.demo-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 10px;
}

.demo-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.demo-item p {
  color: var(--graphite);
  font-size: 0.9375rem;
}

/* Shift */
.shift-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 24px;
  max-width: 28em;
}

.shift-pair {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .shift-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.shift-card {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.shift-card--builders {
  background: var(--teal-light);
  border-color: transparent;
}

.shift-card--watchers {
  background: var(--white);
}

.shift-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.shift-card p {
  color: var(--graphite);
  font-size: 0.9375rem;
}

.shift-body {
  color: var(--graphite);
  max-width: 40em;
}

.shift-body p + p {
  margin-top: 16px;
}

.shift-close {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--black) !important;
  margin-top: 24px !important;
}

/* Who for */
.who-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

.who-card--for {
  background: var(--white);
  border-top: 3px solid var(--teal);
}

.who-card--not {
  background: var(--canvas-soft);
  border-top: 3px solid var(--border-strong);
}

.who-card h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.who-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--graphite);
  font-size: 0.9375rem;
}

.who-card--for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.who-card--not li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--graphite);
}

.industry-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--graphite);
  max-width: 40em;
}

/* Live bonus */
.bonus-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

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

.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.bonus-card h3 {
  font-size: 1.125rem;
}

.bonus-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-dark);
}

.bonus-card p {
  font-size: 0.9375rem;
  color: var(--graphite);
  flex: 1;
}

.gift-total {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}

.gift-total__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
}

.gift-total__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal-dark);
}

.gift-total__note {
  font-size: 0.875rem;
  color: var(--graphite);
  width: 100%;
}

.clarity-box {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--graphite);
  background: var(--canvas-soft);
}

.clarity-box strong {
  color: var(--black);
}

/* Founder */
.founder-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 800px) {
  .founder-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.founder-story p {
  color: var(--graphite);
  margin-bottom: 16px;
  max-width: 40em;
}

.founder-story p:last-child {
  margin-bottom: 0;
}

.quote-card {
  background: var(--canvas-soft);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--teal);
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 16px;
}

.quote-card cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--graphite);
}

.proof-strip {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}

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

@media (min-width: 900px) {
  .proof-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}

.proof-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.proof-item__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.proof-item__label {
  font-size: 0.75rem;
  color: var(--graphite);
}

/* Mid / bottom checkout panels */
.checkout-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.checkout-panel h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 12px;
}

.checkout-panel .body {
  color: var(--graphite);
  margin-bottom: 24px;
}

.checkout-panel .trust-whisper {
  font-size: 0.8125rem;
  color: var(--graphite);
  margin-top: 16px;
}

.checkout-panel--dark {
  background: var(--black);
  border-color: transparent;
  color: var(--white);
}

.checkout-panel--dark h2 {
  color: var(--white);
}

.checkout-panel--dark .body,
.checkout-panel--dark .microcopy,
.checkout-panel--dark .trust-whisper {
  color: #b0b0b0;
}

.checkout-panel--dark .eyebrow {
  color: var(--teal);
}

.secondary-link {
  display: block;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--graphite);
}

.checkout-panel--dark .secondary-link {
  color: #a8a8a8;
}

.checkout-panel--dark .secondary-link a {
  color: var(--teal);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 8px 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.faq-item .answer {
  padding: 0 0 18px;
  color: var(--graphite);
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__links {
  display: flex;
  gap: 20px;
  font-size: 0.875rem;
}

.site-footer__links a {
  color: var(--graphite);
  font-weight: 500;
}

.site-footer__links a:hover {
  color: var(--teal-dark);
}

.site-footer__note {
  font-size: 0.75rem;
  color: var(--graphite);
  width: 100%;
  margin-top: 8px;
}

/* Thank-you page */
.ty-hero {
  padding: 64px 0 48px;
  background: var(--canvas-soft);
  text-align: center;
}

.ty-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.ty-hero .subhead {
  color: var(--graphite);
  font-size: 1.125rem;
  max-width: 28em;
  margin-inline: auto;
}

.steps {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--teal);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--graphite);
  font-size: 0.9375rem;
}

.step-card code,
.step-card .keyword {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.875rem;
}

.invite-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.invite-row input {
  flex: 1;
  min-width: 180px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--canvas-soft);
  color: var(--graphite);
}

.phone-rescue {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  max-width: 520px;
  margin-inline: auto;
}

.phone-rescue h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.before-day {
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--graphite);
  max-width: 40em;
  margin-inline: auto;
  text-align: left;
}

.honesty-card {
  margin-top: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--canvas-soft);
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}

.honesty-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.honesty-card p {
  color: var(--graphite);
  font-size: 0.9375rem;
}

.ty-close {
  margin-top: 40px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}
