/* Shared styles — clean and functional, no brand identity yet (placeholder branding by design). */

:root {
  --ink: #16181d;
  --ink-soft: #4a4f59;
  --line: #e3e5ea;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --accent: #1f5fff;
  --accent-ink: #ffffff;
  --good: #0a7a3d;
  --radius: 10px;
  --maxw: 780px;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.wrap--wide { max-width: 980px; }

header.site-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

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

.placeholder-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
}

main { padding: 48px 0 80px; }

h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
}

h2 {
  font-size: clamp(22px, 3.4vw, 28px);
  margin: 0 0 14px;
  font-weight: 700;
}

h3 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }

p { margin: 0 0 16px; color: var(--ink-soft); }

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 640px;
}

section { padding: 44px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: none; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover { opacity: 0.92; }

.btn--block { display: block; width: 100%; }

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-row { margin: 22px 0; }

.small-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* Forms */
.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.field .hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
}

textarea { min-height: 100px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

.required-mark { color: #c02626; }

/* Proof list */
.proof-list { list-style: none; padding: 0; margin: 0 0 12px; }
.proof-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink);
  font-weight: 600;
}
.proof-list li:last-child { border-bottom: none; }
.proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 800;
}
.proof-disclaimer { font-size: 13px; font-style: italic; }

/* Offer stack */
.offer-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
}
.offer-card--primary { border-color: var(--accent); }
.offer-card .price {
  font-size: 30px;
  font-weight: 800;
  margin: 4px 0 14px;
}
.offer-card .price .was {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: line-through;
  margin-left: 8px;
}
.offer-card ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.offer-card li { margin-bottom: 8px; }

/* VSL placeholder */
.vsl-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, #1b1d24, #2b2f3a);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 24px;
  margin-bottom: 8px;
}
.vsl-placeholder .play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 26px;
}
.vsl-placeholder .vsl-label {
  font-weight: 700;
  font-size: 15px;
}
.vsl-placeholder .vsl-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* FAQ */
.faq-item { margin-bottom: 20px; }
.faq-item h3 { margin-bottom: 6px; }

/* Guarantee box */
.guarantee-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 26px;
}

/* Confirmation / status states */
.status-box {
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}
.status-box--success {
  background: #eefaf1;
  border: 1.5px solid #b6e6c4;
}
.status-box--error {
  background: #fdeeee;
  border: 1.5px solid #f3bcbc;
}
.status-box h3 { margin-bottom: 8px; }
.status-box p:last-child { margin-bottom: 0; }

.hidden { display: none !important; }

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.upsell-box {
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius);
  padding: 26px;
  margin: 28px 0;
  background: #f3f6ff;
}
