/* ============================================================
   Greenland Advisors: The Valuation Multiplier (registration)
   Mobile-first. Design target 390px, then 768px, then 1080px+.
   ============================================================ */

:root {
  --green:        #22b573;
  --green-dark:   #1a9760;
  --navy:         #2d5179;
  --navy-deep:    #0B1A2E;
  --white:        #FFFFFF;
  --off-white:    #F7F5F2;
  --text-body:    #3A3A3A;
  --text-muted:   #6B6B6B;
  --border-light: #E1DDD7;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
  --pad-y: clamp(64px, 9vw, 110px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type primitives ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.h2--light { color: var(--white); }
.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.14rem);
  line-height: 1.7;
  color: var(--text-muted);
}
.lede + .lede { margin-top: 1.2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 1.05em 1.9em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn--sm { padding: 0.72em 1.25em; font-size: 0.9rem; border-radius: 7px; }
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 18px -8px rgba(34, 181, 115, 0.6);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(34, 181, 115, 0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-light);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ---------- Section 0: Announcement + nav ---------- */
.announce {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 40px;
  padding-block: 8px;
  text-align: center;
  flex-wrap: wrap;
}
.announce__link {
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}
.announce__link:hover { text-decoration: underline; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--green);
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 24px -16px rgba(11, 26, 46, 0.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav__logo strong { font-weight: 700; }
.nav__logo img { display: block; height: 46px; width: auto; }
.nav__logo--footer img { height: 34px; }

/* ---------- Section 1: Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(34, 181, 115, 0.06), transparent 60%),
    var(--white);
  padding-block: clamp(40px, 6vw, 76px) var(--pad-y);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
/* Mobile: flatten the left wrapper so the form sits between the intro and the
   details (badge/headline/paragraph -> form -> quiet line/bullets). */
.hero__col-left { display: contents; }
.hero__intro { order: 1; }
.hero__form { order: 2; }
.hero__details { order: 3; }

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  background: rgba(34, 181, 115, 0.10);
  border: 1.5px solid var(--green);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.62em 1.15em;
  border-radius: 999px;
}
.pill-badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  flex: none;
}
.hero__h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.05rem, 6.6vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-top: 1.3rem;
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-muted);
  max-width: 36ch;
}
.hero__quiet {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--green);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.5;
  color: var(--navy);
}
.ticks {
  list-style: none;
  margin-top: 1.7rem;
  display: grid;
  gap: 0.85rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-body);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.05em;
  width: 1.3rem; height: 1.3rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat,
    var(--green);
}
.hero__trust {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Registration card */
.hero__form { position: relative; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--green);
  border-radius: 12px;
  padding: clamp(22px, 4vw, 30px);
  box-shadow: 0 24px 60px -34px rgba(11, 26, 46, 0.45);
}
.form-card__eyebrow {
  display: block;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.form-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.form-card__micro {
  margin-top: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

/* GHL form embed wrapper (holds the live iframe; min-height reserves space
   so there is no layout shift before form_embed.js sizes the iframe) */
.ghl-form-embed {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.ghl-form-embed iframe {
  display: block;
  width: 100%;
  border: none;
}
.ghl-form-embed--hero { min-height: 750px; }
.ghl-form-embed--final { min-height: 750px; }

/* ---------- Section bands ---------- */
.band { padding-block: var(--pad-y); }
.band--white { background: var(--white); }
.band--offwhite { background: var(--off-white); }
.band--deep { background: var(--navy-deep); color: rgba(255, 255, 255, 0.92); }
.band--deep .lede { color: var(--white); }

/* ---------- Section 2: Proof bar ---------- */
.proof {
  background: var(--white);
  border-top: 3px solid var(--green);
  padding-block: clamp(40px, 6vw, 64px);
}
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  text-align: center;
}
.proof__item { display: grid; gap: 0.35rem; justify-items: center; }
.proof__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}
.proof__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.proof__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.proof__item--hero .proof__num {
  font-size: clamp(3rem, 8vw, 4.4rem);
}
.proof__item--hero .proof__label { font-size: 1.05rem; }

/* ---------- Section 3: Reframe ---------- */
.reframe__inner { max-width: 760px; }
.reframe .lede { margin-top: 1.5rem; }
.reframe .h2 { max-width: 16ch; }

/* ---------- Section 4: Curriculum ---------- */
.curriculum__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.curriculum__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: start;
}
.learn { list-style: none; display: grid; gap: 0; }
.learn__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--border-light);
}
.learn__item:last-child { border-bottom: 1px solid var(--border-light); }
.learn__no {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
  width: 2.2rem;
}
.learn__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--navy);
  line-height: 1.2;
}
.learn__body {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 54ch;
}

/* The multiplier motif (the one earned visual) */
.multiplier {
  position: sticky;
  top: 96px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 34px);
  text-align: center;
  box-shadow: 0 24px 56px -38px rgba(11, 26, 46, 0.4);
}
.multiplier__svg { width: 100%; max-width: 240px; margin: 0 auto; height: auto; }
.multiplier__path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}
.multiplier.is-in .multiplier__path {
  animation: draw 1.4s ease forwards 0.2s;
}
.multiplier__dot { opacity: 0; }
.multiplier.is-in .multiplier__dot--lo { animation: pop 0.3s ease forwards 0.3s; }
.multiplier.is-in .multiplier__dot--hi { animation: pop 0.4s ease forwards 1.5s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; } }
.multiplier__labels {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}
.multiplier__lo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
}
.multiplier__arrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.multiplier__hi {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--green);
  line-height: 1;
}
.multiplier__caption {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.curriculum__dual {
  margin-top: clamp(36px, 5vw, 52px);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  max-width: 30ch;
  margin-inline: auto;
}
.curriculum__cta { margin-top: 2rem; text-align: center; }

/* ---------- Section 5: Host ---------- */
.host__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 52px);
  align-items: center;
}
.placeholder {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.placeholder--portrait {
  aspect-ratio: 4 / 5;
  border: 3px solid var(--green);
  border-radius: 14px;
  max-width: 360px;
}
.host__photo {
  width: 100%;
  height: auto;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid var(--green);
  border-radius: 14px;
}
.host__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  color: var(--navy);
  line-height: 1.1;
}
.host__title {
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
.host__story {
  margin-top: 1.3rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 58ch;
}
.cred-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.cred-pills li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(34, 181, 115, 0.08);
  border: 1px solid rgba(34, 181, 115, 0.35);
  border-radius: 999px;
  padding: 0.45em 0.95em;
}

/* ---------- Section 6: Testimonials ---------- */
.testimonials__head { max-width: 620px; margin-bottom: clamp(32px, 4vw, 48px); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
.t-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
}
.t-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.t-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 46, 0.20), rgba(11, 26, 46, 0.50));
  z-index: 0;
}
.t-facade__play {
  position: relative;
  z-index: 1;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, background 0.18s ease;
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.5);
}
.t-facade:hover .t-facade__play { transform: scale(1.08); background: var(--green-dark); }
.t-facade__play svg { margin-left: 3px; }
.t-card__meta { padding: 1rem 1.1rem 1.2rem; }
.t-card__name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.t-card__desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.15rem; }
.t-card iframe { width: 100%; aspect-ratio: 16 / 10; border: none; display: block; }
.testimonials__cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Section 7: Buyer network ---------- */
.buyers__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.buyers__body {
  margin-block: 1.4rem 2.2rem;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Section 8: Final CTA ---------- */
.final__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.final__copy { max-width: 30ch; }
.final .lede { margin-top: 1.2rem; }
.final__urgency {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
}

/* ---------- Section 9: Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.6); padding-block: 48px; }
.footer__inner { display: grid; gap: 1.1rem; max-width: 760px; }
.nav__logo--footer { color: rgba(255, 255, 255, 0.92); }
.footer__disclaimer { font-size: 0.78rem; line-height: 1.6; color: rgba(255, 255, 255, 0.5); }
.footer__copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .multiplier__path { stroke-dashoffset: 0; }
  .multiplier__dot { opacity: 1; }
  .multiplier.is-in .multiplier__path,
  .multiplier.is-in .multiplier__dot--lo,
  .multiplier.is-in .multiplier__dot--hi { animation: none; }
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 768px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); align-items: end; }
  .proof__grid { gap: 1.5rem; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .host__grid { grid-template-columns: 1fr 1.05fr; }
  .host__media { justify-self: start; }
  .host__photo { max-width: 480px; aspect-ratio: 4 / 3; }
  .final__inner { grid-template-columns: 1.05fr 0.95fr; }
  .final__copy { max-width: none; }
}

@media (min-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    column-gap: clamp(40px, 5vw, 72px);
  }
  /* Desktop: restore the wrapper so intro + details flow as one left column,
     independent of the (taller) form on the right. No row-span = no stretch gap. */
  .hero__col-left { display: flex; flex-direction: column; }
  .curriculum__layout { grid-template-columns: 1.25fr 0.75fr; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Thank-you / confirmation page (thank-you.html)
   ============================================================ */
.ty-hero {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(34, 181, 115, 0.07), transparent 60%),
    var(--white);
  padding-block: clamp(56px, 9vw, 96px) clamp(40px, 6vw, 64px);
  text-align: center;
}
.ty-hero__inner { max-width: 720px; margin-inline: auto; }
.ty-check {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -14px rgba(34, 181, 115, 0.7);
}
.ty-check svg { width: 38px; height: 38px; }
.ty-check__ring {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
}
.ty-check__tick {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}
.ty-loaded .ty-check__ring { animation: tyDraw 0.5s ease forwards; }
.ty-loaded .ty-check__tick { animation: tyDraw 0.35s ease forwards 0.4s; }
@keyframes tyDraw { to { stroke-dashoffset: 0; } }
.ty-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.ty-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.ty-sub {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
}
.ty-when {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(34, 181, 115, 0.10);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  padding: 0.6em 1.2em;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.ty-when svg { width: 17px; height: 17px; flex: none; }

/* "Check your spam" alert */
.ty-alert {
  margin: 1.6rem auto 0;
  max-width: 540px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
  background: rgba(34, 181, 115, 0.08);
  border: 1px solid rgba(34, 181, 115, 0.4);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
}
.ty-alert__icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--green-dark);
  margin-top: 0.1rem;
}
.ty-alert p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
}
.ty-alert strong { color: var(--navy); }

/* Next steps */
.ty-steps__head { text-align: center; max-width: 620px; margin: 0 auto clamp(36px, 5vw, 52px); }
.ty-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  max-width: 920px;
  margin-inline: auto;
}
.ty-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: clamp(22px, 3.5vw, 30px);
}
.ty-step__no {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(34, 181, 115, 0.12);
  color: var(--green-dark);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.ty-step__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.2;
}
.ty-step__body { margin-top: 0.5rem; font-size: 0.96rem; color: var(--text-muted); }

/* Add-to-calendar actions */
.ty-cal { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ty-cal a {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.6em 0.95em;
  transition: border-color 0.16s ease, color 0.16s ease;
}
.ty-cal a:hover { border-color: var(--green); color: var(--green-dark); }
.ty-cal[hidden] { display: none; }
.ty-cal-fallback { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.ty-cal-fallback[hidden] { display: none; }

/* While you wait */
.ty-wait__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.ty-wait__body {
  margin-block: 1.3rem 2rem;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}
.ty-cred-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.ty-cred-pills li {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(34, 181, 115, 0.16);
  border: 1px solid rgba(34, 181, 115, 0.5);
  border-radius: 999px;
  padding: 0.45em 0.95em;
}

@media (min-width: 768px) {
  .ty-steps__grid { grid-template-columns: repeat(3, 1fr); }
}
