/* ============================================
   REKLAIM — Digital Storefront
   Dark, minimal, mobile-first
   ============================================ */

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

/* Variables */
:root {
  --bg: #0A0A0A;
  --bg-dark: #060606;
  --bg-card: #111111;
  --bg-card-hover: #1A1A1A;
  --text: #FFFFFF;
  --text-muted: #888888;
  --accent: #E05A00;
  --accent-hover: #FF6A10;
  --border: #1E1E1E;
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1100px;
  --max-width-narrow: 600px;
}

/* Base */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

.header__logo {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.header__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.header__cta:hover { background: var(--accent-hover); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1.125rem 3rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--bg-dark);
}

.section__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid — What's Inside */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: #2a2a2a;
}

.card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Checklist — Who It's For */
.checklist {
  list-style: none;
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.checklist__item {
  padding: 0.875rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--border);
}

.checklist__item:last-child {
  border-bottom: none;
}

.checklist__item::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cta-block {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial__author {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

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

.faq__question {
  padding: 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form — Lead Magnet */
.form {
  margin-top: 1.5rem;
}

.form__honeypot { display: none; }

.form__row {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.form__input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}

.form__input::placeholder {
  color: #777;
}

.form__input:focus {
  border-color: var(--accent);
  outline: none;
}

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

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 0.75rem;
  color: #777;
}

/* Legal Pages */
.legal {
  padding: 4rem 0;
  max-width: 700px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal .legal__updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal p,
.legal li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal a {
  color: var(--accent);
  text-decoration: none;
}
.legal a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
  .header { padding: 0.875rem 1rem; }
  .header__cta { padding: 0.4rem 0.875rem; font-size: 0.75rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .btn--lg { padding: 1rem 2rem; font-size: 1rem; width: 100%; }
  .form__row { flex-direction: column; }
  .form__row .btn { width: 100%; }
}
