/* Metabolic Leverage Method — shared brand tokens (webinar) */
:root {
  --ink: #222526;
  --espresso: #353A3E;
  --cream: #F5F5F5;
  --sand: #E0E0E0;
  --accent: #6196AA;
  --accentD: #4F7D8F;
  --muted: #6B7278;
  --navy: #1E2A32;
  --champagne: #E6D9C2;
  --leather: #786048;
  --white: #ffffff;
  --card: #ffffff;
  --danger: #B4634F;
  --maxw: 900px;
  --radius-pill: 100px;
  --radius-card: 12px;
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }

.wrap {
  width: min(100% - 30px, var(--maxw));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

.cta {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: clamp(16px, 1.6vw, 22px) 24px;
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  background: var(--accent);
  border: 2.5px solid var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(97, 150, 170, 0.35);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.cta:hover {
  background: var(--accentD);
  border-color: var(--accentD);
  transform: translateY(-1px);
}

.cta-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--espresso);
  margin: 0 0 14px;
}
.cta-note .gold {
  color: var(--leather);
  font-weight: 600;
}

/* Video placeholder */
.vph {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1E2A32 0%, #2a353c 50%, #222526 100%);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(230, 217, 194, 0.18);
  box-shadow: 0 0 30px 6px rgba(97, 150, 170, 0.25), 0 12px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
}
.vph--glow {
  box-shadow: 0 0 34px 8px rgba(97, 150, 170, 0.45), 0 0 60px 12px rgba(97, 150, 170, 0.2);
}
.vph__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(97, 150, 170, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.vph__play svg { margin-left: 4px; }
.vph__label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  background: rgba(30, 42, 50, 0.88);
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  line-height: 1.35;
}
.vph-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--ink);
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.35;
}
.vph-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: -6px 0 10px;
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .results-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (min-width: 900px) {
  .results-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.75rem; }
}

/* Testimonial cards (go.mmm structure: photo → video → body) */
.t-card {
  background: var(--card);
  border: 1px solid rgba(34, 37, 38, 0.06);
  border-radius: 14px;
  overflow: hidden;
  height: auto;
  min-height: 0;
  box-shadow: 0 1px 2px rgba(34, 37, 38, 0.04), 0 10px 26px -16px rgba(34, 37, 38, 0.16);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.t-card:hover {
  box-shadow: 0 2px 4px rgba(34, 37, 38, 0.06), 0 20px 40px -18px rgba(34, 37, 38, 0.22);
  transform: translateY(-3px);
}
.t-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.t-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.t-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease);
}
.t-video:hover img { opacity: 1; }
.t-video .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.t-video .play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(97, 150, 170, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  transition: transform 0.2s var(--ease);
}
.t-video:hover .play span { transform: scale(1.08); }
.t-video.is-playing { cursor: default; }
.t-video.is-playing iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.t-body {
  padding: 20px 22px 24px;
}
.t-body h3 {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--ink);
  text-align: left;
}
.t-body p {
  margin: 0;
  color: var(--espresso);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer {
  background: var(--navy);
  color: rgba(245,245,245,0.75);
  padding: 48px 15px 40px;
  font-size: 14px;
  text-align: center;
}
.footer a { color: var(--champagne); }
.footer__brand {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer__links { margin: 16px 0; }
.footer__links a { margin: 0 10px; text-decoration: none; }
.footer__links a:hover { text-decoration: underline; }
.footer p { margin: 10px auto; max-width: 720px; line-height: 1.55; }
.footer .fine { font-size: 12px; color: rgba(245,245,245,0.55); }

.section-pad { padding: clamp(40px, 5vw, 64px) 15px; }
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-strip span { white-space: nowrap; }

.pillars {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 700px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: left;
}
.pillar__num {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--espresso);
  line-height: 1.5;
}

.accordion {
  max-width: 640px;
  margin: 28px auto 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .hint { color: var(--leather); font-weight: 600; }
.accordion .panel {
  padding: 0 20px 20px;
  color: var(--espresso);
  font-size: 15px;
  line-height: 1.6;
}
.accordion .panel ol { margin: 0; padding-left: 1.2em; }
.accordion .panel li { margin: 8px 0; }

/* Real iOS-style iMessage lock-screen notification */
.imsg {
  max-width: 380px;
  margin: 22px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px 12px 12px;
  border-radius: 22px;
  background: rgba(60, 60, 67, 0.72);
  border: 0.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  backdrop-filter: blur(40px) saturate(180%);
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}
.imsg__avatar-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.imsg__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
  background: #444;
}
.imsg__badge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: block;
  box-shadow: 0 0 0 1.5px rgba(40,40,45,0.9);
}
.imsg__body {
  flex: 1;
  min-width: 0;
  padding-top: 1px;
}
.imsg__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.imsg__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.imsg__time {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(235,235,245,0.6);
  flex-shrink: 0;
}
.imsg__app {
  margin: 1px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: rgba(235,235,245,0.78);
  line-height: 1.25;
}
.imsg__preview {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 400;
  color: rgba(235,235,245,0.78);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* legacy aliases kept so older markup doesn't break */
.phone-banner { display: none; }

.appt-block {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(230,217,194,0.45);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px auto 0;
  max-width: 480px;
  text-align: center;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 15px;
}
.appt-block code {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #fff;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hr-gold {
  border: none;
  border-top: 3px solid var(--leather);
  margin: 28px auto 0;
  max-width: 640px;
}
