/* Home conversion layer: production CSS, no Tailwind runtime dependency. */

.home-page {
  overflow-x: clip;
  background: #f8fafc;
  color: #0f172a;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  min-width: 0;
}

.home-shell {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.home-alert-wrap {
  padding: 1.25rem 0;
}

.home-alert {
  border: 1px solid #a7f3d0;
  border-radius: 1rem;
  background: #ecfdf5;
  color: #065f46;
  padding: 1rem 1.25rem;
  font-weight: 700;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #07111f;
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(20, 184, 166, 0.24), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(2, 6, 23, 0), rgba(15, 23, 42, 0.82));
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.home-hero__copy {
  display: grid;
  min-width: 0;
  gap: 1.5rem;
}

.home-eyebrow,
.home-kicker {
  margin: 0;
  color: #059669;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 0.65rem 1rem;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

.home-eyebrow span {
  flex: 0 0 0.62rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #34d399;
}

.home-hero h1,
.home-section h2,
.home-lead h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.03;
}

.home-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
}

.home-hero__lead {
  max-width: min(42rem, 100%);
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.home-price-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.85rem 1rem;
}

.home-price-strip strong,
.home-product-price,
.book-price {
  color: #059669;
  font-weight: 900;
  line-height: 1;
}

.home-price-strip strong {
  color: #34d399;
  font-size: clamp(3rem, 7vw, 5rem);
}

.home-price-strip span {
  max-width: min(20rem, 100%);
  padding-bottom: 0.55rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-actions,
.book-buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.home-actions--center {
  justify-content: center;
}

.home-btn,
.book-buy-links a {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.home-btn:hover,
.book-buy-links a:hover {
  transform: translateY(-1px);
}

.home-btn:focus-visible,
.book-buy-links a:focus-visible,
.lead-form-submit:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.4);
  outline-offset: 3px;
}

.home-btn--primary,
.home-btn--product,
.btn-gumroad {
  background: #10b981;
  color: #03140f;
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.24);
}

.home-btn--primary:hover,
.home-btn--product:hover,
.btn-gumroad:hover {
  background: #34d399;
}

.home-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-btn--secondary-light,
.home-btn--secondary-dark {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
}

.home-btn--secondary-dark {
  background: #0f172a;
  color: #fff;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.home-stats div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.home-stats dt {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-stats dd {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 900;
}

.home-cover {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.08), rgba(255, 255, 255, 0.72)),
    #e2e8f0;
}

.home-cover img,
.cover-frame img,
.cover-img,
.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.testimonial-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-cover--hero {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  aspect-ratio: auto;
  min-height: 0;
  border-radius: 1.75rem;
  padding: clamp(0.75rem, 2vw, 1rem);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.home-cover--hero img {
  width: 100%;
  height: auto;
  max-height: min(62vh, 42rem);
  border-radius: 1.15rem;
  background: #f8fafc;
}

.home-cover--hero figcaption {
  display: grid;
  gap: 0.35rem;
  border-radius: 1.1rem;
  background: rgba(2, 6, 23, 0.92);
  color: #fff;
  padding: 1.1rem;
}

.home-cover--hero span,
.home-product-card__badge {
  color: #34d399;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-cover--hero strong {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.1;
}

.home-cover--hero em {
  color: #34d399;
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: normal;
  font-weight: 900;
}

.home-cover--hero small {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.home-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-section--white {
  background: #fff;
}

.home-section--dark {
  background: #07111f;
  color: #fff;
}

.home-section__header {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-section__header h2,
.home-lead h2 {
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
}

.home-section__header p:not(.home-kicker),
.home-lead p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-section__header--dark h2,
.home-section__header--dark p:not(.home-kicker),
.home-lead h2,
.home-lead p {
  color: #fff;
}

.home-section__header--dark p:not(.home-kicker),
.home-lead p,
.home-lead li {
  color: #cbd5e1;
}

.home-featured-grid {
  display: grid;
  gap: 1.35rem;
}

.home-product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}

.home-cover--product {
  align-self: stretch;
  aspect-ratio: 2 / 3;
  min-height: 18rem;
  padding: clamp(0.65rem, 2vw, 1rem);
}

.home-cover--product img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  background: #f8fafc;
}

.home-product-card__body {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.home-product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.home-product-card h3 {
  margin: 0.45rem 0 0;
  color: #0f172a;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.home-product-price {
  flex: 0 0 auto;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.home-product-card p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.home-product-card ul,
.home-lead ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-product-card li,
.home-lead li {
  position: relative;
  padding-left: 1.55rem;
}

.home-product-card li::before,
.home-lead li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #10b981;
}

.home-product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.home-product-proof span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border: 1px solid #dbe7ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.home-product-proof .status {
  position: relative;
  border-color: rgba(16, 185, 129, 0.2);
  background: #ecfdf5;
  color: #047857;
  box-shadow: none;
  transform: none;
}

.home-product-proof .status::before {
  content: none;
}

.home-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-product-actions .home-btn {
  flex: 1 1 11rem;
}

.home-inline-cta,
.home-final-cta,
.about-panel,
.guide-panel {
  border: 1px solid #dbe7ef;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.home-inline-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.home-inline-cta p,
.home-final-cta p,
.about-panel p,
.guide-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.home-final-cta {
  display: grid;
  gap: 1.2rem;
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.home-final-cta h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.about-hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-identity {
  overflow: hidden;
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(148, 220, 255, 0.2);
  border-radius: 1.5rem;
  background: #020617;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.about-identity img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.about-identity figcaption {
  display: grid;
  gap: 0.65rem;
  border-top: 1px solid rgba(148, 220, 255, 0.18);
  background: rgba(2, 6, 23, 0.94);
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

.about-identity h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.about-identity p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.about-panel,
.guide-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.about-panel {
  background: rgba(255, 255, 255, 0.95);
}

.about-panel h2,
.guide-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.home-benefit-grid,
.home-testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.home-benefit-grid article,
.home-testimonial-grid article {
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: #f8fafc;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.home-benefit-grid span {
  color: #059669;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-benefit-grid h3 {
  margin: 1rem 0 0.65rem;
  color: #0f172a;
  font-size: 1.45rem;
}

.home-benefit-grid p,
.home-testimonial-grid p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.home-testimonial-grid article {
  background: #fff;
}

.home-testimonial-grid article > div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.home-testimonial-grid img,
.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #e2e8f0;
}

.home-testimonial-grid strong,
.home-testimonial-grid small {
  display: block;
}

.home-testimonial-grid strong {
  color: #0f172a;
}

.home-testimonial-grid small {
  color: #64748b;
}

.home-section--proof {
  background:
    radial-gradient(circle at 8% 4%, rgba(20, 184, 166, 0.12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(37, 99, 235, 0.1), transparent 30%),
    #f8fafc;
}

.home-section--proof .home-section__header {
  max-width: min(100%, 52rem);
}

.home-section--proof .home-section__header h2,
.home-section--proof .home-section__header p:not(.home-kicker) {
  margin-inline: auto;
}

.home-proof-strip {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-proof-strip--trust {
  margin-bottom: 0;
}

.home-proof-strip--snapshot {
  margin-bottom: 1.25rem;
}

.home-proof-stat {
  min-width: 0;
  border: 1px solid #dbe7ef;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(1.15rem, 2.4vw, 1.5rem);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.home-proof-stat p,
.home-proof-stat strong,
.home-proof-stat span {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.home-proof-stat p {
  margin: 0 0 0.45rem;
  color: #059669;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-proof-stat strong {
  color: #0f172a;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.1;
}

.home-proof-strip--trust .home-proof-stat strong {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.home-proof-stat span {
  margin-top: 0.55rem;
  color: #475569;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.home-testimonial-card {
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 1.35rem;
}

.home-testimonial-card > .home-testimonial-card__top,
.home-testimonial-card > .home-testimonial-author {
  display: flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

.home-testimonial-card > .home-testimonial-card__top {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.home-testimonial-card > .home-testimonial-author {
  gap: 0.85rem;
  margin-top: auto;
}

.home-testimonial-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.home-stars {
  flex: 0 0 auto;
  color: #059669;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.home-review-avatar {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #0f172a, #0f766e);
  color: #ecfdf5;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.home-review-avatar img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-review-avatar__fallback {
  position: relative;
  z-index: 0;
}

.home-testimonial-card p {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-testimonial-author > span:last-child {
  min-width: 0;
}

.home-lead {
  background: #07111f;
}

.home-lead__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.home-lead__copy {
  display: grid;
  gap: 1rem;
}

.lead-form-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 42, 0.74));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.lead-form-kicker {
  margin: 0;
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-form-intro {
  margin: 0.5rem 0 0;
  color: #cbd5e1;
}

.lead-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.lead-form__row {
  display: grid;
  gap: 1rem;
}

.lead-form-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form-label span:not(.lead-form-required) {
  color: #94a3b8;
  font-weight: 500;
}

.lead-form-required {
  color: #ef4444;
  font-weight: 900;
  margin-left: 0.15rem;
}

.lead-form-input,
.lead-form-select,
.lead-form-textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(2, 6, 23, 0.78);
  color: #f8fafc;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form-input::placeholder,
.lead-form-textarea::placeholder {
  color: #94a3b8;
}

.lead-form-input:focus,
.lead-form-select:focus,
.lead-form-textarea:focus {
  outline: none;
  border-color: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}

.lead-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
}

.lead-form-textarea {
  min-height: 7rem;
  resize: vertical;
}

.lead-form-alert {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-form-alert--success {
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #d1fae5;
}

.lead-form-alert--error {
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.lead-form-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.lead-form-download:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-1px);
}

.lead-form-submit {
  width: 100%;
  min-height: 3.25rem;
  border: 0;
  border-radius: 999px;
  background: #34d399;
  color: #03140f;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.95rem 1.5rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.lead-form-submit:hover {
  background: #6ee7b7;
  transform: translateY(-1px);
}

.lead-form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.lead-form-privacy {
  margin: 0;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.6;
}

.lead-form-privacy a {
  color: #d1fae5;
  text-decoration: underline;
}

.book-grid {
  align-items: stretch;
}

.book-card {
  overflow: hidden;
}

.book-price {
  margin: 0.25rem 0 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.book-buy-links {
  margin-top: auto;
}

.book-buy-links a {
  flex: 1 1 11rem;
}

.btn-secondary {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: #0f172a;
}

@media (min-width: 720px) {
  .home-featured-grid,
  .home-benefit-grid,
  .home-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-proof-strip--trust,
  .home-proof-strip--snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (min-width: 960px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.76fr);
  }

  .about-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
  }

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

  .home-product-card {
    grid-template-columns: minmax(12rem, 0.78fr) minmax(0, 1fr);
  }

  .home-cover--product {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-benefit-grid,
  .home-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-proof-strip--trust,
  .home-proof-strip--snapshot {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-lead__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 0.8fr);
  }

}

@media (max-width: 719px) {
  .home-shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .home-hero {
    padding-top: 3rem;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.4rem);
  }

  .home-actions {
    display: grid;
  }

  .home-eyebrow {
    display: block;
    width: 100%;
    border-radius: 1rem;
    line-height: 1.4;
  }

  .home-eyebrow span {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-cover--hero {
    min-height: 22rem;
  }

  .home-product-card__top {
    display: grid;
  }

  .home-product-actions {
    display: grid;
  }

  .home-product-actions .home-btn {
    width: 100%;
  }

  .about-identity {
    border-radius: 1.1rem;
  }

  .about-identity figcaption {
    padding: 1.1rem;
  }

  .home-section--proof .home-section__header h2 {
    max-width: 13ch;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .home-section--proof .home-section__header p:not(.home-kicker) {
    max-width: 32ch;
  }

  .home-proof-stat,
  .home-testimonial-card {
    border-radius: 1rem;
    padding: 1.15rem 1.65rem 1.15rem 1.15rem;
  }

  .home-stars {
    width: 100%;
    letter-spacing: 0.08em;
  }

  .home-proof-strip,
  .home-testimonial-grid {
    width: min(calc(100% - 2.25rem), 22rem);
    margin-inline: auto;
  }

  .home-proof-stat span,
  .home-testimonial-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-btn,
  .book-buy-links a,
  .lead-form-submit {
    transition: none;
  }
}
