/* ─── Home ─── */

.home-hero {
  background-color: var(--color-grey-100);
}

.home-products {
  padding: var(--section-padding-lg) 0;
}

.home-products .label {
  margin-bottom: 1rem;
}

.home-products h2 {
  margin-bottom: 3rem;
}

.brand-statement {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-grey-700);
  line-height: var(--leading-relaxed);
}

.brand-statement strong {
  color: var(--color-black);
}

.founders-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder__image {
  width: 120px;
  height: 120px;
  background-color: var(--color-grey-100);
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
}

.founder__name {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}

.founder__role {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}

/* ─── Product Detail ─── */

.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem 0 var(--section-padding);
}

.product-hero__image {
  aspect-ratio: 4 / 3;
  background-color: var(--color-grey-100);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__info h1 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.product-hero__tagline {
  font-size: var(--text-lg);
  color: var(--color-grey-500);
  margin-bottom: 2rem;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-grey-700);
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 1px;
  background-color: var(--color-grey-300);
}

.product-section {
  padding: 3rem 0;
  border-top: var(--border-light);
}

.product-section h3 {
  font-size: var(--text-xl);
  margin-bottom: 1.5rem;
}

.compat-list {
  columns: 2;
  gap: 2rem;
}

.compat-list li {
  padding: 0.375rem 0;
  font-size: var(--text-sm);
  color: var(--color-grey-700);
}

/* ─── About ─── */

.about-statement {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-statement p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.value__label {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.value__desc {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}

/* ─── Service ─── */

.service-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.role-card {
  padding: 2rem;
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.role-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.role-card__desc {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
}

/* ─── Legal ─── */

.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 2rem var(--content-padding) var(--section-padding);
}

.legal-content h1 {
  font-size: var(--text-2xl);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: 0.5rem;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

/* ─── Support ─── */

.download-card {
  padding: 2rem;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color var(--transition-fast);
}

.download-card:hover {
  border-color: var(--color-black);
  opacity: 1;
}

.download-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
}

.download-card__type {
  font-size: var(--text-xs);
  color: var(--color-grey-500);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

@media (min-width: 640px) {
  .founders-preview {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-roles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr 1fr;
  }
}

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