/* DM Copilot / buyercreator.com
   One stylesheet for the landing page and the sales page. */

:root {
  /* DM Copilot brand, set 22 September 2026 */
  --bg: #0A0C0B;
  --surface: #121513;
  --surface-2: #191D1B;
  --line: #252B27;
  --line-soft: #1C211E;
  --text: #F2F5F3;
  --text-dim: #A1ABA5;
  --text-faint: #7B867F;
  --accent: #4CC38A;
  --accent-soft: rgba(76, 195, 138, 0.12);
  --on-accent: #05140C;
  --good: #4CC38A;
  --good-soft: rgba(76, 195, 138, 0.12);
  --bad: #E06A5A;
  --radius: 14px;
  --radius-lg: 22px;
  --wide: 1120px;
  --prose: 680px;
  --gutter: 16px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- layout ---------- */

.wrap {
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.prose { max-width: var(--prose); margin-left: auto; margin-right: auto; }

section { padding: 64px 0; }
section.tight { padding: 44px 0; }

.rule { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

/* ---------- type ---------- */

h1, h2, h3 { line-height: 1.18; letter-spacing: -0.02em; margin: 0 0 18px; font-weight: 700; }
h1 { font-size: clamp(32px, 7vw, 56px); letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 4.6vw, 38px); }
h3 { font-size: clamp(19px, 2.6vw, 23px); margin-bottom: 10px; }

p { margin: 0 0 18px; color: var(--text-dim); }
p.lead { font-size: clamp(18px, 2.4vw, 21px); color: var(--text); }
p strong, li strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(76, 195, 138, 0.28);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 22px;
}

.section-head { max-width: var(--prose); margin: 0 auto 40px; text-align: center; }
.section-head p { font-size: 18px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(76, 195, 138, 0.18), transparent 62%),
    radial-gradient(700px 420px at 90% 10%, rgba(76, 195, 138, 0.05), transparent 60%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.hero .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero p.lead { margin-left: auto; margin-right: auto; max-width: 620px; }

.punch {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 26px 0 30px;
  letter-spacing: -0.02em;
}

/* ---------- buttons and form ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 650;
  line-height: 1;
  padding: 17px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
  width: 100%;
}
.btn:hover { text-decoration: none; filter: brightness(1.06); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: progress; transform: none; }

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
}

@media (min-width: 560px) { .btn { width: auto; } }

.signup { max-width: 470px; margin: 0 auto; }
.signup .row { display: grid; gap: 10px; }
@media (min-width: 560px) {
  .signup .row { grid-template-columns: 1fr 1fr; }
  .signup .row .btn { grid-column: 1 / -1; }
}

.signup input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px;
  outline: none;
}
.signup input::placeholder { color: var(--text-faint); }
.signup input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.microcopy { font-size: 13.5px; color: var(--text-faint); margin: 14px 0 0; text-align: center; }

.formnote {
  margin: 14px 0 0;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 14px;
  display: none;
  text-align: center;
}
.formnote.ok { display: block; background: var(--good-soft); color: var(--good); border: 1px solid rgba(76, 195, 138, 0.32); }
.formnote.err { display: block; background: rgba(224, 106, 90, 0.12); color: var(--bad); border: 1px solid rgba(224, 106, 90, 0.3); }

/* ---------- media frames ---------- */

.shot {
  margin: 38px auto 0;
  max-width: 940px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shot img { width: 100%; }
.shot figcaption {
  font-size: 13.5px;
  color: var(--text-faint);
  padding: 12px 16px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.shot-sm { max-width: 520px; }

/* placeholder shown until a real screenshot is dropped in */
.shot .placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--text-faint);
  background:
    repeating-linear-gradient(135deg, var(--surface) 0 12px, var(--surface-2) 12px 24px);
}

/* Two pictures side by side. Each card sizes to its own picture, and both
   pictures are capped to the same height so neither dwarfs the other. */
.shot-pair { align-items: start; }
.shot-pair .shot { margin: 0; }
.shot-pair .shot img { max-height: 520px; width: auto; margin: 0 auto; }

/* The price block in the hero. */
.offerbox {
  max-width: 560px;
  margin: 0 auto 26px;
  padding: 20px 22px;
  border: 1px solid rgba(76, 195, 138, 0.28);
  background: var(--accent-soft);
  border-radius: var(--radius);
}
.offerbox p { margin: 0; color: var(--text); font-size: 16.5px; }
.offerbox .price {
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

/* A video that keeps its shape on a phone. */
.video {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- cards ---------- */

.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .grid.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .grid.three { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }

.card-accent { border-color: rgba(76, 195, 138, 0.38); background: linear-gradient(180deg, var(--accent-soft), transparent 60%), var(--surface); }

/* ---------- quotes ---------- */

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 24px;
  margin: 0 0 18px;
}
.quote p { color: var(--text); font-size: 18px; margin-bottom: 12px; }
.quote cite { font-style: normal; font-size: 14px; color: var(--text-faint); }

/* ---------- lists ---------- */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding: 0 0 0 32px;
  margin-bottom: 14px;
  color: var(--text-dim);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--good-soft);
  border: 1px solid rgba(76, 195, 138, 0.42);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--good);
  border-bottom: 2px solid var(--good);
  transform: rotate(-45deg);
}
.ticks.crosses li::before { background: rgba(224, 106, 90, 0.12); border-color: rgba(224, 106, 90, 0.4); }
.ticks.crosses li::after {
  left: 5px; top: 11px; width: 8px; height: 8px;
  border: 0;
  background:
    linear-gradient(45deg, transparent 44%, var(--bad) 44%, var(--bad) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--bad) 44%, var(--bad) 56%, transparent 56%);
  transform: none;
}

.schedule { list-style: none; margin: 0; padding: 0; }
.schedule li {
  display: grid;
  gap: 2px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.schedule li:last-child { border-bottom: 0; }
.schedule .when { color: var(--accent); font-weight: 650; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.schedule .what { color: var(--text); font-weight: 600; }
.schedule .why { color: var(--text-dim); font-size: 15.5px; }
@media (min-width: 720px) {
  .schedule li { grid-template-columns: 160px 1fr; }
  .schedule .when { grid-row: span 2; padding-top: 3px; }
}

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--text);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 28px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 31px; }
.faq .answer { padding: 0 0 20px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- bands ---------- */

.band { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.band-accent {
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(76, 195, 138, 0.16), transparent 65%),
    var(--surface);
  border-top: 1px solid var(--line-soft);
}

/* ---------- footer ---------- */

footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--text-faint);
  text-align: center;
}
footer a { color: var(--text-dim); }
footer nav { margin-bottom: 12px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- misc ---------- */

.center { text-align: center; }
.skip {
  position: absolute; left: -9999px;
}
.skip:focus { left: 16px; top: 16px; background: var(--accent); color: var(--on-accent); padding: 10px 16px; border-radius: 8px; z-index: 50; }

.todo {
  background: rgba(76, 195, 138, 0.08);
  border: 1px dashed rgba(76, 195, 138, 0.5);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--accent);
  font-size: 15px;
}
.todo strong { color: var(--accent); display: block; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px; }
.todo p { color: var(--text-dim); margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
