/* =========================================
   ABOUT.HTML — bespoke styles + animations
   ========================================= */

/* ---------- Sparkle background ---------- */
.sparkle-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.sparkle-bg .spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #FFC947 0%, transparent 70%);
  filter: blur(0.6px); opacity: 0.7;
  animation: sparkFloat 14s ease-in-out infinite;
}
.spark.s1 { left: 8%;  top: 18%; animation-delay: 0s;   width: 10px; height: 10px; }
.spark.s2 { left: 22%; top: 78%; animation-delay: -3s;  width: 6px;  height: 6px; }
.spark.s3 { left: 55%; top: 12%; animation-delay: -6s;  width: 8px;  height: 8px;  background: radial-gradient(circle, #6C5CE7 0%, transparent 70%); }
.spark.s4 { left: 72%; top: 60%; animation-delay: -9s;  width: 12px; height: 12px; }
.spark.s5 { left: 85%; top: 28%; animation-delay: -2s;  width: 5px;  height: 5px;  background: radial-gradient(circle, #00D9A6 0%, transparent 70%); }
.spark.s6 { left: 40%; top: 92%; animation-delay: -7s;  width: 9px;  height: 9px; }
@keyframes sparkFloat {
  0%   { transform: translateY(0) scale(1);    opacity: 0.6; }
  50%  { transform: translateY(-40px) scale(1.4); opacity: 1; }
  100% { transform: translateY(0) scale(1);    opacity: 0.6; }
}

/* ---------- Hero ---------- */
.about-hero { padding-top: 110px; padding-bottom: 30px; position: relative; z-index: 1; }
.about-hero .hero-headline { line-height: 1.04; }
.about-hero .eyebrow.shine {
  position: relative; overflow: hidden;
}
.about-hero .eyebrow.shine::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-100%); animation: shineSweep 3.5s linear infinite;
}
@keyframes shineSweep { to { transform: translateX(100%); } }

/* ---------- Founder card ---------- */
.founder-section { padding: 30px 0 50px; position: relative; z-index: 1; }
.founder-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 36px;
  padding: 38px 40px; background: linear-gradient(135deg, #ffffff 0%, #FAF8FF 100%);
  border: 1.5px solid #ECEAF8; border-radius: 26px;
  box-shadow: 0 22px 50px rgba(108,92,231,0.10);
}
.founder-avatar {
  position: relative; width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.avatar-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(#6C5CE7, #FFC947, #00D9A6, #6C5CE7);
  animation: ringSpin 8s linear infinite;
  padding: 4px; mask: radial-gradient(circle, transparent 60%, #000 62%);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 62%);
}
.avatar-mono {
  font-family: 'Sora', sans-serif; font-size: 64px; font-weight: 800;
  color: #6C5CE7; background: #fff;
  width: 168px; height: 168px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 4px #F2EEFF;
  animation: monoPulse 4s ease-in-out infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes monoPulse {
  0%, 100% { transform: scale(1);   box-shadow: inset 0 0 0 4px #F2EEFF, 0 0 0 0 rgba(108,92,231,0.4); }
  50%      { transform: scale(1.03); box-shadow: inset 0 0 0 4px #F2EEFF, 0 0 0 14px rgba(108,92,231,0); }
}
.founder-body { display: flex; flex-direction: column; justify-content: center; }
.gold-eyebrow { color: #B8860B; border-color: #FFC947; background: #FFFBEC; }
.founder-name {
  font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800;
  color: #2D1B69; margin: 8px 0 12px; line-height: 1.1;
}
.founder-bio { color: #4A4060; line-height: 1.7; margin: 0 0 12px; font-size: 15px; }
.founder-bio strong { color: #2D1B69; }
.founder-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; font-size: 13px; color: #6C6A85; }
.founder-meta strong { color: #6C5CE7; }
.founder-meta a { color: #6C5CE7; font-weight: 600; }

/* ---------- Timeline ---------- */
.story-section { padding: 40px 0; position: relative; z-index: 1; }
.timeline { display: flex; flex-direction: column; gap: 20px; max-width: 880px; margin: 30px auto 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 78px; top: 18px; bottom: 18px; width: 3px;
  background: linear-gradient(180deg, #6C5CE7 0%, #FFC947 100%);
  border-radius: 3px;
}
.tl-step { display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: flex-start; position: relative; }
.tl-marker {
  display: flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 14px; background: linear-gradient(135deg, #6C5CE7, #4F30B8);
  color: #fff; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 0.5px; border-radius: 26px; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(108,92,231,0.3);
  position: relative; z-index: 1;
}
.tl-card {
  background: #fff; border: 1.5px solid #ECEAF8; border-radius: 18px;
  padding: 22px 24px; transition: all 0.3s var(--ease, cubic-bezier(0.16,1,0.3,1));
}
.tl-card:hover { transform: translateX(6px); border-color: #6C5CE7; box-shadow: 0 14px 30px rgba(108,92,231,0.15); }
.tl-card h4 { font-family: 'Sora', sans-serif; color: #2D1B69; font-size: 18px; margin: 0 0 8px; }
.tl-card p { color: #4A4060; line-height: 1.7; margin: 0; font-size: 14.5px; }
.tl-card p strong { color: #6C5CE7; }
.tl-card p em { color: #B8860B; font-style: normal; font-weight: 600; }

/* ---------- Mission & Vision ---------- */
.mv-section { padding: 50px 0 30px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.mv-card {
  position: relative; padding: 36px 32px; border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #FAF8FF 100%);
  border: 1.5px solid #ECEAF8;
  transition: all 0.4s ease;
  overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 240px; height: 240px;
  border-radius: 50%; opacity: 0.08; transition: all 0.5s ease;
}
.mv-card.mission::before { background: radial-gradient(circle, #FFC947, transparent 70%); }
.mv-card.vision::before  { background: radial-gradient(circle, #6C5CE7, transparent 70%); }
.mv-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(108,92,231,0.18); }
.mv-card:hover::before { transform: scale(1.5) rotate(40deg); opacity: 0.18; }
.mv-icon {
  font-size: 48px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 78px; height: 78px; border-radius: 22px;
  background: #F2EEFF;
  margin-bottom: 16px;
  animation: mvFloat 5s ease-in-out infinite;
}
.mv-card.mission .mv-icon { background: #FFFBEC; }
@keyframes mvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.mv-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: #6C5CE7; color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.mv-card.mission .mv-tag { background: #FFC947; color: #2D1B69; }
.mv-card h3 {
  font-family: 'Sora', sans-serif; font-size: 24px; color: #2D1B69; margin: 0 0 14px; line-height: 1.2;
}
.mv-card p { color: #4A4060; line-height: 1.7; font-size: 14.5px; margin-bottom: 16px; }
.mv-card p em { color: #6C5CE7; font-style: normal; font-weight: 600; }
.mv-bullets { list-style: none; padding: 0; margin: 0; }
.mv-bullets li {
  position: relative; padding: 8px 0 8px 28px; font-size: 14px; color: #2D1B69;
  border-bottom: 1px dashed #ECEAF8; font-weight: 500;
}
.mv-bullets li:last-child { border-bottom: 0; }
.mv-bullets li::before {
  content: '▸'; position: absolute; left: 8px; color: #6C5CE7; font-weight: 800;
  transition: transform 0.2s;
}
.mv-bullets li:hover::before { transform: translateX(4px); }
.mv-bullets li strong { color: #6C5CE7; }

/* ---------- Demo banner ---------- */
.demo-section { padding: 30px 0; }
.demo-band {
  padding: 40px 38px; border-radius: 28px;
  background: linear-gradient(135deg, #2D1B69 0%, #6C5CE7 100%);
  color: #fff; position: relative; overflow: hidden;
}
.demo-band::before, .demo-band::after {
  content: ''; position: absolute; border-radius: 50%; opacity: 0.15;
  animation: demoOrb 14s ease-in-out infinite;
}
.demo-band::before { width: 320px; height: 320px; top: -160px; left: -100px; background: #FFC947; }
.demo-band::after  { width: 260px; height: 260px; bottom: -130px; right: -100px; background: #00D9A6; animation-delay: -5s; }
@keyframes demoOrb { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.demo-band > * { position: relative; z-index: 1; }
.demo-band .eyebrow { color: #FFC947; border-color: #FFC947; background: rgba(255,201,71,0.12); }
.demo-band h2 { font-family: 'Sora', sans-serif; font-size: 34px; margin: 12px 0 14px; }
.demo-band p { font-size: 15.5px; line-height: 1.7; opacity: 0.95; max-width: 720px; }
.demo-band p strong { color: #FFC947; }
.demo-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px;
}
.d-stat {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 18px 14px; text-align: center;
  backdrop-filter: blur(8px); transition: transform 0.3s;
}
.d-stat:hover { transform: translateY(-4px); }
.d-stat b { display: block; font-family: 'Sora', sans-serif; font-size: 30px; color: #FFC947; }
.d-stat span { display: block; font-size: 12px; opacity: 0.85; margin-top: 2px; letter-spacing: 0.4px; }

/* ---------- Security grid ---------- */
.sec-section { padding: 40px 0; }
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.sec-card {
  padding: 24px 22px; background: #fff; border: 1.5px solid #ECEAF8; border-radius: 18px;
  transition: all 0.3s ease;
}
.sec-card:hover { transform: translateY(-4px); border-color: #00D9A6; box-shadow: 0 18px 40px rgba(0,217,166,0.15); }
.sec-ic {
  font-size: 28px; line-height: 1;
  width: 56px; height: 56px; border-radius: 16px; background: #E6FBF5;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sec-card h4 { font-family: 'Sora', sans-serif; font-size: 17px; margin: 0 0 8px; color: #2D1B69; }
.sec-card p  { color: #6C6A85; font-size: 13.5px; line-height: 1.6; margin: 0; }
.sec-foot { text-align: center; margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Feedback card ---------- */
.fb-section { padding: 30px 0; }
.fb-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px;
  padding: 40px 40px; border-radius: 24px;
  background: linear-gradient(135deg, #FFFBEC 0%, #fff 60%);
  border: 1.5px solid #FFC947;
}
.fb-left h2 { font-family: 'Sora', sans-serif; font-size: 30px; color: #2D1B69; margin: 10px 0 12px; }
.fb-left p { color: #4A4060; font-size: 15px; line-height: 1.7; }
.fb-left p strong { color: #B8860B; }
.fb-right { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.fb-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 14px; background: #fff;
  border: 1.5px solid #ECEAF8; text-decoration: none; color: #2D1B69;
  transition: all 0.25s ease;
}
.fb-link:hover { transform: translateX(6px); border-color: #FFC947; box-shadow: 0 12px 24px rgba(255,201,71,0.2); }
.fb-ic { font-size: 22px; width: 44px; height: 44px; border-radius: 12px; background: #FFFBEC;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fb-link b { display: block; font-size: 15px; }
.fb-link span { display: block; font-size: 12px; color: #6C6A85; }

/* ---------- Partnership grid ---------- */
.prt-section { padding: 40px 0; }
.prt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.prt-card {
  padding: 28px 26px; background: #fff; border: 1.5px solid #ECEAF8; border-radius: 22px;
  transition: all 0.35s ease;
}
.prt-card:hover { transform: translateY(-6px); border-color: #6C5CE7; box-shadow: 0 26px 50px rgba(108,92,231,0.15); }
.prt-ic {
  font-size: 32px;
  width: 64px; height: 64px; border-radius: 18px; background: #F2EEFF;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.prt-card h4 { font-family: 'Sora', sans-serif; font-size: 19px; color: #2D1B69; margin: 0 0 8px; }
.prt-card > p { color: #4A4060; line-height: 1.65; font-size: 14px; margin: 0 0 12px; }
.prt-list { list-style: none; padding: 0; margin: 0; }
.prt-list li { font-size: 13px; color: #6C6A85; padding: 5px 0 5px 18px; position: relative; border-bottom: 1px dashed #ECEAF8; }
.prt-list li:last-child { border-bottom: 0; }
.prt-list li::before { content: '✓'; position: absolute; left: 0; color: #00D9A6; font-weight: 800; }
.prt-cta {
  margin-top: 26px; padding: 30px 32px; border-radius: 22px;
  background: linear-gradient(135deg, #6C5CE7 0%, #4F30B8 100%);
  color: #fff; text-align: center;
}
.prt-cta h3 { font-family: 'Sora', sans-serif; font-size: 24px; margin: 0 0 8px; }
.prt-cta p { font-size: 14.5px; line-height: 1.6; opacity: 0.92; max-width: 600px; margin: 0 auto 18px; }
.prt-cta p strong { color: #FFC947; }

/* ---------- Legal grid ---------- */
.legal-section { padding: 40px 0; }
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.legal-card {
  display: block; padding: 26px 24px; background: #fff; border: 1.5px solid #ECEAF8;
  border-radius: 18px; text-decoration: none; color: inherit; transition: all 0.3s;
}
.legal-card:hover { transform: translateY(-5px); border-color: #6C5CE7; box-shadow: 0 22px 44px rgba(108,92,231,0.15); }
.lg-ic {
  font-size: 26px; width: 54px; height: 54px; border-radius: 14px; background: #F2EEFF;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.legal-card h4 { font-family: 'Sora', sans-serif; color: #2D1B69; font-size: 17px; margin: 0 0 6px; }
.legal-card p { color: #6C6A85; font-size: 13px; line-height: 1.6; margin: 0 0 12px; }
.lg-arrow { color: #6C5CE7; font-weight: 700; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .founder-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .founder-avatar { margin: 0 auto; width: 160px; height: 160px; }
  .avatar-mono { width: 132px; height: 132px; font-size: 50px; }
  .founder-name { font-size: 30px; }
  .timeline::before { left: 14px; }
  .tl-step { grid-template-columns: 1fr; gap: 10px; }
  .tl-marker { display: inline-flex; padding: 6px 16px; height: auto; align-self: flex-start; margin-left: 36px; }
  .tl-card { margin-left: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .demo-stats { grid-template-columns: repeat(2, 1fr); }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .fb-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .prt-grid { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .founder-meta { flex-direction: column; gap: 8px; }
  .demo-stats { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .demo-band, .prt-cta { padding: 26px 22px; }
  .demo-band h2 { font-size: 26px; }
}

/* ============== AGE & SAFETY WARNING ============== */
.age-section { padding: 30px 0 50px; }
.age-banner {
  position: relative;
  padding: 36px 38px 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, #FFF6E5 0%, #FFFBEC 60%, #fff 100%);
  border: 2px solid #FFB200;
  box-shadow: 0 28px 56px rgba(255,178,0,0.18);
  overflow: hidden;
}
.age-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(45deg, #FFB200 0 14px, #2D1B69 14px 28px);
  animation: stripeMove 18s linear infinite;
  background-size: 40px 40px;
}
@keyframes stripeMove { to { background-position: 200px 0; } }
.age-head { display: flex; gap: 18px; align-items: center; margin: 12px 0 14px; }
.age-icon {
  font-size: 50px; line-height: 1; flex-shrink: 0;
  animation: warnPulse 1.6s ease-in-out infinite;
}
@keyframes warnPulse {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.12) rotate(-3deg); }
}
.danger-eyebrow { color: #C44600; border-color: #FFB200; background: #FFE8C2; }
.age-head h2 { font-family: 'Sora', sans-serif; font-size: 30px; color: #2D1B69; margin: 6px 0 0; }
.age-lead { font-size: 15px; color: #3A2A0F; line-height: 1.7; margin: 0 0 22px; max-width: 880px; }

.age-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 16px; margin-bottom: 22px; }
.age-card {
  background: #fff; border: 2px solid #ECEAF8; border-radius: 18px;
  padding: 22px 22px 20px; transition: all 0.3s ease;
}
.age-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.age-card.forbidden { border-color: #E53935; background: linear-gradient(180deg, #FFEBEE 0%, #fff 60%); }
.age-card.caution   { border-color: #FFB200; background: linear-gradient(180deg, #FFF6E5 0%, #fff 60%); }
.age-card.safe      { border-color: #2E7D32; background: linear-gradient(180deg, #E8F5E9 0%, #fff 60%); }
.age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 12px;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px;
  margin-bottom: 14px;
  background: #fff; border: 2px solid;
}
.age-badge small { font-size: 9px; font-weight: 800; letter-spacing: 0.6px; opacity: 0.8; margin-left: 6px; }
.age-card.forbidden .age-badge { color: #E53935; border-color: #E53935; }
.age-card.caution   .age-badge { color: #C44600; border-color: #FFB200; }
.age-card.safe      .age-badge { color: #2E7D32; border-color: #2E7D32; }
.age-card h4 { font-family: 'Sora', sans-serif; font-size: 16px; color: #2D1B69; margin: 0 0 8px; }
.age-card p  { font-size: 13.5px; color: #4A4060; line-height: 1.65; margin: 0 0 8px; }
.age-card p strong { color: #2D1B69; }
.age-card.forbidden p strong { color: #C62828; }
.age-list { list-style: none; padding: 0; margin: 6px 0 0; }
.age-list li {
  font-size: 13px; color: #4A4060; padding: 4px 0 4px 18px; position: relative;
}
.age-list li::before { content: '▸'; position: absolute; left: 0; color: #FFB200; font-weight: 800; }
.age-list li strong { color: #2D1B69; }

.safe-zone {
  margin-top: 18px; padding: 26px 28px; border-radius: 18px;
  background: linear-gradient(135deg, #2D1B69 0%, #4F30B8 100%);
  color: #fff;
}
.safe-zone h3 { font-family: 'Sora', sans-serif; font-size: 22px; margin: 0 0 8px; }
.safe-zone > p { font-size: 14px; opacity: 0.92; line-height: 1.65; margin: 0 0 18px; }
.safe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.safe-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 14px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; backdrop-filter: blur(6px);
  transition: all 0.25s;
}
.safe-item:hover { background: rgba(255,255,255,0.15); transform: translateX(3px); }
.safe-item span { font-size: 22px; line-height: 1; flex-shrink: 0; }
.safe-item b { display: block; font-size: 13.5px; color: #FFC947; }
.safe-item em { display: block; font-style: normal; font-size: 12px; opacity: 0.88; margin-top: 2px; line-height: 1.5; }

.age-foot {
  margin: 20px 0 0; padding: 16px 18px;
  background: #FFFBEC; border: 1px dashed #FFB200; border-radius: 12px;
  font-size: 12.5px; color: #5C4400; line-height: 1.7;
}
.age-foot strong { color: #C44600; }

@media (max-width: 980px) {
  .age-grid { grid-template-columns: 1fr; }
  .safe-grid { grid-template-columns: 1fr 1fr; }
  .age-head h2 { font-size: 24px; }
  .age-icon { font-size: 38px; }
}
@media (max-width: 600px) {
  .safe-grid { grid-template-columns: 1fr; }
  .age-banner { padding: 28px 22px 24px; }
}
