@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@800&display=swap');

/* ─── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --bg:          #1C1F26;
  --bg-alt:      #161920;
  --card:        #222630;
  --card-border: #2C3040;
  --lime:        #E0F500;
  --white:       #F4F4F2;
  --body:        #D5D5D5;
  --muted:       #6B7280;
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

/* ─── Typography ──────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

h1 {
  font-size: clamp(3.5rem, 14vw, 5.625rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  margin-bottom: 20px;
}

.accent { color: var(--lime); }

.subhead {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 36px;
}

p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── Section label ───────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 72px 0 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--card-border);
}

/* ─── Form ────────────────────────────────────────────────────────────────── */
.form-wrap {
  width: 100%;
  margin-bottom: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row input[type="email"],
.form-row input[type="text"] {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
}

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

.form-row input[type="email"]:focus,
.form-row input[type="text"]:focus {
  border-color: var(--lime);
}

.form-row input[type="email"].error,
.form-row input[type="text"].error {
  border-color: #ff6b6b;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { opacity: 0.78; }

.trust-line {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* ─── Who it's for ────────────────────────────────────────────────────────── */
#who {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--card-border);
}

#who p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
}

/* ─── What you get ────────────────────────────────────────────────────────── */
#what { background: var(--bg); }

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.what-list li { display: flex; gap: 20px; align-items: flex-start; }

.what-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--lime);
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 28px;
}

.what-content strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.what-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
}

/* ─── Sample issue ────────────────────────────────────────────────────────── */
#sample {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.issue-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 28px 24px;
}

.issue-tag {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
  display: block;
}

.issue-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 14px;
}

.issue-excerpt {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
  margin-top: 4px;
}

/* ─── Testimonial ─────────────────────────────────────────────────────────── */
#testimonial { background: var(--bg); }

blockquote {
  border: none;
  padding: 0;
}

.quote-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  color: var(--lime);
  line-height: 1.55;
  margin-bottom: 20px;
}

.quote-attr {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

/* ─── Second form ─────────────────────────────────────────────────────────── */
#signup-bottom {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
}

#signup-bottom h2 { margin-bottom: 28px; }

/* ─── About ───────────────────────────────────────────────────────────────── */
#about {
  background: var(--bg);
  border-top: 1px solid var(--card-border);
}

#about p {
  margin-bottom: 20px;
}

#about p:last-of-type { margin-bottom: 0; }

.site-link {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 20px;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 40px 0 32px;
}

.footer-signoff {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-meta a, .footer-meta span {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover { color: var(--white); }

.footer-year {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Thank-you / Privacy pages ───────────────────────────────────────────── */
.page-solo {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.page-solo h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 20px;
}

.page-solo p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 16px;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-section { margin-bottom: 40px; }

.privacy-section h2 {
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .form-row {
    flex-direction: row;
  }

  .form-row input[type="email"],
  .form-row input[type="text"] {
    flex: 1;
  }

  .btn-primary {
    width: auto;
    white-space: nowrap;
  }
}
