/* inner.css — Shared styles for About, Privacy, Terms pages */

/* Inner Page Hero */
.inner-hero {
  position: relative; min-height: 40vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 140px 20px 80px; overflow: hidden;
}
.inner-hero-sm { min-height: 30vh; padding: 130px 20px 60px; }
.inner-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, #1e1b4b, var(--bg-dark) 60%); z-index: -1; }
.inner-hero-content { position: relative; z-index: 1; max-width: 700px; }
.inner-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1;
  margin: 20px 0; letter-spacing: -1.5px;
}
.inner-hero-sub { font-size: 1rem; color: var(--text-muted); }

/* Inner Sections */
.inner-section { padding: 80px 20px; }
.inner-section-inner { max-width: 1100px; margin: 0 auto; }
.inner-section-alt { background: var(--bg-darker); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.inner-section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.inner-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: white;
  margin: 15px 0; line-height: 1.2; letter-spacing: -0.5px;
}
.inner-p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* Mission Grid (About) */
.mission-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.mission-text .inner-h2 { text-align: left; }
.mission-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }
.mission-body p:last-child { margin-bottom: 0; }

/* About Stats */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 24px; padding: 40px;
}
.about-stat { text-align: center; }
.about-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary-light); margin-bottom: 8px; }
.about-stat-lbl { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Values Bento (About) */
.values-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.val-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 30px;
  transition: var(--transition);
}
.val-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); }
.val-large { grid-column: span 2; }
.val-wide { grid-column: span 2; }
.val-icon { font-size: 2rem; margin-bottom: 15px; }
.val-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.val-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Team Cards (About) */
.team-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.team-card-new {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: var(--transition);
}
.team-card-new:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.team-avatar-new {
  width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800;
  color: white; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}
.team-name-new { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 5px; }
.team-role-new { font-size: 0.85rem; color: var(--primary-light); font-weight: 500; margin-bottom: 15px; }
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Tech Grid (About) */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 25px 20px; text-align: center; transition: var(--transition);
}
.tech-item:hover { border-color: rgba(79, 70, 229, 0.4); transform: translateY(-3px); }
.tech-icon { font-size: 2rem; margin-bottom: 12px; }
.tech-name { font-weight: 700; font-size: 1rem; color: white; margin-bottom: 5px; }
.tech-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Inner CTA */
.inner-cta {
  position: relative; padding: 100px 20px; text-align: center; overflow: hidden;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15), transparent 60%);
  border-top: 1px solid var(--border);
}
.inner-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

/* Legal Layout */
.legal-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; }

/* Legal TOC */
.legal-toc { position: sticky; top: 100px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 16px; padding: 25px 20px; }
.toc-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 15px; }
.toc-link { display: block; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
.toc-link:last-child { border-bottom: none; }
.toc-link:hover { color: var(--primary-light); }

/* Legal Prose */
.legal-prose { min-width: 0; }
.legal-intro { background: rgba(79, 70, 229, 0.05); border: 1px solid rgba(79, 70, 229, 0.15); border-radius: 16px; padding: 30px; margin-bottom: 40px; }
.legal-intro p { color: var(--text-muted); line-height: 1.85; margin-bottom: 12px; font-size: 0.97rem; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-intro strong { color: white; }

.legal-block { margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-block:last-child { border-bottom: none; margin-bottom: 0; }
.legal-block h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: white;
  margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-block h3 { font-size: 1rem; font-weight: 600; color: #e2e8f0; margin: 25px 0 12px; }
.legal-block p { color: var(--text-muted); line-height: 1.85; margin-bottom: 15px; font-size: 0.95rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { padding-left: 0; margin-bottom: 15px; }
.legal-block li {
  display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted);
  font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; padding: 10px 15px;
  background: rgba(255,255,255,0.02); border-radius: 8px;
}
.legal-block li::before { content: '→'; color: var(--primary-light); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.legal-block a { color: var(--primary-light); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
.legal-block strong { color: white; }

.legal-contact-box {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px;
  padding: 25px; margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.legal-contact-box div { font-size: 0.95rem; color: var(--text-muted); }
.legal-contact-box div:first-child { font-size: 1.05rem; color: white; margin-bottom: 5px; }
.legal-contact-box a { color: var(--primary-light); text-decoration: none; }

/* Footer shared styles (supplement main CSS) */
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; padding: 60px 0 40px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-top: 15px; max-width: 280px; line-height: 1.7; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary-light); }

/* Why Section Styles */
.why-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 35px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.why-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.wc-large { grid-column: span 2; }
.wc-wide { grid-column: span 2; }
.wc-glow { position: absolute; top: -30%; left: -20%; width: 60%; height: 60%; background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent 70%); filter: blur(40px); }
.wc-icon { font-size: 2rem; margin-bottom: 20px; position: relative; z-index: 1; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 1; }
.wc-demo { display: flex; align-items: center; gap: 10px; margin-top: 25px; flex-wrap: wrap; }
.wc-demo-step { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 0.8rem; color: var(--text-muted); transition: 0.2s; }
.wc-demo-step.done { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); color: var(--accent-green); }
.wc-demo-step.active { background: rgba(79, 70, 229, 0.2); border-color: var(--primary); color: white; }
.wc-demo-arrow { color: var(--text-muted); font-size: 0.9rem; }
.loyalty-tiers { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.lt-tier { padding: 8px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: 1px solid; transition: var(--transition); }
.lt-tier:hover { transform: translateY(-3px); }
.bronze { background: rgba(180, 83, 9, 0.1); border-color: #b45309; color: #fbbf24; }
.silver { background: rgba(107, 114, 128, 0.15); border-color: #6b7280; color: #d1d5db; }
.gold { background: rgba(217, 119, 6, 0.15); border-color: #d97706; color: #fcd34d; }
.platinum { background: rgba(139, 92, 246, 0.15); border-color: #8b5cf6; color: #c4b5fd; }

/* Trust Strip */
.trust-strip { background: var(--bg-darker); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px; overflow: hidden; }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 30px; }
.trust-strip-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; gap: 15px; align-items: center; overflow: hidden; flex-wrap: wrap; }
.trust-loc { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.trust-sep { color: var(--border); }

/* CTA Section (shared) */
.cta-section { position: relative; padding: 120px 20px; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -1; background: var(--bg-darker); }
.cta-glow-1 { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(79, 70, 229, 0.3), transparent 70%); filter: blur(60px); }
.cta-glow-2 { position: absolute; bottom: -20%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(192, 132, 252, 0.2), transparent 70%); filter: blur(40px); }
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-badge { display: inline-block; padding: 8px 16px; background: rgba(245, 158, 11, 0.1); color: var(--accent-orange); border: 1px solid rgba(245, 158, 11, 0.2); border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 30px; }
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.cta-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-cta-primary { background: var(--primary); color: white; padding: 16px 32px; border-radius: 12px; font-weight: 600; text-decoration: none; font-size: 1rem; transition: var(--transition); box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4); }
.btn-cta-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5); }
.btn-cta-outline { background: transparent; color: white; padding: 16px 32px; border-radius: 12px; font-weight: 600; text-decoration: none; font-size: 1rem; border: 1px solid var(--border); transition: var(--transition); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.cta-social-proof { display: flex; align-items: center; justify-content: center; gap: 15px; }
.csp-avatars { display: flex; }
.csp-av { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-darker); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; margin-left: -10px; }
.csp-av:first-child { margin-left: 0; }
.cta-social-proof span { font-size: 0.9rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .toc-title { grid-column: span 3; }
  .mission-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-bento { grid-template-columns: 1fr 1fr; }
  .val-large, .val-wide { grid-column: span 2; }
  .team-bento { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .why-bento { grid-template-columns: 1fr 1fr; }
  .wc-large, .wc-wide { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .inner-hero { padding: 120px 20px 60px; }
  .inner-hero-title { font-size: 2rem; }
  .values-bento { grid-template-columns: 1fr; }
  .val-large, .val-wide { grid-column: span 1; }
  .team-bento { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .legal-toc { grid-template-columns: 1fr 1fr; }
  .toc-title { grid-column: span 2; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .why-bento { grid-template-columns: 1fr; }
  .wc-large, .wc-wide { grid-column: span 1; }
}
