/* ============================================================
   about.css — About page layout & styling
   ============================================================ */

/* ── About Hero (home-hero style) ─────────────────────────── */
.about-hero {
  position: relative;
  text-align: center;
  padding: clamp(56px, 10vw, 96px) 20px clamp(64px, 12vw, 88px);
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--primary) 12%, transparent), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, color-mix(in srgb, var(--primary) 6%, transparent), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, color-mix(in srgb, var(--primary) 5%, transparent), transparent);
  pointer-events: none;
}
[data-theme="dark"] .about-hero-bg {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--primary) 18%, transparent), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, color-mix(in srgb, var(--primary) 8%, transparent), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, color-mix(in srgb, var(--primary) 6%, transparent), transparent);
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.about-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
[data-theme="dark"] .about-hero-label {
  background: var(--primary-soft);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}
.about-hero-title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 20px;
}
.about-hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.about-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.about-hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow);
}
[data-theme="dark"] .about-hero-trust-pill {
  background: var(--white);
  color: var(--subtle);
}
.about-hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* ── About Section Layout ────────────────────────────────── */
.about-section {
  padding: 48px 20px 56px;
  border-top: 1px solid var(--border);
}
[data-theme="dark"] .about-section {
  border-top-color: var(--border);
}
.about-section--alt {
  background: var(--white);
}
[data-theme="dark"] .about-section--alt {
  background: var(--bg);
}
.about-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.about-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.about-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.about-section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

/* ── About Cards ─────────────────────────────────────────── */
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-card:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .about-card {
  background: var(--white);
}
.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.about-card-icon {
  font-size: 1.35rem;
  line-height: 1;
}

/* ── Values Grid ─────────────────────────────────────────── */
.about-values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
[data-theme="dark"] .about-value-item {
  background: var(--white);
}
.about-value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
}
[data-theme="dark"] .about-value-icon {
  background: var(--primary-soft);
}
.about-value-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.about-value-item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Premium Intro ─────────────────────────────────────────── */
.about-premium-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
}
.about-premium-intro h2 {
  margin-bottom: 12px;
}
.about-premium-intro p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.about-premium-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--primary-soft);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}
[data-theme="dark"] .about-premium-price {
  background: var(--primary-soft);
}

/* ── Premium Services Rows (alternating text/image) ─────────── */
.about-premium-rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-premium-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 280px;
}
@media (max-width: 768px) {
  .about-premium-row {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }
  .about-premium-row .about-premium-row-media {
    order: -1;
  }
}
.about-premium-row-text h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.about-premium-row-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
}
.about-premium-row-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.about-premium-row-text .btn {
  font-size: 0.95rem;
}
.about-premium-row-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
[data-theme="dark"] .about-premium-row-media {
  background: var(--surface-2);
}
.about-premium-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-premium-row-media img.fs-theme-img--light,
.about-premium-row-media img.fs-theme-img--dark {
  position: absolute;
  inset: 0;
}

/* ── Tools Grid (What We Offer) ───────────────────────────── */
.about-tools-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .about-tools-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-tool-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.about-tool-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .about-tool-card {
  background: var(--white);
}
.about-tool-card .about-tool-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  display: block;
}
.about-tool-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.about-tool-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.about-tool-card .btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.9rem;
}

/* ── Founder ─────────────────────────────────────────────── */
.about-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 32px;
  align-items: start;
  margin-top: 8px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
[data-theme="dark"] .about-founder {
  background: var(--white);
}
.about-founder__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--bg);
}
.about-founder__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.about-founder__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 14px;
}
.about-founder__bio {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 18px;
}
.about-founder__link {
  display: inline-flex;
}
@media (max-width: 560px) {
  .about-founder {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 20px;
  }
  .about-founder__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ── Contact Block ───────────────────────────────────────── */
.about-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
[data-theme="dark"] .about-contact {
  background: var(--white);
}
.about-contact h2 {
  margin-bottom: 8px;
}
.about-contact p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-contact a {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── About CTA — split copy + product shot ─────────────────── */
.cta-block.about-cta {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0;
}
.about-cta-inner {
  max-width: var(--content-max, 1120px);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--page-gutter, 20px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.about-cta-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 10px;
}
.about-cta-copy p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 46ch;
  margin: 0 0 24px;
  line-height: 1.6;
}
.about-cta-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  aspect-ratio: 16 / 10;
}
.about-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-cta-media img.fs-theme-img--light,
.about-cta-media img.fs-theme-img--dark {
  position: absolute;
  inset: 0;
}
@media (max-width: 768px) {
  .about-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-cta-media {
    order: -1;
    aspect-ratio: 16 / 9;
  }
}
