:root {
  --tm-teal: #009590;
  --tm-teal-dark: #0B6D6A;
  --tm-teal-tint: #DDF4F2;
  --tm-teal-soft: #F2FBFA;
  --score-red: #D63A3A;
  --score-red-tint: #F9E1E1;
  --master-green: #2D8542;
  --master-green-tint: #E4F0E6;
  --couple-blue: #2F6383;
  --couple-blue-tint: #E3EDF4;
  --ink: #162020;
  --charcoal: #344141;
  --soft-gray: #6E7C7B;
  --white: #FFFFFF;
  --cream: #FFF6E0;
  --mist: #E8F0EF;
  --warm-sand: #F6EAD2;
  --blush: #F7D7D7;
  --sage: #DDEBDF;
  --dusty-blue: #DCE8EF;
  --line: rgba(0, 0, 0, 0.06);
  --line-soft: rgba(0, 149, 144, 0.08);
  --shadow-sm: 0 8px 24px rgba(18, 34, 34, 0.06);
  --shadow-md: 0 14px 40px rgba(18, 34, 34, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 34, 34, 0.10);
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-2xl: 38px;
  --max-width: 1200px;
  --header-height: 78px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-white {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-mist {
  background: linear-gradient(180deg, #FBFEFE 0%, #F4FBFB 100%);
}

.section-divider-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0, 149, 144, 0.10), transparent);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tm-teal-dark);
}

.eyebrow-score {
  color: var(--score-red);
}

.accent-hand {
  display: inline-block;
  font-family: 'Shantell Sans', cursive;
  font-size: 1.06rem;
  color: var(--tm-teal-dark);
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.1;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
}

h3 {
  font-size: 1.22rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 1rem;
}

.lead {
  font-size: 1.13rem;
  color: var(--charcoal);
  max-width: 720px;
}

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

.section-intro {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.btn-row,
.download-row,
.chip-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--tm-teal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--tm-teal-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--tm-teal);
  border-color: var(--tm-teal);
}

.btn-secondary:hover {
  background: var(--tm-teal-tint);
}

.btn-score {
  background: transparent;
  color: var(--score-red);
  border-color: var(--score-red);
}

.btn-score:hover {
  background: var(--score-red-tint);
}

.btn-light {
  background: var(--white);
  color: var(--tm-teal);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.store-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-copy small {
  font-size: 0.72rem;
  opacity: 0.8;
  font-weight: 500;
}

.store-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--tm-teal-dark);
}

.desktop-cta {
  flex-shrink: 0;
}

.desktop-cta .site-chrome-download {
  white-space: nowrap;
}

.mobile-panel__cta {
  padding-top: 14px;
}

.mobile-panel__cta .site-chrome-download {
  width: 100%;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,149,144,0.12), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(214,58,58,0.08), transparent 24%),
    linear-gradient(180deg, #FFFDF7 0%, #FFFFFF 100%);
}

.hero-score {
  background:
    radial-gradient(circle at 92% 10%, rgba(214,58,58,0.08), transparent 24%),
    radial-gradient(circle at 8% 12%, rgba(0,149,144,0.08), transparent 28%),
    linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 100%);
}

.bg-orb,
.bg-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.32;
}

.bg-orb-teal {
  background: radial-gradient(circle, rgba(0,149,144,0.18), transparent 70%);
  top: -30px;
  left: -40px;
}

.bg-orb-red {
  background: radial-gradient(circle, rgba(214,58,58,0.14), transparent 70%);
  right: -40px;
  top: 20px;
}

.bg-butterfly {
  width: 180px;
  height: 180px;
  right: 8%;
  bottom: -20px;
  opacity: 0.08;
  transform: rotate(-12deg);
}

.bg-butterfly::before,
.bg-butterfly::after {
  content: "";
  position: absolute;
  border-radius: 46% 54% 52% 48% / 42% 44% 56% 58%;
  background: var(--tm-teal);
}

.bg-butterfly::before {
  width: 78px;
  height: 78px;
  left: 0;
  top: 22px;
  box-shadow:
    88px -10px 0 0 var(--tm-teal),
    24px 82px 0 0 var(--tm-teal),
    102px 72px 0 0 rgba(214,58,58,0.9);
}

.bg-butterfly::after {
  display: none;
}

.hero-grid,
.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.hero-copy .btn-row {
  margin: 26px 0 18px;
}

.hero-micro {
  color: var(--soft-gray);
  font-size: 0.94rem;
  margin-top: 12px;
}

.hero-media {
  position: relative;
}

.photo-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.14));
}

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

.hero-photo {
  aspect-ratio: 4 / 4.5;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.card-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,149,144,0.14), rgba(255,255,255,0.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.comparison-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFFFF 100%);
  border: 1px solid var(--line-soft);
}

.comparison-block {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.comparison-block:first-of-type {
  border-top: 0;
}

.floating-score {
  position: absolute;
  left: -24px;
  bottom: 22px;
  width: 290px;
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.score-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tm-teal-dark);
  background: var(--tm-teal-tint);
  padding: 7px 12px;
  border-radius: 999px;
}

.score-shell {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F9 100%);
  border: 1px solid rgba(214,58,58,0.10);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.score-ring-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0 12px;
}

.score-ring {
  --size: 112px;
  --track: #f1f1f1;
  --fill: var(--tm-teal);
  --value: 82;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(var(--fill) calc(var(--value) * 1%), var(--track) 0);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.score-ring::after {
  content: "";
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.score-ring-value {
  position: absolute;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--tm-teal-dark);
}

.score-number {
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 800;
  color: var(--tm-teal);
  margin-bottom: 8px;
}

.score-desc {
  font-size: 0.93rem;
  color: var(--soft-gray);
  margin-bottom: 14px;
}

.score-list,
.metric-box {
  display: grid;
  gap: 10px;
}

.score-item,
.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.score-item strong {
  color: var(--tm-teal-dark);
  font-weight: 700;
}

.bar {
  flex: 1;
  height: 8px;
  background: #F2F2F2;
  border-radius: 999px;
  overflow: hidden;
  max-width: 180px;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--tm-teal);
  border-radius: 999px;
}

.section-grid-4,
.benefit-grid,
.factor-grid,
.audience-grid,
.steps-grid,
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.three-grid,
.pillars-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pillars-grid {
  grid-template-columns: repeat(3, 1fr);
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--tm-teal-tint);
  color: var(--tm-teal-dark);
  font-weight: 700;
}

.chip-row {
  margin: 18px 0;
}

.chip,
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.chip {
  background: var(--tm-teal-tint);
  color: var(--tm-teal-dark);
}

.pill {
  background: var(--tm-teal-tint);
  color: var(--tm-teal-dark);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tm-teal);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.quote-block,
.quote-strip {
  background: linear-gradient(135deg, #FFF9E9 0%, #FFFFFF 100%);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.quote-strip {
  border: 1px solid rgba(214,58,58,0.08);
  max-width: 920px;
  margin: 0 auto;
}

.quote-hand {
  font-family: 'Shantell Sans', cursive;
  color: var(--tm-teal-dark);
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.quote-text {
  font-size: 1.06rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.score-preview-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FFFE 100%);
  border: 1px solid var(--line-soft);
}

.product-logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.tag-score {
  background: var(--blush);
  color: var(--score-red);
}

.tag-master {
  background: var(--sage);
  color: var(--master-green);
}

.tag-couple {
  background: var(--dusty-blue);
  color: var(--couple-blue);
}

.pillar-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--tm-teal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pillar-score {
  border-top-color: var(--score-red);
}

.pillar-master {
  border-top-color: var(--master-green);
}

.pillar-couple {
  border-top-color: var(--couple-blue);
}

.status {
  font-size: 0.82rem;
  color: var(--soft-gray);
  font-weight: 600;
  margin-top: 10px;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.benefit-item,
.id-step {
  padding: 15px 16px;
  border-radius: 18px;
  background: #FCFEFE;
  border: 1px solid var(--line-soft);
}

.id-steps {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.support-line {
  margin-top: 18px;
  font-size: 0.94rem;
  color: var(--soft-gray);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 20px 22px;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--charcoal);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 46px;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
}

.cta-band h2,
.cta-band p,
.cta-band .accent-hand {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-band .btn-row,
.cta-band .download-row {
  position: relative;
  z-index: 1;
}

.cta-band-teal {
  background: linear-gradient(135deg, var(--tm-teal) 0%, #0FAAA4 100%);
}

.cta-band-red {
  background: linear-gradient(135deg, var(--score-red) 0%, #E45757 100%);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  transition: var(--transition);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: rgba(0,149,144,0.45);
  box-shadow: 0 0 0 4px rgba(0,149,144,0.10);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.helper-text {
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
}

.blog-image img,
.blog-image .blog-image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--soft-gray);
  margin-bottom: 12px;
}

.blog-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--tm-teal-tint);
  color: var(--tm-teal-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.article-shell {
  max-width: 820px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 34px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--soft-gray);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.article-feature {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 28px 0 34px;
  aspect-ratio: 16 / 8;
  background: #ddd;
}

.article-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  color: var(--charcoal);
}

.prose h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.prose h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote {
  margin-bottom: 18px;
}

.resources-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 8px;
}

.resources-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.resources-tab:hover,
.resources-tab.is-active {
  background: var(--tm-teal);
  color: var(--white);
}

.resources-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 24px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.resources-featured__media {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #ddd;
}

.resources-featured__media img,
.resources-featured__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.resources-featured__placeholder,
.blog-image-placeholder {
  background:
    linear-gradient(135deg, rgba(0, 128, 128, 0.12), rgba(0, 128, 128, 0.04)),
    #e8f3f3;
}

.resources-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px;
}

.resources-featured__body h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.resources-featured__body h2 a {
  color: inherit;
}

.resources-featured__subtitle {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tm-teal-dark);
}

.resources-featured__excerpt {
  margin: 0 0 16px;
  color: var(--soft-gray);
}

.resources-card-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.breadcrumbs {
  margin-bottom: 22px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--soft-gray);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #c5c5c5;
}

.breadcrumbs a {
  color: var(--tm-teal-dark);
}

.article-subtitle {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--soft-gray);
}

.resources-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.08), rgba(0, 128, 128, 0.02));
  box-shadow: var(--shadow-md);
}

.resources-newsletter h2 {
  margin: 8px 0 10px;
}

.resources-newsletter p {
  margin: 0;
  color: var(--soft-gray);
  max-width: 560px;
}

.resources-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.resources-pagination__status {
  font-size: 0.92rem;
  color: var(--soft-gray);
}

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

.resources-search {
  margin: 24px auto 8px;
}

.resources-search__row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto;
}

.resources-search__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.resources-search__input:focus {
  outline: 2px solid rgba(0, 128, 128, 0.35);
  outline-offset: 2px;
}

.resources-search__submit {
  flex-shrink: 0;
}

.resources-search__hint {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--soft-gray);
}

.resources-search__results {
  margin-top: 28px;
  width: 100%;
}

.resources-search__results.blog-grid {
  /* Prefer 2–3 wider cards in the full content width, not the narrow search row */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.article-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 128, 128, 0.1);
  color: var(--tm-teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.author-bio {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 36px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.author-bio__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tm-teal);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.author-bio__label {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.author-bio__name {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.author-bio__role {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--tm-teal-dark);
  font-weight: 600;
}

.author-bio__text {
  margin: 0;
  color: var(--soft-gray);
  line-height: 1.55;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose blockquote {
  margin-left: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--tm-teal);
  background: var(--tm-teal-soft);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
}

.prose a {
  color: var(--tm-teal-dark);
  text-decoration: underline;
}

.footer {
  background: #F8FBFB;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.footer-brand__link {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand__link:hover {
  opacity: 0.92;
}

.footer-col h4 {
  margin: 0 0 14px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
}

.footer-copyright {
  margin: 0;
}

.footer-tagline {
  margin: 0;
  max-width: 22rem;
  line-height: 1.5;
}

.tiny {
  font-size: 0.86rem;
  color: var(--soft-gray);
}

/* Reveal Animations - Progressive Enhancement Safe */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }

.card,
.step-card,
.pillar-card,
.quote-block,
.quote-strip,
.score-shell,
.floating-score,
.blog-card,
.form-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover,
.step-card:hover,
.quote-block:hover,
.score-shell:hover,
.form-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

section[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .section-grid-4,
  .benefit-grid,
  .factor-grid,
  .audience-grid,
  .steps-grid,
  .four-grid,
  .three-grid,
  .pillars-grid,
  .footer-grid,
  .blog-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .resources-featured {
    grid-template-columns: 1fr;
  }

  .resources-search__row {
    flex-direction: column;
  }

  .resources-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links,
  .desktop-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .floating-score {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .score-ring-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 44px 0 74px;
  }

  .logo img {
    height: 36px;
  }

  .card,
  .step-card,
  .pillar-card,
  .quote-block,
  .quote-strip,
  .score-shell,
  .form-card,
  .blog-body {
    padding: 22px;
  }

  .cta-band {
    padding: 28px;
    border-radius: 28px;
  }

  .store-badge {
    width: 100%;
  }

  .bg-butterfly {
    display: none;
  }
}