/* =============================================
   1. VARIABLES / RESET
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-yellow: #F5C518;
  --color-dark: #111111;
  --color-mid: #1A1A1A;
  --color-border: #2A2A2A;
  --color-text: #E8E8E8;
  --color-muted: #BBBBBB;
  --color-red: #E74C3C;
  --color-green: #2ECC71;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;

  --radius: 6px;
  --max-width: 680px;
}

/* =============================================
   2. BASE
============================================= */
body {
  background: var(--color-dark);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-yellow);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =============================================
   3. LAYOUT
============================================= */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}

section {
  border-bottom: 1px solid var(--color-border);
}

/* =============================================
   4. COMPONENTS
============================================= */

/* Topbar */
.topbar {
  background: var(--color-yellow);
  color: var(--color-dark);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05rem;
}

.site-logo span {
  color: var(--color-yellow);
}

/* Headings */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.heading-xl span,
.heading-lg span {
  color: var(--color-yellow);
}

.kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 1.25rem;
  display: block;
}

.subhead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.subhead-accent {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-yellow);
  margin-bottom: var(--space-md);
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.btn-cta:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn-cta-full {
  display: block;
  width: 100%;
  text-align: center;
}

.guarantee-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.badge {
  background: var(--color-mid);
  border: 1px solid var(--color-border);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--color-text);
}

.badge-green {
  border-color: var(--color-green);
  color: var(--color-green);
}

/* Fail cards */
.fail-grid {
  display: grid;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.fail-item {
  background: var(--color-mid);
  border-left: 3px solid var(--color-red);
  padding: 1rem 1.25rem;
}

.fail-item strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.fail-item span {
  color: var(--color-muted);
  font-size: 0.85rem;
}

/* Founder block */
.founder-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-mid);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.founder-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.375rem;
}

.founder-text p {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Offer table */
.offer-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-sm);
}

.offer-table tr {
  border-bottom: 1px solid var(--color-border);
}

.offer-table td {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  vertical-align: top;
  color: var(--color-muted);
}

.offer-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.offer-table .row-total td {
  font-weight: 700;
  color: var(--color-muted);
  text-decoration: line-through;
  border-top: 2px solid var(--color-border);
  border-bottom: none;
  padding-top: 1rem;
}

.offer-table .row-price td {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: none;
}

.offer-table .row-price td:first-child { color: #fff; }

.offer-table .row-price td:last-child {
  color: var(--color-yellow);
  font-size: 1.5rem;
}

.ownership-note {
  background: var(--color-mid);
  border-left: 3px solid var(--color-yellow);
  padding: 0.875rem 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.ownership-note strong { color: #fff; }

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
}

.accordion-btn:hover { color: #fff; }

.accordion-icon {
  color: var(--color-yellow);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.accordion-body {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.accordion-item.is-open .accordion-body { display: block; }
.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

/* Fit grid */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.fit-col {
  background: var(--color-mid);
  padding: 1.25rem;
}

.fit-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.fit-yes h4 { color: var(--color-green); }
.fit-no h4 { color: var(--color-red); }

.fit-col ul { list-style: none; }

.fit-col li {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.625rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.fit-yes li::before {
  content: "✓";
  color: var(--color-green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.fit-no li::before {
  content: "✗";
  color: var(--color-red);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Guarantee section */
.guarantee-center { text-align: center; }

.shield-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.guarantee-text {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.form-wrapper {
  background: var(--color-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
}

.form-group {
  margin-bottom: 0.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.form-field {
  width: 100%;
  background: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  color: var(--color-text);
  font-family: var(--font-body);
}

.form-field:focus {
  outline: none;
  border-color: var(--color-yellow);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-sm);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.site-footer-inner a {
  color: var(--color-muted);
  text-decoration: none;
  margin: 0 0.5rem;
}

.site-footer-inner a:hover { color: var(--color-yellow); }

.footer-sep { margin: 0 0.25rem; }

/* Legal pages */
.legal-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-sm);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 3rem;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-yellow);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05rem;
}

.content-section p {
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.content-section ul { list-style: none; }

.content-section ul li {
  color: var(--color-muted);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.375rem;
}

.content-section ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
}

.detail-block {
  background: var(--color-mid);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-yellow);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1rem;
}

.detail-block p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* =============================================
   5. UTILITIES
============================================= */
.text-muted { color: var(--color-muted); }
.text-white { color: #fff; }
.text-strong { color: #fff; font-weight: 600; }
.mt-sm { margin-top: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }

/* =============================================
   6. MEDIA QUERIES
============================================= */
@media (max-width: 480px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}