/* ColdApproach.AI website styles. No frameworks. One self-hosted display font (Barlow Condensed, OFL). */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/barlow-condensed-800.woff2") format("woff2");
}

/* Same width as Barlow Condensed so the swap does not move the layout. */
@font-face {
  font-family: "Barlow Condensed Fallback";
  src: local("Helvetica Neue"), local("Roboto"), local("Arial");
  size-adjust: 68%;
  font-weight: 800;
}

:root {
  --bg: #1C1D20;
  --card: #26272B;
  --card-2: #2C2D32;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.14);
  --gold: #F8D96B;
  --gold-deep: #FDB21F;
  --gold-dim: rgba(248, 217, 107, 0.16);
  --text: #FFFFFF;
  --body: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.62);
  --danger: #CD2653;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Barlow Condensed", "Barlow Condensed Fallback", sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1120px;
  --pad: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 12px;
    scroll-padding-bottom: 96px;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.1;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* Wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wordmark .ai {
  color: var(--gold);
}

.wordmark svg {
  width: 40px;
  height: 22px;
  fill: var(--gold);
  flex: none;
}

/* Nav */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(28, 29, 32, 0.92);
}

.nav-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px var(--pad);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a:not(.btn) {
  color: var(--body);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
}

.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-links .btn-gold,
.nav-links .btn-gold:hover {
  color: var(--bg);
}

.nav-links .btn {
  padding: 9px 18px;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .nav-links li:not(.nav-cta) {
    display: none;
  }

  .nav-links .btn {
    white-space: nowrap;
    padding: 9px 14px;
    font-size: 0.85rem;
  }

  .wordmark {
    font-size: 1.05rem;
    gap: 8px;
  }

  .wordmark svg {
    width: 34px;
    height: 19px;
  }

  .figures {
    display: none;
  }
}

@media (max-width: 380px) {
  .wordmark svg {
    display: none;
  }

  .nav-links .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .nav-links {
    flex-wrap: nowrap;
    gap: 6px 14px;
  }

  .nav-links a:not(.btn) {
    font-size: 0.88rem;
  }
}

@media (min-width: 768px) {
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    justify-content: flex-end;
    gap: 6px 26px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-disabled {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--border-strong);
  cursor: not-allowed;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: none;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.store-row .app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  flex: none;
}

/* Sections */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 0.96;
  font-size: clamp(2.9rem, 6.4vw, 4.8rem);
  margin-bottom: 0.4em;
  text-wrap: balance;
}

@media (max-width: 599px) {
  .h1 {
    font-size: clamp(2.05rem, 10.3vw, 2.9rem);
  }
}

.h1 .gold {
  color: var(--gold);
}

.h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  text-wrap: balance;
}

.h3 {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.lead {
  font-size: 1.15rem;
  color: var(--body);
  max-width: 560px;
}

.small {
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  isolation: isolate;
}

/* Gold dust: three tiled layers of tiny dots, faded by a mask. CSS only. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(248, 217, 107, 0.6) 0.9px, transparent 1.5px),
    radial-gradient(circle, rgba(248, 217, 107, 0.4) 0.8px, transparent 1.3px),
    radial-gradient(circle, rgba(253, 178, 31, 0.35) 0.7px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.25) 0.6px, transparent 1.1px);
  background-size: 97px 83px, 61px 71px, 43px 53px, 131px 109px;
  background-position: 0 0, 23px 17px, 11px 37px, 51px 9px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 10%, transparent 75%);
  opacity: 0.9;
}

@media (max-width: 767px) {
  .hero {
    padding: 32px 0 56px;
  }
}

/* A warm glow behind the hero. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(248, 217, 107, 0.09), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    padding: 80px 0 96px;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

.byline {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

/* Hero figures: walking man and standing woman, lit from above. */
.figures {
  position: relative;
  width: 150px;
  height: 92px;
  margin: 0 0 22px;
}

.figures::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  width: 260px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(248, 217, 107, 0.34), rgba(248, 217, 107, 0.06) 55%, transparent 75%);
  pointer-events: none;
}

.figures svg {
  position: relative;
  width: 150px;
  height: 78px;
  fill: var(--gold);
  filter: drop-shadow(0 0 14px rgba(248, 217, 107, 0.4));
}

.figures .floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(248, 217, 107, 0.55), transparent);
}

.hero .lead {
  margin-bottom: 26px;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Phone frame */
.phone {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 44px;
  background: #0B0B0D;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 6px rgba(255, 255, 255, 0.02),
    0 0 60px rgba(248, 217, 107, 0.08);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  background: var(--bg);
}

.phone-sm {
  max-width: 260px;
}

.hero-phone {
  position: relative;
}

.hero-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(248, 217, 107, 0.14), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.grid-3 {
  display: grid;
  gap: 18px;
}

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

.step-num {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(248, 217, 107, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.card p:last-child {
  margin-bottom: 0;
}

/* See it work */
.shots {
  display: grid;
  gap: 40px;
  justify-items: center;
}

@media (min-width: 768px) {
  .shots {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.shot {
  text-align: center;
  width: 100%;
}

.shot figcaption {
  margin: 18px auto 0;
  max-width: 320px;
  color: var(--body);
  font-size: 0.98rem;
}

.shot figcaption strong {
  color: var(--gold);
}

/* Coach */
.coach-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .coach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.coach-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.coach-facts li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.coach-facts li:last-child {
  border-bottom: 1px solid var(--border);
}

.coach-facts strong {
  color: var(--text);
}

/* Video: click-to-play poster, nothing loads from YouTube before the click. */
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  padding: 24px;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  background: var(--card);
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.85), rgba(12, 12, 14, 0.25) 60%, rgba(12, 12, 14, 0.1));
}

.video-poster:hover .video-thumb img {
  opacity: 0.85;
  transform: scale(1.02);
}

.video-poster > .play,
.video-poster > .video-title,
.video-poster > .video-sub {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.video-poster:hover .play {
  background: var(--gold-deep);
  transform: scale(1.05);
}

/* Focus ring drawn inside the button: the .video box clips overflow, so an
   outside ring would be invisible. Same radius as the card so it follows the corners. */
.video-poster {
  border-radius: var(--radius);
}

.video-poster:focus-visible {
  outline-offset: -4px;
}

.play {
  flex: none;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background-color 0.15s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--bg);
}

.video-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}

.video-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.video-links {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.video-links a {
  display: inline-block;
  padding: 8px 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.best {
  border-color: rgba(248, 217, 107, 0.45);
  box-shadow: 0 0 0 1px rgba(248, 217, 107, 0.2), 0 20px 60px rgba(0, 0, 0, 0.35);
}

.badge {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan-name {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.price {
  color: var(--text);
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.price small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.trial {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  margin: 8px 0 16px;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.plan-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid var(--border);
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.allowance {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}

/* FAQ */
.faq {
  max-width: 820px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  font-size: 1.05rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details > div {
  padding: 0 22px 20px;
}

.faq details > div p:last-child {
  margin-bottom: 0;
}

/* Accelerator */
.accelerator {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(248, 217, 107, 0.12), transparent 70%),
    var(--card);
  border: 1px solid rgba(248, 217, 107, 0.25);
  border-radius: var(--radius);
  padding: 40px 28px;
}

@media (min-width: 768px) {
  .accelerator {
    padding: 56px 48px;
  }
}

.accelerator .lead {
  max-width: 640px;
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.link-gold:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* Get the app band */
.get {
  text-align: center;
}

.get .store-row {
  justify-content: center;
  margin-top: 24px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  display: inline-block;
  padding: 10px 0;
  color: var(--body);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Legal and support pages */
.legal {
  padding: 48px 0 80px;
}

.legal h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.4rem, 5.6vw, 3.6rem);
}

.legal h2 {
  font-weight: 800;
  font-size: 1.35rem;
  margin-top: 2.2em;
  letter-spacing: 0.01em;
}

.legal h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.6em;
}

.legal ul,
.legal ol {
  padding-left: 1.3em;
}

.legal li {
  margin-bottom: 0.5em;
}

.legal .effective {
  color: var(--muted);
  margin-bottom: 2em;
}

.legal .summary-box {
  background: var(--card);
  border: 1px solid rgba(248, 217, 107, 0.25);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0 8px;
}

.legal .summary-box h2 {
  margin-top: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.legal .summary-box ul {
  margin-bottom: 0;
}

.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--card-2);
  padding: 2px 6px;
  border-radius: 6px;
}

.steps-list li {
  margin-bottom: 0.8em;
}

.steps-list strong {
  color: var(--text);
}

/* Helpers */
.gold {
  color: var(--gold);
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

/* Official store badges (artwork unaltered, same 48px height). */
.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.badges.android-first [data-store="google"] {
  order: -1;
}

.get .badges {
  justify-content: center;
}

.store-badge {
  position: relative;
  display: inline-block;
  line-height: 0;
  border-radius: 9px;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge img {
  height: 44px;
  width: auto;
}

.store-badge:hover {
  transform: translateY(-1px);
}

.badges-label {
  order: -2;
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.get .badges-label {
  text-align: center;
}

/* Voice sample */
.demo {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

@media (min-width: 900px) {
  .demo {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
  }
}

.demo > * {
  min-width: 0;
}

.demo-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bubble {
  margin: 0;
  background: var(--card-2);
  border: 1px solid var(--border-strong);
  border-radius: 20px 20px 20px 6px;
  padding: 18px 20px;
  color: var(--text);
  font-size: 1.05rem;
}

.player {
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(ellipse 70% 90% at 0% 50%, rgba(248, 217, 107, 0.14), transparent 70%),
    var(--card);
  border: 1px solid rgba(248, 217, 107, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.player-btn {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(248, 217, 107, 0.12), 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.player-btn:hover {
  background: var(--gold-deep);
  transform: scale(1.04);
}

.icon-play {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--bg);
}

.is-playing .icon-play {
  margin-left: 0;
  width: 18px;
  height: 22px;
  border: 0;
  border-left: 6px solid var(--bg);
  border-right: 6px solid var(--bg);
}

.player-body {
  flex: 1;
  min-width: 0;
}

.bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

.bars:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 420px) {
  .bars {
    gap: 2px;
  }

  .player {
    gap: 14px;
    padding: 16px;
  }
}

.bars span {
  flex: 1;
  min-width: 1px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: background-color 0.2s ease;
}

.bars span.on {
  background: var(--gold);
}

.player-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.transcript {
  margin-top: 14px;
}

.transcript summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.transcript p {
  margin: 12px 0 0;
  color: var(--body);
  font-size: 0.98rem;
}

/* Persona cards */
.persona .h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.persona p {
  margin: 0 0 14px;
}

.persona .coach {
  color: var(--text);
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  margin: 0;
}

/* Comparison */
.compare {
  max-width: 980px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  border-top: 1px solid var(--border);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > span {
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--body);
}

.compare-row > span[role="rowheader"] {
  color: var(--text);
  font-weight: 700;
}

.compare-head > span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare .us {
  background: rgba(248, 217, 107, 0.08);
  color: var(--text);
}

.compare-head .us {
  color: var(--gold);
}

.compare .yes::before,
.compare .no::before {
  display: inline-block;
  width: 1.2em;
  font-weight: 800;
}

.compare .yes::before {
  content: "\2713";
  color: var(--gold);
}

.compare .no::before {
  content: "\2013";
  color: var(--muted);
}

@media (max-width: 700px) {
  .compare-row {
    grid-template-columns: 1fr 1.3fr 1fr;
  }

  .compare-row > span[role="rowheader"] {
    grid-column: 1 / -1;
    padding-bottom: 0;
  }

  .compare-head > span:first-child {
    display: none;
  }

  .compare-row > span {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .compare-head > span {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
}

/* Pricing extras */
.price-sub {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 10px 0 18px;
}

.price-sub strong {
  color: var(--gold);
}

/* Sticky phone button */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(28, 29, 32, 0.94);
  border-top: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta.is-shown {
  transform: none;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Small screens */
@media (max-width: 420px) {
  body {
    font-size: 1rem;
  }

  .card {
    padding: 22px;
  }

  .phone {
    max-width: 280px;
    border-radius: 38px;
    padding: 8px;
  }

  .phone img {
    border-radius: 30px;
  }

  .store-row .btn {
    width: 100%;
  }

  .store-row .app-icon {
    display: none;
  }

  /* Video poster: smaller circle and text so everything fits in the 16:9 box. */
  .video-poster {
    padding: 16px;
    gap: 6px;
  }

  .play {
    width: 56px;
    height: 56px;
  }

  .play::after {
    margin-left: 5px;
    border-width: 11px 0 11px 18px;
  }

  .video-title {
    font-size: 1rem;
    margin-top: 6px;
  }

  .video-sub {
    font-size: 0.82rem;
  }
}

/* Waitlist (coming-soon mode) */
.waitlist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.get .waitlist {
  margin: 0 auto;
  justify-content: center;
}

.waitlist input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}

.waitlist input::placeholder {
  color: var(--muted);
}

.waitlist input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: transparent;
}

.waitlist .btn {
  flex: 1 0 auto;
}

.waitlist .btn:disabled {
  cursor: default;
  opacity: 0.85;
}

.waitlist.is-done .btn {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: rgba(248, 217, 107, 0.5);
}

.form-note {
  flex-basis: 100%;
  margin: 2px 0 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.get .form-note {
  text-align: center;
  margin-left: 0;
}

.waitlist.has-error input {
  border-color: #FF7A8A;
}

.waitlist.has-error .form-note {
  color: #FF9AA7;
}

@media (max-width: 420px) {
  .waitlist .btn {
    width: 100%;
  }
}

/* Button after the voice sample */
.hear-cta {
  margin: 20px 0 0;
}

/* Footer fine print */
.footer-copy {
  margin: 0;
}

.footer-fine {
  margin: 18px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Print: legal pages on paper */
@media print {
  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
  }

  h1, h2, h3, h4, .legal h1, .legal h2, .legal h3, .coach-facts strong, .steps-list strong {
    color: #000;
  }

  a {
    color: #000;
  }

  .nav, .sticky-cta, .skip-link, .footer-links, .hero::before, .hero::after {
    display: none !important;
  }

  .legal .summary-box, .legal code {
    background: #fff;
    border-color: #999;
    color: #111;
  }

  .legal .effective {
    color: #444;
  }

  .lead, .muted, .footer, .footer-copy, .footer-fine, .eyebrow, .byline, .legal .summary-box h2, .legal p, .legal li {
    color: #111 !important;
  }
}
