@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,400&display=swap');

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

:root {
  --bg: #000;
  --text: #fff;
  --accent: #FF5500;
  --muted: #999;
  --card-bg: #111;
  --card-border: #222;
  --input-border: #333;
  --font: 'Satoshi', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; }
.btn-outline {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { font-size: 17px; padding: 18px 36px; }

/* ── PILL ── */
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 12px;
  margin-bottom: 20px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
#hero {
  padding: 140px 0 80px;
  text-align: center;
}
#hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}
#hero .subline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.microcopy {
  font-size: 13px;
  color: var(--muted);
}
.secondary-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.secondary-link:hover { color: #fff; }
.secondary-link span { color: var(--accent); }

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
}

/* ── HOW IT WORKS ── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  max-width: 260px;
}
.step-number {
  width: 52px;
  height: 52px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.step p {
  font-size: 15px;
  color: var(--muted);
}
.step-arrow {
  font-size: 24px;
  color: var(--card-border);
  padding: 0 8px;
  flex-shrink: 0;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 28px;
}
.feature-card .icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h4 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); }

/* ── CHECK TOOL ── */
#check {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.check-container {
  max-width: 640px;
  margin: 0 auto;
}
.check-screen { display: none; }
.check-screen.active { display: block; }

.check-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
}
.progress-dot {
  height: 3px;
  flex: 1;
  background: var(--card-border);
  transition: background 0.3s;
}
.progress-dot.done { background: var(--accent); }

.check-question {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.check-step-label {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.check-hint-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.check-hints {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.check-hints p {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  line-height: 1;
  cursor: pointer;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 6px 12px;
  margin: 0 6px 8px 0;
  transition: border-color 0.15s, color 0.15s;
}
.check-hints p::after {
  content: ' ↵';
  color: var(--accent);
  font-size: 11px;
}
.check-hints p:hover {
  border-color: var(--accent);
  color: #fff;
}
textarea.check-input {
  width: 100%;
  min-height: 120px;
  background: #000;
  border: 1px solid var(--input-border);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  padding: 16px;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}
textarea.check-input:focus { border-color: var(--accent); }
.check-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.check-calendly {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.check-calendly:hover { color: #fff; }
.check-calendly span { color: var(--accent); }

/* Loading Screen */
.loading-screen {
  text-align: center;
  padding: 64px 0;
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--card-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-screen h3 {
  font-size: 22px;
  color: var(--muted);
}

/* Score Screen */
.score-display {
  text-align: center;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 40px;
}
.score-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.score-circle {
  width: 120px;
  height: 120px;
  border: 4px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  flex-direction: column;
}
.score-number {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.score-denom {
  font-size: 14px;
  color: var(--muted);
}
.score-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

/* Email Gate */
.gate-headline {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
input.gate-input {
  width: 100%;
  background: #000;
  border: 1px solid var(--input-border);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
}
input.gate-input:focus { border-color: var(--accent); }
input.gate-input::placeholder { color: var(--muted); }

/* Diagnosis Screen */
.diagnosis-score-line {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}
.diagnosis-text {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 40px;
  white-space: pre-wrap;
}
.diagnosis-cta {
  border-top: 1px solid var(--card-border);
  padding-top: 32px;
  text-align: center;
}
.diagnosis-cta p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── PROOF ── */
.proof-text {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 32px;
}
.callout-box {
  border: 1px solid var(--accent);
  padding: 24px 32px;
  margin-bottom: 48px;
  max-width: 600px;
}
.callout-box p {
  font-size: 18px;
  font-style: italic;
  color: #fff;
}
.result-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 32px;
  max-width: 520px;
  margin-bottom: 48px;
}
.result-card h4 {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.result-table { width: 100%; border-collapse: collapse; }
.result-table td {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--card-border);
}
.result-table tr:last-child td { border-bottom: none; }
.result-table td:first-child { color: var(--muted); }
.result-table td:last-child { font-weight: 700; text-align: right; }
/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  padding-top: 48px;
}
.featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px;
}
.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pricing-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

/* ── COMPARE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  font-size: 14px;
}
.compare-table th {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table th.revklar-col { color: var(--accent); }
.compare-table td:first-child { color: var(--muted); width: 160px; }
.compare-table td.revklar-val { color: #fff; font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }

/* ── DREAM STATE ── */
#dream { background: var(--card-bg); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
#dream h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 32px; }
#dream p {
  font-size: 17px;
  line-height: 1.9;
  color: #ccc;
  max-width: 680px;
  margin-bottom: 20px;
}
#dream .dream-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 28px;
}
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  color: #ddd;
  margin-bottom: 20px;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ── FOUNDER ── */
.founder-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
}
.founder-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}
.founder-text .role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.founder-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 16px;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .faq-icon {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── FOOTER CTA ── */
#footer-cta {
  text-align: center;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
#footer-cta h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  max-width: 600px;
  margin: 0 auto 32px;
  letter-spacing: -0.02em;
}

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--card-border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-linkedin {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
  transition: border-color 0.15s;
}
.footer-linkedin:hover { border-color: var(--accent); }
.footer-linkedin svg { width: 16px; height: 16px; fill: var(--muted); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-content h1 {
  font-size: 36px;
  margin-bottom: 48px;
}
.legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-content h3 {
  font-size: 16px;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #ddd;
}
.legal-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { position: sticky; top: 0; }
  #hero { padding: 80px 0 60px; }

  .trust-bar-inner { gap: 20px; }
  .trust-item { font-size: 11px; }

  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }

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

  .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { max-width: 240px; }

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

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }

  /* Mobile check: compact, buttons directly below textarea */
  #check { padding: 0; }
  .check-container { max-width: 100%; padding: 0; }
  .check-screen.active.mobile-fullscreen {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
  }
  .check-screen.active.mobile-fullscreen .check-actions {
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
  }
  .check-screen.active.mobile-fullscreen .check-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
