/* ============================================================
   DAILY OPPORTUNITIES — about.css
   Inherits all design tokens from index.css (:root).
   Covers: hero · stats · sections · checklist · twin cards · CTA
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   PAGE WRAPPER
   ───────────────────────────────────────────────────────────── */
.about-page {
  min-height: 100vh;
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 88px) 5% clamp(52px, 7vw, 80px);
}

/* Dot-grid overlay — same as homepage hero */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Ambient orbs */
.about-hero::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -160px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67,160,71,.28) 0%, transparent 68%);
  pointer-events: none;
}

/* Second orb — amber bottom-left */
.about-hero-inner::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  bottom: -140px; left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,0,.10) 0%, transparent 68%);
  pointer-events: none;
}

/* Hairline bottom fade rule */
.about-hero-inner::after {
  content: '';
  display: block;
  margin-top: clamp(32px, 5vw, 52px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.12) 20%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.12) 80%,
    transparent 100%
  );
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: aboutHeroUp .70s var(--ease-out, cubic-bezier(.22,.61,.36,1)) both;
}

@keyframes aboutHeroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Breadcrumb */
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.50);
  margin-bottom: 20px;
}
.about-breadcrumb a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color .2s;
}
.about-breadcrumb a:hover { color: #fff; }

/* Eyebrow */
.about-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin: 0 0 12px;
}

/* H1 */
.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 0 0 18px;
}
.about-title em {
  font-style: normal;
  color: var(--amber-bright);
}

/* Lead */
.about-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin: 0;
  max-width: 580px;
}

/* ─────────────────────────────────────────────────────────────
   BODY CONTAINER
   ───────────────────────────────────────────────────────────── */
.about-body {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) 5% clamp(64px, 10vw, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}

/* ─────────────────────────────────────────────────────────────
   STATS STRIP
   ───────────────────────────────────────────────────────────── */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 5vw, 40px);
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.about-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -.02em;
  line-height: 1;
}
.about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   CONTENT SECTIONS
   ───────────────────────────────────────────────────────────── */
.about-section {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-card);
  transition: box-shadow .22s var(--ease-out), transform .22s var(--ease-out);
}
.about-section:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Accent section — dark green background */
.about-section--accent {
  background: var(--green-deep);
  border-color: rgba(255,255,255,.08);
}
.about-section--accent:hover {
  box-shadow: 0 8px 32px rgba(27,94,32,.30), 0 2px 8px rgba(0,0,0,.08);
}

/* Section eyebrow label */
.about-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 10px;
}
.about-section-label--light {
  color: rgba(255,255,255,.50);
}

/* Section heading */
.about-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -.02em;
  line-height: 1.22;
  margin: 0 0 20px;
  padding-bottom: 14px;
  position: relative;
}
/* Green underline rule — matches listing-card accent pattern */
.about-section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--green-bright);
  border-radius: 2px;
}
.about-section-title--light {
  color: #fff;
}
.about-section-title--light::after {
  background: rgba(255,255,255,.35);
}

/* Body text */
.about-section-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.9rem, 1.8vw, 1rem);
  line-height: 1.8;
  color: var(--muted-text);
  margin: 0 0 1.2em;
}
.about-section-body p:last-child { margin-bottom: 0; }
.about-section-body strong       { color: var(--dark-text); font-weight: 700; }

.about-section-body--light p       { color: rgba(255,255,255,.72); }
.about-section-body--light strong  { color: #fff; }

/* ─────────────────────────────────────────────────────────────
   CHECKLIST
   ───────────────────────────────────────────────────────────── */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.875rem, 1.8vw, .975rem);
  color: var(--muted-text);
  line-height: 1.6;
}
/* Green checkmark circle */
.about-checklist li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--green-light);
  border: 1.5px solid #A7D7A9;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%232E7D32' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}
/* Light checklist (accent section) */
.about-section--accent .about-checklist li {
  color: rgba(255,255,255,.78);
}
.about-section--accent .about-checklist li::before {
  background-color: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─────────────────────────────────────────────────────────────
   TWIN CARDS
   ───────────────────────────────────────────────────────────── */
.about-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .22s var(--ease-out), transform .22s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.about-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* Green top accent strip — same as listing-card */
.about-card-rule {
  height: 3px;
  background: var(--green-bright);
  flex-shrink: 0;
}

.about-card-body {
  padding: clamp(20px, 3vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -.01em;
  margin: 0;
}

.about-card-note {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--light-text);
  line-height: 1.65;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────────────────────
   CTA BLOCK
   ───────────────────────────────────────────────────────────── */
.about-cta {
  background: var(--green-deep);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}

/* Amber orb inside CTA */
.about-cta::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,0,.13) 0%, transparent 65%);
  top: -140px; right: -80px;
  pointer-events: none;
}

/* Top accent strip */
.about-cta-rule {
  height: 3px;
  background: var(--green-bright);
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.about-cta-copy { flex: 1; min-width: 0; }

.about-cta-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-bright);
  margin: 0 0 10px;
}

.about-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 0 0 12px;
}

.about-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.875rem, 1.8vw, .975rem);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}

/* CTA button — matches btn-hero-primary */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,127,23,.35);
}
.about-cta-btn:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,127,23,.45);
}
.about-cta-btn:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hide-on-mobile { display: none; }
  .about-stats {
    justify-content: flex-start;
    gap: 16px 24px;
  }
  .about-stat-divider { display: none; }
  .about-cta-inner    { flex-direction: column; align-items: flex-start; }
  .about-cta-btn      { align-self: flex-start; }
}

@media (max-width: 640px) {
  .about-twin { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; display: grid; }
}

/* ─────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .about-hero-inner  { animation: none !important; }
  .about-section,
  .about-card,
  .about-cta-btn     { transition: none !important; transform: none !important; }
}