.home-v6 {
  font-family: var(--font-v6-body);
  color: var(--color-v6-ink);
  background: var(--color-v6-cream);
  overflow: hidden;
  --v6-type-hero: clamp(2.5rem, 6vw, 3.625rem);
  --v6-type-section-title: clamp(2rem, 4.5vw, 3rem);
  --v6-type-card-title: clamp(1.35rem, 2.2vw, 1.6rem);
  --v6-type-body-lg: clamp(1rem, 1.6vw, 1.125rem);
  --v6-type-body: 1rem;
  --v6-leading-display: 1.08;
  --v6-leading-heading: 1.14;
  --v6-leading-title: 1.22;
  --v6-leading-body: 1.6;
  --v6-leading-copy: 1.65;
  --v6-leading-meta: 1.35;
}

.v6-section-head {
  margin-bottom: var(--v6-space-head-bottom);
}

.v6-section-head-centered {
  text-align: center;
}

.v6-section-head > * + * {
  margin-top: var(--v6-space-head-gap);
}

.v6-section-head > :last-child {
  margin-bottom: 0;
}

.v6-section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-v6-green);
  margin-bottom: 0.75rem;
}

.v6-product-cta:focus-visible,
.v6-blog-header a:focus-visible,
.v6-blog-card-body h3 a:focus-visible {
  outline: 3px solid var(--color-v6-green-border);
  outline-offset: 3px;
}

.v6-hero {
  padding: var(--v6-space-section-y) 0 var(--v6-space-section-y-tight);
  text-align: center;
}

.v6-hero h1 {
  font-family: var(--font-v6-heading);
  font-weight: 400;
  font-size: var(--v6-type-hero);
  line-height: var(--v6-leading-display);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}

.v6-hero h1 em {
  font-style: italic;
  color: var(--color-v6-green);
}

.v6-hero-copy {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: var(--color-v6-ink-light);
  font-size: var(--v6-type-body-lg);
  line-height: var(--v6-leading-body);
}

.v6-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 26rem;
  margin: 0 auto 1rem;
}

.v6-hero-actions > * {
  width: 100%;
}

.v6-inline-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 520px;
}

.v6-inline-form input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.5rem;
  background: var(--color-v6-cream-light);
  color: var(--color-v6-ink);
  font-family: var(--font-v6-body);
  font-size: 0.9375rem;
  outline: none;
}

.v6-inline-form input::placeholder {
  color: var(--color-v6-ink-muted);
}

.v6-inline-form input:focus {
  box-shadow: 0 0 0 3px var(--color-v6-green-border);
}

.v6-hero-sub {
  font-size: 0.75rem;
  color: var(--color-v6-ink-faint);
  line-height: var(--v6-leading-meta);
  margin: 0;
}

.v6-brush-divider {
  line-height: 0;
}

.v6-brush-divider svg {
  width: 100%;
  height: 44px;
  display: block;
}

.v6-logo-bar {
  padding: 1.5rem 0 1.75rem;
}

.v6-logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.v6-logo-item img {
  max-height: 1.9rem;
  width: auto;
  filter: brightness(0) saturate(100%) contrast(1.08);
  opacity: 0.74;
  transition: opacity 0.2s ease;
}

.v6-logo-item img:hover {
  opacity: 0.9;
}

.v6-testimonials {
  padding: var(--v6-space-section-y-tight) 0 var(--v6-space-section-y);
}

.v6-testimonials .v6-container {
  max-width: min(1680px, calc(100vw - 2rem));
  padding-inline: 1rem;
}

.v6-testimonial-marquee {
  overflow: hidden;
  padding: 0.35rem 0.75rem 0.6rem;
  margin: -0.35rem -0.75rem -0.6rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 1.1%, #000 98.9%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 1.1%, #000 98.9%, transparent);
}

.v6-testimonial-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: var(--animate-v6-testimonial);
}

.v6-testimonial-track:hover {
  animation-play-state: paused;
}

.v6-testimonial-card {
  background: var(--color-v6-cream-light);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 var(--color-v6-ink);
  width: min(320px, calc(100vw - 2.5rem));
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

.v6-testimonial-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-v6-ink);
}

.v6-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.v6-testimonial-avatar-wrap {
  margin-bottom: 0;
}

.v6-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 9999px;
  border: 2px solid var(--color-v6-green);
}

.v6-testimonial-name {
  font-weight: 600;
  color: var(--color-v6-green);
  font-size: 0.95rem;
  line-height: 1.2;
  margin: 0;
}

.v6-testimonial-card blockquote {
  color: var(--color-v6-ink-light);
  font-size: 0.95rem;
  line-height: var(--v6-leading-copy);
  margin: 0;
}

.v6-products {
  padding: var(--v6-space-section-y) 0;
  background: var(--color-v6-cream-warm);
  border-top: 2px solid var(--color-v6-ink);
  border-bottom: 2px solid var(--color-v6-ink);
}

.v6-products h2 {
  font-family: var(--font-v6-heading);
  text-align: center;
  font-weight: 400;
  font-size: var(--v6-type-section-title);
  line-height: var(--v6-leading-heading);
  letter-spacing: -0.01em;
  max-width: 640px;
  margin: 0 auto;
}

.v6-products .v6-section-label {
  text-align: center;
}

.v6-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.v6-product-card {
  background: var(--color-v6-cream-light);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 var(--color-v6-ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.v6-product-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-v6-ink);
}

.v6-product-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: 2px solid var(--color-v6-ink);
  background: #d5cdbc;
}

.v6-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v6-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-v6-cream-light);
  color: var(--color-v6-green);
  border: 1.5px solid var(--color-v6-green);
  border-radius: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v6-product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.v6-product-body h3 {
  font-family: var(--font-v6-heading);
  font-size: var(--v6-type-card-title);
  font-weight: 500;
  line-height: var(--v6-leading-title);
  margin-bottom: 0.75rem;
}

.v6-product-description {
  font-size: var(--v6-type-body);
  color: var(--color-v6-ink-light);
  line-height: var(--v6-leading-copy);
  margin-bottom: 1.25rem;
  flex: 1;
}

.v6-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-v6-green);
}

.v6-product-cta:hover {
  gap: 0.625rem;
}

.v6-brush-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.25rem;
  padding: 2.2rem;
  background: var(--color-v6-cream-light);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 var(--color-v6-ink);
  overflow: hidden;
  align-items: center;
}

.v6-brush-box::before {
  content: "";
  position: absolute;
  inset: auto -12% 12% auto;
  width: 24rem;
  height: 8rem;
  background: linear-gradient(122deg, rgba(45, 106, 79, 0) 0%, rgba(45, 106, 79, 0.1) 32%, rgba(45, 106, 79, 0.16) 44%, rgba(45, 106, 79, 0.06) 62%, rgba(45, 106, 79, 0) 85%);
  transform: rotate(-7deg);
  opacity: 0.9;
}

.v6-brush-box > * {
  position: relative;
  z-index: 1;
}

.v6-brush-box-copy h2 {
  font-family: var(--font-v6-heading);
  font-size: var(--v6-type-section-title);
  font-weight: 400;
  line-height: var(--v6-leading-heading);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.v6-brush-box-copy h2 em {
  color: var(--color-v6-green);
  font-style: italic;
}

.v6-newsletter-copy,
.v6-quiz-desc {
  color: var(--color-v6-ink-light);
  line-height: var(--v6-leading-body);
  margin-bottom: 0;
}

.v6-quiz {
  padding: var(--v6-space-section-y) 0;
}

.v6-quiz-box::before {
  inset: auto -8% 9% auto;
}

.v6-quiz-panel,
.v6-newsletter-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.v6-quiz-desc {
  max-width: 32rem;
  font-size: var(--v6-type-body);
  line-height: var(--v6-leading-copy);
}

.v6-quiz-paths {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
}

.v6-quiz-path {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(226, 219, 208, 0.85);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
}

.v6-quiz-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid var(--color-v6-green);
  color: var(--color-v6-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.v6-quiz-icon-muted {
  border-color: var(--color-v6-ink-faint);
  color: var(--color-v6-ink-faint);
}

.v6-quiz-path-label {
  font-family: var(--font-v6-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}

.v6-quiz-path-desc {
  font-size: 0.75rem;
  color: var(--color-v6-ink-faint);
  line-height: var(--v6-leading-meta);
  text-align: left;
  margin: 0.15rem 0 0;
}

.v6-quiz-vs {
  font-family: var(--font-v6-heading);
  color: var(--color-v6-ink-faint);
  font-size: 1.125rem;
  line-height: 1.1;
  margin: 0;
}

.v6-quiz-cta {
  justify-self: start;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  box-shadow: 4px 4px 0 var(--color-v6-ink);
}

.v6-quiz-sub {
  font-size: 0.8125rem;
  color: var(--color-v6-ink-faint);
  line-height: var(--v6-leading-meta);
  margin: 0;
}

.v6-blog {
  padding: var(--v6-space-section-y) 0;
  border-top: 2px solid var(--color-v6-ink);
  border-bottom: 2px solid var(--color-v6-ink);
}

.v6-blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.v6-blog-header h2 {
  font-family: var(--font-v6-heading);
  font-size: var(--v6-type-section-title);
  font-weight: 400;
  line-height: var(--v6-leading-heading);
  letter-spacing: -0.01em;
  margin: 0;
}

.v6-blog-header a {
  text-decoration: none;
  color: var(--color-v6-green);
  font-size: 0.875rem;
  font-weight: 600;
}

.v6-blog-subtitle {
  color: var(--color-v6-ink-faint);
  line-height: 1.5;
  margin-bottom: 0;
}

.v6-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.v6-blog-card {
  background: var(--color-v6-cream-light);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  box-shadow: 4px 4px 0 var(--color-v6-ink);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.v6-blog-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-v6-ink);
}

.v6-blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 2px solid var(--color-v6-ink);
  background: #d5cdbc;
}

.v6-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v6-blog-card-body {
  padding: 1.25rem;
}

.v6-blog-tag {
  color: var(--color-v6-green);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.v6-blog-card-body h3 {
  font-family: var(--font-v6-heading);
  font-size: var(--v6-type-card-title);
  font-weight: 500;
  line-height: var(--v6-leading-title);
  margin-bottom: 0.5rem;
}

.v6-blog-card-body h3 a {
  text-decoration: none;
  color: var(--color-v6-ink);
}

.v6-blog-card-body h3 a:hover {
  color: var(--color-v6-green);
}

.v6-blog-excerpt {
  color: var(--color-v6-ink-light);
  font-size: var(--v6-type-body);
  line-height: var(--v6-leading-copy);
  margin-bottom: 0.75rem;
}

.v6-blog-meta {
  color: var(--color-v6-ink-faint);
  font-size: 0.75rem;
  line-height: var(--v6-leading-meta);
}

.v6-newsletter {
  padding: var(--v6-space-section-y) 0;
  background: var(--color-v6-cream);
  border-bottom: 2px solid var(--color-v6-ink);
}

.v6-newsletter-box::before {
  inset: auto -10% 16% auto;
}

.v6-newsletter-form {
  max-width: 100%;
}

.v6-newsletter-form input {
  background: #fff;
}

.v6-newsletter-sub {
  margin-top: 0 !important;
  color: var(--color-v6-ink-faint) !important;
  font-size: 0.8125rem !important;
  line-height: var(--v6-leading-meta);
  text-align: left;
}

.v6-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 24, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.v6-modal.hidden {
  display: none;
}

.v6-modal-panel {
  width: 100%;
  max-width: 560px;
  background: var(--color-v6-cream-light);
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.75rem;
  box-shadow: 6px 6px 0 var(--color-v6-ink);
  padding: 2rem;
  position: relative;
}

.v6-modal-close {
  position: absolute;
  top: 0.625rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--color-v6-ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.v6-modal-panel h2 {
  font-family: var(--font-v6-heading);
  font-size: var(--v6-type-section-title);
  font-weight: 400;
  line-height: var(--v6-leading-heading);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.v6-modal-copy {
  color: var(--color-v6-ink-light);
  font-size: var(--v6-type-body);
  line-height: var(--v6-leading-copy);
  margin-bottom: 1.25rem;
}

.v6-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.v6-modal-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-v6-ink);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--color-v6-ink);
  font-family: var(--font-v6-body);
  font-size: 0.95rem;
  outline: none;
}

.v6-modal-form input:focus {
  box-shadow: 0 0 0 3px var(--color-v6-green-border);
}

.v6-modal-form .v6-btn-primary {
  width: 100%;
}

.v6-modal-fine-print {
  font-size: 0.8125rem;
  color: var(--color-v6-ink-faint);
  line-height: var(--v6-leading-meta);
  margin-top: 0.875rem;
}

@media (max-width: 900px) {
  .v6-product-grid,
  .v6-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v6-brush-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .v6-quiz-paths {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .v6-quiz-vs {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .v6-testimonials .v6-container {
    max-width: 100%;
    padding-inline: 0.75rem;
  }

  .v6-hero {
    padding-top: 3.5rem;
  }

  .v6-hero h1 {
    margin-bottom: 2.1rem;
  }

  .v6-hero-actions {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .v6-inline-form {
    flex-direction: column;
    max-width: 100%;
  }

  .v6-inline-form .v6-btn-primary,
  .v6-inline-form input,
  .v6-btn-secondary {
    width: 100%;
  }

  .v6-logo-bar-inner {
    gap: 1.5rem;
  }

  .v6-brush-box {
    padding: 1.5rem;
  }

  .v6-quiz-cta {
    justify-self: stretch;
  }

  .v6-blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .v6-newsletter-sub {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .v6-product-grid,
  .v6-blog-grid {
    grid-template-columns: 1fr;
  }

  .v6-testimonial-card {
    width: min(290px, calc(100vw - 2rem));
  }

  .v6-modal-panel {
    padding: 1.35rem;
  }
}
