/* SnapsJo About Us page */

.about-page-body {
  background: var(--porcelain, #faf7f2);
}

.about-page {
  padding: 0 0 48px;
  overflow-x: hidden;
}

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

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay, #b87952);
  margin-bottom: 14px;
}
.about-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta, #d66a3d);
}

.about-section {
  padding: clamp(52px, 7vw, 88px) 0;
}
.about-section--soft {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.5) 0%, rgba(243, 231, 211, 0.35) 100%);
  border-top: 1px solid rgba(201, 168, 120, 0.12);
  border-bottom: 1px solid rgba(201, 168, 120, 0.12);
}
.about-section__head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.about-section__head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.18;
  margin: 0 0 12px;
  color: var(--ink, #171412);
}
.about-section__head p {
  margin: 0;
  color: var(--text-600, #5c5046);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 58ch;
}

/* Hero */
.about-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(circle at 18% 20%, rgba(231, 200, 115, 0.2) 0%, transparent 52%),
    radial-gradient(circle at 82% 72%, rgba(216, 106, 61, 0.1) 0%, transparent 48%),
    var(--porcelain, #faf7f2);
}
.about-hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .about-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 48px; }
}
.about-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.8vw, 3rem);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--ink, #171412);
}
.about-hero__lead {
  font-size: clamp(15.5px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--text-700, #3f362f);
  margin: 0 0 12px;
  max-width: 54ch;
}
.about-hero__support {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-500, #85796b);
  margin: 0 0 24px;
  max-width: 52ch;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.about-hero__actions .btn { min-height: 44px; }
.about-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-chips li {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(184, 121, 82, 0.22);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-700, #3f362f);
}

.about-hero-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.about-hero-visual svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Split sections */
.about-split {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
}
.about-split__copy p {
  margin: 0 0 14px;
  color: var(--text-600, #5c5046);
  font-size: 15.5px;
  line-height: 1.65;
}
.about-split__copy p:last-child { margin-bottom: 0; }

.about-mini-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.about-mini-flow__item {
  padding: 12px 10px;
  border-radius: 14px;
  background: var(--paper, #fffdf8);
  border: 1px solid var(--line-warm, #e8d8c4);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-700, #3f362f);
}

/* Feature cards */
.about-features {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .about-features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .about-features { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.about-feature {
  padding: 22px 20px;
  border-radius: 24px;
  background: var(--paper, #fffdf8);
  border: 1px solid rgba(201, 168, 120, 0.2);
  box-shadow: 0 6px 20px rgba(42, 33, 28, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(42, 33, 28, 0.08);
  border-color: rgba(184, 121, 82, 0.35);
}
.about-feature:nth-child(3n+1) { background: linear-gradient(145deg, #fffdf9, #faf6ef); }
.about-feature:nth-child(3n+2) { background: linear-gradient(145deg, #fffefb, #f7f0e6); }
.about-feature:nth-child(3n) { background: linear-gradient(145deg, #fefcf8, #f5efe6); }
.about-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(232, 216, 196, 0.45);
  color: var(--clay, #b87952);
  margin-bottom: 14px;
}
.about-feature__icon svg { width: 22px; height: 22px; }
.about-feature h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--ink, #171412);
}
.about-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--text-600, #5c5046);
}

/* Steps */
.about-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .about-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
.about-step {
  position: relative;
  padding: 22px 20px;
  border-radius: 22px;
  background: var(--paper, #fffdf8);
  border: 1px solid var(--line-warm, #e8d8c4);
  box-shadow: 0 4px 16px rgba(42, 33, 28, 0.04);
}
.about-step__visual {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  color: var(--clay, #b87952);
}
.about-step__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay, #b87952);
  margin-bottom: 8px;
}
.about-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--ink, #171412);
}
.about-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--text-600, #5c5046);
}
.about-steps-cta { margin-top: 28px; text-align: center; }

/* Trust */
.about-trust-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.about-trust-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--paper, #fffdf8);
  border: 1px solid var(--line-warm, #e8d8c4);
}
.about-trust-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.about-trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: var(--text-600, #5c5046);
}
.about-trust-card a,
.about-step a {
  color: var(--clay, #b87952);
  font-weight: 600;
}
.about-trust-links {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-500, #85796b);
}
.about-trust-links a {
  color: var(--clay, #b87952);
  font-weight: 600;
  margin-right: 16px;
}

/* Audience */
.about-audience {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.about-audience-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: var(--paper, #fffdf8);
  border: 1px solid var(--line-warm, #e8d8c4);
  transition: transform 0.2s ease;
}
.about-audience-card:hover { transform: translateY(-2px); }
.about-audience-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--ink, #171412);
}
.about-audience-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-600, #5c5046);
}

/* Checklist + vault */
.about-privacy-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-privacy-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-700, #3f362f);
  line-height: 1.5;
}
.about-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(221, 232, 213, 0.8);
  color: var(--olive, #3f4a35);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.about-vault-visual {
  display: grid;
  place-items: center;
  min-height: 240px;
}
.about-vault-visual svg { width: 100%; max-width: 320px; height: auto; }

/* Roadmap */
.about-roadmap-groups {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .about-roadmap-groups { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.about-roadmap-group h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay, #b87952);
  margin: 0 0 12px;
}
.about-roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-roadmap-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--paper, #fffdf8);
  border: 1px solid var(--line-warm, #e8d8c4);
  font-size: 13.5px;
  color: var(--text-700, #3f362f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.about-roadmap-list .about-tag {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.about-tag--now { background: var(--mint, #dde8d5); color: var(--olive, #3f4a35); }
.about-tag--soon { background: rgba(232, 216, 196, 0.5); color: var(--text-600, #5c5046); }
.about-roadmap-cta { margin-top: 28px; }

/* Maker note */
.about-maker {
  padding: clamp(28px, 4vw, 36px);
  border-radius: 24px;
  background: linear-gradient(145deg, #fffdf9 0%, #f7efe4 100%);
  border: 1px solid rgba(201, 168, 120, 0.28);
  box-shadow: 0 8px 24px rgba(42, 33, 28, 0.05);
  max-width: 820px;
}
.about-maker h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 16px;
  color: var(--ink, #171412);
}
.about-maker p {
  margin: 0 0 14px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-600, #5c5046);
}
.about-maker p:last-of-type { margin-bottom: 20px; }
.about-maker__sign {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--clay, #b87952);
}

/* Final CTA */
.about-cta {
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(44px, 6vw, 72px) 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(231, 200, 115, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(184, 121, 82, 0.15) 0%, transparent 50%),
    linear-gradient(145deg, #2a211c 0%, #171412 55%, #1f1814 100%);
  color: #faf7f2;
  text-align: center;
  border-radius: 28px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 40px);
}
.about-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 12px;
  color: #fffdf9;
  line-height: 1.15;
}
.about-cta p {
  margin: 0 0 8px;
  color: rgba(250, 247, 242, 0.92);
  font-size: 16px;
  line-height: 1.55;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.about-cta__note {
  font-size: 13px !important;
  color: rgba(250, 247, 242, 0.72) !important;
  margin-bottom: 24px !important;
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.about-cta__actions .btn { min-height: 44px; }
.about-cta .btn--primary {
  background: #faf7f2;
  color: var(--ink, #171412);
}
.about-cta .btn--primary:hover {
  background: #fff;
  color: var(--ink, #171412);
}
.about-cta .btn--ghost {
  color: #faf7f2;
  border-color: rgba(250, 247, 242, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.about-cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #faf7f2;
  color: #fff;
}

/* FAQ */
.about-faq {
  max-width: 760px;
}
.about-faq details {
  border: 1px solid var(--line-warm, #e8d8c4);
  border-radius: 16px;
  background: var(--paper, #fffdf8);
  margin-bottom: 10px;
  overflow: hidden;
}
.about-faq summary {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink, #171412);
  cursor: pointer;
  list-style: none;
}
.about-faq summary::-webkit-details-marker { display: none; }
.about-faq summary::after {
  content: "+";
  float: right;
  color: var(--clay, #b87952);
  font-weight: 700;
}
.about-faq details[open] summary::after { content: "−"; }
.about-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-600, #5c5046);
}
.about-faq a { color: var(--clay, #b87952); font-weight: 600; }

/* SVG animations */
.about-anim-float { animation: aboutFloat 5s ease-in-out infinite; }
.about-anim-float-delay { animation: aboutFloat 5s ease-in-out 1.2s infinite; }
.about-anim-sparkle { animation: aboutSparkle 2.8s ease-in-out infinite; }
.about-anim-path { stroke-dasharray: 6 8; animation: aboutPathMove 3s linear infinite; }
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes aboutSparkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.85; }
}
@keyframes aboutPathMove {
  to { stroke-dashoffset: -28; }
}

@media (prefers-reduced-motion: reduce) {
  .about-anim-float,
  .about-anim-float-delay,
  .about-anim-sparkle,
  .about-anim-path,
  .about-feature:hover,
  .about-audience-card:hover {
    animation: none !important;
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 639px) {
  .about-hero__actions .btn,
  .about-cta__actions .btn { width: 100%; }
  .about-mini-flow { grid-template-columns: 1fr; }
}
