:root {
  --green: #0d4838;
  --green-deep: #123f33;
  --sage: #879884;
  --sage-soft: #eef2eb;
  --ink: #20201f;
  --muted: #62605c;
  --line: #ded8d0;
  --paper: #ffffff;
  --paper-warm: #fbfaf8;
  --copper: #bd7f55;
  --panel: #f7f3ee;
  --shadow: 0 18px 45px rgba(28, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.meetup-header {
  width: min(100% - 96px, 1280px);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.button {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(13, 72, 56, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  padding: 0 26px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(13, 72, 56, 0.16);
}

.section-kicker,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero {
  width: min(100% - 96px, 1080px);
  margin: 34px auto 0;
  text-align: center;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1,
.statement h2,
.section-heading h2,
.registration h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(48px, 6.1vw, 84px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #343531;
  font-size: 17px;
  line-height: 1.64;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-split {
  width: min(100% - 96px, 1280px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 3.6vw, 50px);
  align-items: start;
  text-align: left;
}

.hero-split .hero-copy {
  align-items: flex-start;
  justify-content: center;
}

.hero-split h1 {
  max-width: 560px;
  font-size: clamp(42px, 3.45vw, 56px);
  line-height: 1.06;
}

.hero-split .hero-lead {
  max-width: 540px;
  margin-top: 22px;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-date {
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-media {
  width: min(112%, 700px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #101522;
  box-shadow: 0 22px 56px rgba(13, 72, 56, 0.14);
  justify-self: end;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-logos {
  width: min(100% - 96px, 1080px);
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 58px);
}

.tool-logos img {
  max-height: 82px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

.tool-logos img:nth-child(2) {
  max-height: 74px;
}

.tool-logos img:nth-child(3) {
  max-height: 88px;
}

.tool-logos .tool-logo-icon {
  max-width: 72px;
  max-height: 72px;
}

.mobile-logo-cta {
  display: none;
}

.event-strip {
  width: min(100% - 96px, 1280px);
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.event-strip article {
  min-height: 106px;
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.event-strip article + article {
  border-left: 1px solid var(--line);
}

.event-strip span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-strip strong {
  color: #252421;
  font-size: 15px;
  line-height: 1.35;
}

.event-strip-before-registration {
  margin-bottom: 38px;
}

.positioning {
  width: min(100% - 96px, 1120px);
  margin: 66px auto 0;
}

.positioning-copy {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.positioning h2,
.takeaways h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

.positioning p,
.takeaways-copy p {
  max-width: 710px;
  margin: 22px auto 0;
  color: #45433e;
  font-size: 17px;
  line-height: 1.66;
}

.statement {
  width: min(100% - 96px, 1120px);
  margin: 68px auto 0;
  padding: 0 0 54px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.statement div {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--green-deep);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.13;
}

.statement p {
  max-width: 730px;
  margin: 20px auto 0;
  color: #45433e;
  font-size: 17px;
  line-height: 1.64;
}

.topics,
.workshop-blocks,
.takeaways,
.bonuses,
.speakers,
.fit-section,
.testimonials,
.registration {
  width: min(100% - 96px, 1120px);
  margin: 0 auto;
}

.topics {
  padding: 82px 0 34px;
}

.section-heading {
  margin: 0 0 38px;
  text-align: center;
}

.section-heading .section-kicker {
  display: block;
}

.section-heading h2,
.registration h2 {
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.14;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.program-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-warm);
}

.program-card.is-dark {
  color: white;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.program-card > span {
  color: var(--copper);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.block-grid span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.program-card h3,
.block-grid h3 {
  margin: 14px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.program-card.is-dark h3 {
  color: white;
}

.program-card p {
  margin: 18px 0 0;
  color: #4a4843;
  font-size: 15px;
  line-height: 1.62;
}

.program-card.is-dark p,
.program-card.is-dark li {
  color: rgba(255, 255, 255, 0.9);
}

.program-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  margin: 16px 0;
  padding-left: 28px;
  color: #3c3a35;
  font-size: 15px;
  line-height: 1.48;
}

.program-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--copper);
}

.program-support-bonus {
  margin-top: 28px;
  padding: 42px 46px;
  border: 1px solid #dfb995;
  border-left: 7px solid var(--copper);
  border-radius: 8px;
  background: #f3e2d3;
}

.program-support-bonus > span {
  color: #925c38;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.program-support-bonus h3 {
  margin: 16px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.1vw, 42px);
  font-weight: 400;
  line-height: 1.14;
}

.program-support-bonus p {
  max-width: 1040px;
  margin: 16px 0 0;
  color: #4e392d;
  font-size: 17px;
  line-height: 1.65;
}

.program-download {
  width: min(100% - 96px, 1120px);
  margin: 34px auto 0;
  padding: 48px 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--sage-soft);
  text-align: center;
}

.program-download-copy {
  max-width: 820px;
  margin: 0 auto;
}

.program-download h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.program-download-copy p {
  max-width: 700px;
  margin: 18px auto 0;
  color: #45433e;
  font-size: 17px;
  line-height: 1.62;
}

.program-download-form {
  max-width: 820px;
  margin: 34px auto 0;
}

.program-download-fields {
  padding: 16px;
  border-radius: 10px;
  background: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  box-shadow: 0 20px 45px rgba(13, 72, 56, 0.08);
}

.program-download-fields label {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: #34322f;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
}

.program-download-fields input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #d5cec5;
  border-radius: 8px;
  padding: 0 18px;
  color: #1f1f1d;
  background: var(--paper-warm);
  font-size: 16px;
  outline: none;
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.program-download-fields input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 72, 56, 0.11);
}

.program-download-fields .button {
  min-width: 230px;
  min-height: 58px;
  align-self: end;
}

.program-download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.program-download-form .form-status {
  margin-top: 14px;
  text-align: center;
}

.program-download-form.is-submitted .program-download-fields,
.program-download-form.is-submitted .program-download-note {
  display: none;
}

.program-download-form.is-submitted .form-status {
  display: block;
  margin: 0;
  padding: 24px 28px;
  border: 1px solid rgba(13, 72, 56, 0.18);
  border-radius: 8px;
  color: var(--green-deep);
  background: white;
  box-shadow: 0 18px 42px rgba(13, 72, 56, 0.08);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

.workshop-blocks {
  padding: 54px 0 34px;
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.block-grid article {
  min-height: 320px;
  padding: 28px;
  background: white;
}

.block-grid h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.block-grid p {
  margin: 18px 0 0;
  color: #4a4843;
  font-size: 15px;
  line-height: 1.58;
}

.takeaways {
  margin-top: 34px;
  padding: 58px 48px 60px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--green-deep);
  box-shadow: 0 24px 58px rgba(13, 72, 56, 0.14);
  display: block;
}

.takeaways-copy {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.takeaways .section-kicker {
  margin-bottom: 12px;
  color: var(--copper);
}

.takeaways h2 {
  color: white;
}

.takeaways-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.takeaway-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.takeaway-list span {
  position: relative;
  min-height: 132px;
  padding: 28px 26px 28px 54px;
  border: 1px solid rgba(222, 216, 208, 0.88);
  border-radius: 8px;
  background: var(--paper-warm);
  color: #30332f;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.48;
  display: flex;
  align-items: center;
}

.takeaway-list span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 1.8px solid var(--copper);
  border-bottom: 1.8px solid var(--copper);
  transform: rotate(-45deg);
}

.takeaway-list span::before {
  top: 50%;
  left: 26px;
  transform: translateY(-50%) rotate(-45deg);
}

.bonuses {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bonus-card {
  min-height: 420px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-warm);
  display: flex;
  flex-direction: column;
}

.bonus-card.is-dark {
  color: white;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.bonus-card.is-bronze {
  background: #d9ad8d;
  border-color: var(--copper);
}

.bonus-card > span {
  color: var(--copper);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin: 16px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.9vw, 40px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.bonus-card.is-dark h3 {
  color: white;
}

.bonus-card.is-bronze h3 {
  color: var(--green-deep);
}

.bonus-card p {
  margin: 24px 0 0;
  color: #45433e;
  font-size: 17px;
  line-height: 1.62;
}

.bonus-card.is-dark p {
  color: rgba(255, 255, 255, 0.9);
}

.bonus-card.is-bronze > span {
  color: #744426;
}

.bonus-card.is-bronze p {
  color: #3f2c20;
}

.speakers {
  padding: 42px 0 58px;
}

.speaker-grid {
  display: grid;
  gap: 28px;
}

.speaker-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-warm);
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
}

.speaker-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #e8e1d8;
  box-shadow: var(--shadow);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.speaker-photo-cutout {
  background: linear-gradient(180deg, #f4f0ea 0%, #e8ded3 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.speaker-photo-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.speaker-copy {
  max-width: 650px;
}

.speaker-copy h3 {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.12;
}

.speaker-copy p {
  margin: 0;
  color: #45433e;
  font-size: 16px;
  line-height: 1.68;
}

.speaker-copy p + p {
  margin-top: 18px;
}

.fit-section {
  padding: 54px 0 70px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-card {
  min-height: 260px;
  padding: 32px;
  background: white;
}

.faq-card h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.5vw, 31px);
  font-weight: 400;
  line-height: 1.16;
}

.faq-card p {
  margin: 18px 0 0;
  color: #4a4843;
  font-size: 15px;
  line-height: 1.62;
}

.registration {
  margin-bottom: 54px;
  padding: 54px;
  border-radius: 10px;
  background: var(--paper-warm);
}

.registration h2 {
  text-align: center;
}

.registration-body {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: start;
}

.registration-copy p {
  max-width: 470px;
  margin: 20px auto 0;
  color: #45433e;
  font-size: 16px;
  line-height: 1.64;
  text-align: center;
}

.program-price {
  max-width: 480px;
  margin: 22px auto 0;
  padding: 24px 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.program-price strong {
  display: block;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.7vw, 58px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.program-price span {
  display: block;
  margin-top: 8px;
  color: var(--copper);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.registration-summary {
  max-width: 500px;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.registration-summary li {
  position: relative;
  margin: 13px 0;
  padding-left: 30px;
  color: #3c3a35;
  font-size: 15px;
  line-height: 1.48;
}

.registration-summary li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 1.6px solid var(--green);
  border-bottom: 1.6px solid var(--green);
  transform: rotate(-45deg);
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.application-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #34322f;
  font-size: 13px;
  font-weight: 750;
}

.application-form input,
.application-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d5cec5;
  border-radius: 6px;
  padding: 0 14px;
  color: #1f1f1d;
  background: white;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.application-form textarea {
  min-height: 118px;
  padding: 14px;
  line-height: 1.45;
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 72, 56, 0.11);
}

.application-form .full {
  grid-column: 1 / -1;
}

.application-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #9b1c1c;
}

.application-form.is-submitted {
  display: block;
}

.application-form.is-submitted label,
.application-form.is-submitted button {
  display: none;
}

.application-form.is-submitted .form-status {
  display: block;
  margin: 0;
  padding: 28px 30px;
  border: 1px solid rgba(13, 72, 56, 0.18);
  border-radius: 8px;
  color: var(--green-deep);
  background: var(--sage-soft);
  box-shadow: 0 18px 42px rgba(13, 72, 56, 0.08);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.testimonials {
  margin-bottom: 82px;
  padding: 64px 0 0;
  border-top: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-warm);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  background: #e8e1d8;
  box-shadow: var(--shadow);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-copy blockquote {
  margin: 0;
  color: #343531;
  font-size: 17px;
  line-height: 1.68;
}

.testimonial-copy blockquote::before {
  content: "“";
  display: block;
  margin: -10px 0 2px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.8;
}

.testimonial-author {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
}

.testimonial-author span,
.testimonial-author a {
  color: #4a4843;
  font-size: 14px;
  line-height: 1.45;
}

.testimonial-author a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.testimonials-compact .testimonial-copy blockquote::before {
  content: none;
}

.testimonials-compact .testimonial-copy blockquote {
  padding-top: 0;
}

.testimonials-compact .testimonial-author {
  margin-top: 20px;
  padding-top: 18px;
}

.meetup-footer {
  padding: 34px max(48px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .meetup-header,
  .hero,
  .tool-logos,
  .event-strip,
  .positioning,
  .topics,
  .program-download,
  .workshop-blocks,
  .takeaways,
  .bonuses,
  .speakers,
  .fit-section,
  .testimonials,
  .registration {
    width: min(100% - 44px, 720px);
  }

  .hero {
    text-align: center;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-split .hero-copy {
    align-items: center;
  }

  .hero-split h1,
  .hero-split .hero-lead {
    max-width: none;
  }

  .hero-split .hero-actions {
    justify-content: center;
  }

  .hero-media {
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

  .tool-logos {
    gap: 28px;
  }

  .tool-logos img {
    max-width: 24%;
    max-height: 64px;
  }

  .tool-logos .tool-logo-icon {
    max-width: 58px;
    max-height: 58px;
  }

  .event-strip,
  .speaker-card,
  .program-grid,
  .bonus-grid,
  .testimonial-grid,
  .testimonial-card,
  .faq-grid,
  .registration-body {
    grid-template-columns: 1fr;
  }

  .program-download {
    padding: 42px 28px;
  }

  .program-download-fields {
    grid-template-columns: 1fr;
  }

  .program-download-fields .button {
    width: 100%;
    min-width: 0;
  }

  .event-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .block-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .takeaway-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .registration {
    padding: 38px 28px;
  }

  .registration-body {
    gap: 34px;
  }

  .speaker-card {
    padding: 28px;
  }

  .speaker-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .meetup-header {
    width: min(100% - 30px, 520px);
    height: 76px;
  }

  .brand {
    width: 94px;
  }

  .hero,
  .tool-logos,
  .event-strip,
  .positioning,
  .topics,
  .program-download,
  .workshop-blocks,
  .takeaways,
  .bonuses,
  .speakers,
  .fit-section,
  .testimonials,
  .registration {
    width: min(100% - 30px, 520px);
  }

  .hero {
    margin-top: 8px;
  }

  .hero-split {
    gap: 24px;
  }

  .tool-logos {
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .tool-logos img {
    max-width: 38%;
    max-height: 54px;
  }

  .tool-logos .tool-logo-icon {
    max-width: 50px;
    max-height: 50px;
  }

  .hero-split .hero-actions {
    display: none;
  }

  .mobile-logo-cta {
    width: min(100% - 30px, 520px);
    margin: 24px auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .positioning {
    margin-top: 46px;
  }

  .positioning-copy {
    padding: 34px 0;
  }

  .button {
    width: 100%;
  }

  .event-strip {
    margin-top: 34px;
  }

  .event-strip article {
    min-height: 88px;
    padding: 20px 0;
    text-align: center;
    align-items: center;
  }

  .statement {
    width: min(100% - 30px, 520px);
    margin-top: 48px;
    padding: 0 0 42px;
  }

  .topics {
    padding-top: 56px;
  }

  .program-download {
    margin-top: 28px;
    padding: 34px 20px;
  }

  .program-support-bonus {
    padding: 32px 26px;
  }

  .program-support-bonus h3 {
    font-size: 32px;
  }

  .program-support-bonus p {
    font-size: 16px;
  }

  .program-download-copy p {
    font-size: 16px;
  }

  .program-card,
  .block-grid article {
    padding: 24px;
  }

  .block-grid {
    grid-template-columns: 1fr;
  }

  .block-grid article {
    min-height: auto;
  }

  .takeaways {
    margin-top: 28px;
    padding: 40px 20px 42px;
  }

  .takeaways-copy {
    margin-bottom: 28px;
    text-align: center;
  }

  .takeaway-list {
    grid-template-columns: 1fr;
  }

  .takeaway-list span {
    min-height: auto;
    padding: 22px 22px 22px 52px;
  }

  .takeaway-list span::before {
    left: 24px;
  }

  .bonuses {
    padding: 46px 0 54px;
  }

  .bonus-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .bonus-card > span {
    font-size: 13px;
  }

  .bonus-card h3 {
    font-size: 32px;
  }

  .bonus-card p {
    font-size: 16px;
  }

  .speakers {
    padding: 34px 0 50px;
  }

  .speaker-card {
    padding: 20px;
  }

  .speaker-photo {
    aspect-ratio: 1 / 1.08;
  }

  .faq-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .registration {
    margin-bottom: 42px;
    padding: 32px 20px;
  }

  .registration-body {
    margin-top: 26px;
  }

  .registration-copy {
    text-align: center;
  }

  .registration-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .registration-summary {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .application-form {
    grid-template-columns: 1fr;
  }

  .testimonials {
    margin-bottom: 54px;
    padding-top: 44px;
  }

  .testimonial-card {
    padding: 22px;
    gap: 24px;
  }

  .testimonial-photo {
    width: 120px;
  }

  .testimonial-copy blockquote {
    font-size: 15px;
    line-height: 1.62;
  }

  .meetup-footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Deferred AI forms: docs/deferred-ai-forms.md */
.deferred-form { min-width: 0; }
.deferred-form-prijava { min-height: 440px; }
.deferred-form-program { min-height: 190px; }
.deferred-form-prompt {
  padding: 28px 20px;
  border: 1px solid #d5cec5;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.deferred-form-prompt p { font-size: 14px; line-height: 1.5; }
.deferred-form-program .deferred-form-prompt { max-width: 820px; margin: 34px auto 0; }
.standalone-ai-forms { max-width: 820px; padding: 36px 20px; margin: 0 auto; }
.standalone-ai-forms section { margin-top: 48px; }
@media (max-width: 700px) {
  .deferred-form-prijava { min-height: 600px; }
  .deferred-form-program { min-height: 250px; }
}
