/* Groundbreaker Marketing workshop pages.
   Tokens are the live WordPress Elementor kit, same as clients/groundbreaker-website:
   lime #c5ed3f (button fills only, never small text on white), heading #353535,
   near-black #131313, body #555555, dark band #1c2209, warm band #f6f7f2. */

:root {
  --lime: #c5ed3f;
  --black: #131313;
  --heading: #353535;
  --body: #555555;
  --muted: #666666;
  --dark: #1c2209;
  --dark-2: #131706;
  --band: #f6f7f2;
  --card: #f6fce2;
  --rule: #e3e5dc;
  --white: #ffffff;
  --accent-ink: #4d640d;
  --ff-head: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --ff-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --col: min(1120px, 100% - 2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--ff-head); color: var(--heading); margin: 0; text-wrap: balance; line-height: 1.12; }
h1 { font-size: clamp(2rem, 5.2vw, 3.25rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 700; color: var(--black); }
p { margin: 0 0 1rem; }
a { color: var(--black); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }
:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: 2px; border-radius: 3px; }

.wrap { width: var(--col); margin-inline: auto; }
.eyebrow {
  font-family: var(--ff-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 0.75rem;
}
.dark .eyebrow { color: var(--lime); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { background: #d4f45a; color: var(--black); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-block { display: block; text-align: center; width: 100%; }

/* Header */
.mast { background: var(--dark); }
.mast-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.mast img { height: 34px; width: auto; }
.mast-tag { font-family: var(--ff-head); font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); }

/* Hero */
.hero { background: var(--dark); color: #e9ecdf; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem); }
.hero h1 { color: var(--white); }
.hero .lead { font-size: 1.1875rem; color: #cfd4c2; margin: 1.25rem 0 1.5rem; max-width: 34em; }
.hero-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; } }
.when {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem 1.5rem;
  margin: 1.75rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid rgba(255,255,255,0.14);
}
.when dt { font-family: var(--ff-head); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); margin: 0 0 0.2rem; }
.when dd { margin: 0; color: var(--white); font-weight: 600; font-family: var(--ff-head); }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Form card */
.form-card { background: var(--white); border-radius: 10px; padding: 1.5rem; box-shadow: 0 18px 50px rgba(0,0,0,0.28); color: var(--body); }
.form-card h2 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.form-card .sub { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1rem; }
.form-slot { min-height: 420px; }
.form-slot iframe { width: 100%; border: 0; display: block; }
.form-pending { border: 2px dashed var(--rule); border-radius: 8px; padding: 1.25rem; font-size: 0.9375rem; color: var(--muted); background: var(--band); }
.form-pending strong { color: var(--black); }
.form-pending code { font-size: 0.85em; background: var(--white); padding: 0.1em 0.35em; border-radius: 3px; }
.fineprint { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; margin: 1rem 0 0; }

/* Sections */
section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.band { background: var(--band); }
.section-head { max-width: 40em; margin-bottom: 1.75rem; }
.section-head p { color: var(--body); margin: 0.75rem 0 0; }

.takeaways { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
@media (min-width: 720px) { .takeaways { grid-template-columns: 1fr 1fr; } }
.takeaways li { background: var(--white); border: 1px solid var(--rule); border-radius: 8px; padding: 1.15rem 1.25rem 1.15rem 3.4rem; position: relative; }
.takeaways li::before {
  content: attr(data-n); position: absolute; left: 1.1rem; top: 1.1rem;
  width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--lime); color: var(--black);
  font-family: var(--ff-head); font-weight: 700; font-size: 0.875rem; display: grid; place-items: center;
}
.takeaways h3 { margin-bottom: 0.25rem; }
.takeaways p { margin: 0; font-size: 0.9875rem; }

.two-col { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.host { display: grid; gap: 1.5rem; align-items: start; margin: 0; background: var(--white); border: 1px solid var(--rule); border-radius: 10px; padding: 1.5rem; }
@media (min-width: 560px) { .host { grid-template-columns: 180px 1fr; gap: 1.75rem; } }
.host img { border-radius: 8px; aspect-ratio: 3 / 4; height: auto; object-fit: cover; object-position: top; width: 100%; max-width: 220px; }
.host figcaption { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }

.who-list { margin: 0; padding-left: 1.2rem; }
.who-list li { margin-bottom: 0.5rem; }

/* Bottom CTA */
.cta { background: var(--dark); color: #e9ecdf; text-align: center; }
.cta h2 { color: var(--white); }
.cta p { color: #cfd4c2; max-width: 36em; margin: 0.75rem auto 1.5rem; }

/* Thank-you */
.ty { padding: clamp(3rem, 8vw, 6rem) 0; }
.ty-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: clamp(1.5rem, 4vw, 2.75rem); max-width: 640px; margin-inline: auto; }
.joinlink { word-break: break-all; font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; }
.cal { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.cal a { font-family: var(--ff-head); font-weight: 700; font-size: 0.9375rem; text-decoration: none; padding: 0.7rem 1rem; border: 2px solid var(--rule); border-radius: 6px; color: var(--black); background: var(--white); }
.cal a:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.steps { margin: 1.5rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; }
.steps li { display: grid; grid-template-columns: 1.75rem 1fr; gap: 0.75rem; align-items: start; }
.steps li span { width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--lime); color: var(--black); font-family: var(--ff-head); font-weight: 700; font-size: 0.875rem; display: grid; place-items: center; }

/* Footer */
footer { background: var(--dark-2); color: #aab09c; padding: 2rem 0; font-size: 0.875rem; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
footer img { height: 26px; width: auto; opacity: 0.9; }
footer a { color: #e9ecdf; }
footer a:hover { color: var(--lime); }
footer nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
