/* ─────────────────────────────────────────────────────────────────────────
   learnaiwithdany.com — shared styles
   Direction: bold direct-response challenge page (matched to the reference
   brief: cream/black/red, Anton + Oswald + Open Sans, italic Playfair accent
   words, uppercase 6px-radius buttons with a red glow). Copy is Dany's own.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --bg:        #fffae7;
  --surface:   #f6eed2;
  --card:      #ffffff;
  --line:      rgba(47,45,45,0.12);
  --line-2:    rgba(47,45,45,0.22);

  --text:      #2f2d2d;
  --text-2:    rgba(47,45,45,0.82);
  --mute:      rgba(47,45,45,0.64);

  --red:       #d02e2e;
  --red-dark:  #b82828;
  --cream:     #fffae7;
  --good:      #2f8f5b;

  --f-display: 'Anton', sans-serif;
  --f-label:   'Oswald', sans-serif;
  --f-serif:   'Playfair Display', serif;
  --f-body:    'Open Sans', system-ui, -apple-system, sans-serif;
  --f-mono:    'Oswald', sans-serif;

  --pad-x:     24px;
  --section-y: 64px;
  --radius:    10px;
}

@media (min-width: 720px) {
  :root { --pad-x: 56px; --section-y: 104px; }
}

:root[data-theme="dark"] { --bg: #fffae7; --surface: #f6eed2; --card: #ffffff; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: rgba(208,46,46,0.2); color: #2f2d2d; }

.wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  overflow-wrap: break-word;
}

h1, h2, h3, p, .eyebrow, .hero-meta {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── nav ─────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  border-bottom: 2px solid var(--text);
}
.nav-logo {
  font-family: var(--f-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px;
  white-space: nowrap;
}
@media (min-width: 480px) { .nav-logo { font-size: 16px; } }
.nav-logo em { color: var(--red); font-style: italic; font-family: var(--f-serif); text-transform: none; }
.nav-cta {
  background: var(--red);
  color: var(--cream);
  border-radius: 6px;
  padding: 9px 14px;
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(208,46,46,0.28);
}
@media (min-width: 480px) { .nav-cta { padding: 11px 18px; font-size: 14px; } }

/* ── hero ────────────────────────────────────────────────────────────── */
.hero {
  padding: 56px 0 48px;
  text-align: center;
}
.hero-headshot {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--card);
  box-shadow: 0 0 0 2px var(--text);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border: 2px solid var(--text);
  background: var(--card);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 26px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red); }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 22px;
}
@media (min-width: 480px) { .hero h1 { font-size: 42px; } }
@media (min-width: 720px) { .hero h1 { font-size: 64px; } }
.hero h1 span.hl {
  color: var(--red);
  font-family: var(--f-serif);
  font-style: italic;
  text-transform: none;
  font-weight: 500;
}
.hero p.sub {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 34px;
  line-height: 1.7;
}
@media (min-width: 720px) { .hero p.sub { font-size: 19px; } }

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 560px) { .cta-row { flex-direction: row; justify-content: center; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  min-height: 56px;
  border-radius: 6px;
  padding: 1rem 2.2rem;
  border: 2px solid transparent;
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 17px;
  width: 100%;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
@media (min-width: 560px) { .btn { width: auto; } }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--cream); border-color: var(--red); box-shadow: 0 12px 34px rgba(208,46,46,0.32); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 16px 44px rgba(208,46,46,0.45); }
.btn-ghost { border: 2px solid var(--text); color: var(--text); background: var(--card); }
.btn-ghost:hover { background: var(--text); color: var(--cream); }

.hero-meta {
  margin-top: 18px;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--mute);
}

/* ── video proof ────────────────────────────────────────────────────── */
.proof-video {
  margin: 44px auto 0;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--text);
  background: var(--card);
  box-shadow: 0 12px 40px rgba(47,45,45,0.14);
}
.proof-video video { width: 100%; display: block; }

/* ── sections ────────────────────────────────────────────────────────── */
section { padding: var(--section-y) 0; }
.section-alt { background: var(--surface); }
.eyelabel {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
h2 {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
}
@media (min-width: 720px) { h2 { font-size: 40px; } }
h2 em { color: var(--red); font-family: var(--f-serif); font-style: italic; text-transform: none; font-weight: 500; }
.section-intro { max-width: 620px; }
.section-intro p { color: var(--text-2); font-size: 16px; }

/* ── qualifier (this is / is not for you) ───────────────────────────── */
.qualify {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 720px) { .qualify { grid-template-columns: 1fr 1fr; } }
.qualify-card {
  background: var(--card);
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 26px;
}
.qualify-card h3 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 18px; margin: 0 0 14px; letter-spacing: 0.02em; }
.qualify-card.yes h3 { color: var(--good); }
.qualify-card.no h3 { color: var(--red); }
.qualify-card ul { margin: 0; padding-left: 20px; color: var(--text-2); font-size: 14.5px; }
.qualify-card li { margin-bottom: 8px; }

/* ── days grid (what you build in 7 days) ───────────────────────────── */
.days {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 640px) { .days { grid-template-columns: 1fr 1fr; } }
.day-card {
  background: var(--card);
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 22px;
}
.day-card .num {
  display: inline-block;
  font-family: var(--f-label);
  font-weight: 700;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(208,46,46,0.08);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.day-card h3 { margin: 0 0 6px; font-size: 18px; font-family: var(--f-display); font-weight: 400; text-transform: uppercase; }
.day-card p { margin: 0; color: var(--text-2); font-size: 14px; }

/* ── testimonials ────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 780px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--card);
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 26px;
}
.testimonial p.quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--text);
}
.testimonial .who { display: flex; align-items: center; gap: 10px; font-family: var(--f-label); font-size: 12.5px; color: var(--mute); }
.testimonial .who .avatar {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--surface); border: 2px solid var(--text);
}
.testimonial .who strong { color: var(--text); display: block; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }

/* ── focentra branch ─────────────────────────────────────────────────── */
.branch {
  background: var(--card);
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  margin-top: 8px;
}
.branch p { color: var(--text-2); margin: 0 0 20px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ── footer ──────────────────────────────────────────────────────────── */
footer {
  padding: 40px var(--pad-x) 60px;
  border-top: 2px solid var(--text);
  text-align: center;
}
footer .disclosure {
  font-size: 12px;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto 12px;
}
footer .links { font-family: var(--f-label); font-size: 13px; color: var(--mute); }
footer .links a { color: var(--text-2); }
footer .links a:hover { color: var(--red); }

/* ── agent library ───────────────────────────────────────────────────── */
.agent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.agent-row .kw {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 12px;
  color: var(--red);
  background: rgba(208,46,46,0.08);
  border-radius: 999px;
  padding: 4px 10px;
}
.agent-row .name { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 17px; }
.agent-row .meta { font-size: 13px; color: var(--mute); }

/* ── guide page ──────────────────────────────────────────────────────── */
.guide h1 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: 30px; margin: 0 0 8px; }
.guide .oneliner { font-size: 17px; color: var(--text-2); margin: 0 0 28px; }
.guide .badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.guide .badge {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 12px;
  border: 2px solid var(--text);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--text-2);
  background: var(--card);
}
.guide h2 { font-size: 22px; margin-top: 40px; }
.guide h3 { font-size: 16px; margin-top: 24px; font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.guide pre {
  background: #2f2d2d;
  color: #fffae7;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  font-family: 'Oswald', monospace;
  font-size: 13px;
}
.guide code { font-family: monospace; }
.callout {
  background: var(--surface);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-2);
}
.disclosure-line {
  font-size: 12px;
  color: var(--mute);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 40px;
}
