/* ============================================================
   about.css — About page specific styles
   ============================================================ */

main {
  padding-top: var(--nav-height);
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   Dark gradient, centered layout
   ════════════════════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, #0A0E1A 0%, #161030 35%, #0F1825 65%, #0A1020 100%);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}

/* Blobs */
.about-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.about-blob-amber {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, transparent 70%);
  top: -100px;
  right: 5%;
  animation: about-blob-drift 12s ease-in-out infinite;
}

.about-blob-purple {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  bottom: 10%;
  left: -4%;
  animation: about-blob-drift 15s ease-in-out infinite reverse;
}

.about-blob-teal {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20,184,166,0.22) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: about-blob-drift 18s ease-in-out infinite 3s;
}

@keyframes about-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -16px) scale(1.05); }
  66%       { transform: translate(-14px, 20px) scale(0.97); }
}

/* Dot grid */
.about-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Hero inner */
.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.about-hero-label.loaded { opacity: 1; transform: translateY(0); }

.about-hero-label-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
  animation: about-pulse 2s infinite;
}

@keyframes about-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(59,130,246,0.3); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(59,130,246,0.1); }
}

.about-hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease 0.22s, transform 0.55s ease 0.22s;
}

.about-hero-headline.loaded { opacity: 1; transform: translateY(0); }

.about-hero-accent {
  display: block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #60A5FA 50%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease 0.34s, transform 0.55s ease 0.34s;
}

.about-hero-sub.loaded { opacity: 1; transform: translateY(0); }

.about-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.46s, transform 0.5s ease 0.46s;
}

.about-hero-cta.loaded { opacity: 1; transform: translateY(0); }

.about-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 0.5s ease 0.58s;
}

.about-trust-row.loaded { opacity: 1; }

.about-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 5px 12px;
}

.about-trust-icon {
  font-size: 0.7rem;
  color: var(--color-primary);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

/* Wave */
.about-hero-wave {
  position: relative;
  margin-bottom: -2px;
  line-height: 0;
}

.about-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — STORY
   Light background, two-column layout
   ════════════════════════════════════════════════════════════ */
.about-story-section {
  padding: 96px 0;
  background-color: var(--color-light-gray);
}

.about-story-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.about-story-headline {
  margin-bottom: 28px;
}

.about-story-body {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-story-body:last-child { margin-bottom: 0; }

/* Stats card */
.about-story-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid #E5E7EB;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.asc-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-bottom: 6px;
}

.asc-year {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.asc-divider {
  height: 1px;
  background-color: #E5E7EB;
  margin: 20px 0;
}

.asc-stat-row {
  display: flex;
  gap: 0;
}

.asc-stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.asc-stat:first-child { padding-left: 0; }
.asc-stat:last-child  { padding-right: 0; }

.asc-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.asc-stat-lbl {
  font-size: 0.75rem;
  color: var(--color-gray);
  line-height: 1.3;
}

.asc-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — MISSION
   Dark dramatic background
   ════════════════════════════════════════════════════════════ */
.about-mission-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #0A0E1A 0%, #111827 40%, #0F1A2E 100%);
  position: relative;
  overflow: hidden;
}

.about-mission-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-mission-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -100px;
  left: -80px;
}

.about-mission-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
}

.about-mission-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
}

.amgl-h, .amgl-v {
  position: absolute;
  background: rgba(255,255,255,0.6);
}

.amgl-h { height: 1px; left: 0; right: 0; }
.amgl-v { width: 1px; top: 0; bottom: 0; }

.amgl-h1 { top: 35%; }
.amgl-h2 { top: 65%; }
.amgl-v1 { left: 20%; }
.amgl-v2 { left: 50%; }
.amgl-v3 { left: 80%; }

.about-mission-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-mission-label {
  color: var(--color-primary) !important;
}

.about-mission-headline {
  color: var(--color-white) !important;
  margin-bottom: 40px;
}

.about-mission-quote {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 52px;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.amq-decoration {
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 20px;
}

.amq-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 28px;
}

.amq-attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
}

.amq-attribution::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — VALUES
   Light gradient, 6-card grid
   ════════════════════════════════════════════════════════════ */
.about-values-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #FFFFFF 0%, #F8F4FF 50%, #FFF8EC 100%);
  position: relative;
  overflow: hidden;
}

.about-values-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  pointer-events: none;
}

.about-values-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-values-sub {
  margin: 16px auto 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Value card */
.about-value-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1.5px solid #E9EAEC;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  transition: var(--transition);
}

.about-value-amber::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.about-value-blue::before   { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.about-value-green::before  { background: linear-gradient(90deg, #10B981, #34D399); }
.about-value-purple::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.about-value-teal::before   { background: linear-gradient(90deg, #14B8A6, #2DD4BF); }
.about-value-red::before    { background: linear-gradient(90deg, #EF4444, #F87171); }

.about-value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-value-icon-amber  { background: linear-gradient(135deg,#DBEAFE,#BFDBFE); color:#1D4ED8; box-shadow:0 4px 12px rgba(59,130,246,0.25); }
.about-value-icon-blue   { background: linear-gradient(135deg,#DBEAFE,#BFDBFE); color:#1D4ED8; box-shadow:0 4px 12px rgba(59,130,246,0.2);  }
.about-value-icon-green  { background: linear-gradient(135deg,#D1FAE5,#A7F3D0); color:#065F46; box-shadow:0 4px 12px rgba(16,185,129,0.2);  }
.about-value-icon-purple { background: linear-gradient(135deg,#EDE9FE,#DDD6FE); color:#6D28D9; box-shadow:0 4px 12px rgba(139,92,246,0.2);  }
.about-value-icon-teal   { background: linear-gradient(135deg,#CCFBF1,#99F6E4); color:#0F766E; box-shadow:0 4px 12px rgba(20,184,166,0.2);  }
.about-value-icon-red    { background: linear-gradient(135deg,#FEE2E2,#FECACA); color:#B91C1C; box-shadow:0 4px 12px rgba(239,68,68,0.2);   }

.about-value-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.about-value-text {
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SECTION 5 — WHAT WE'RE BUILDING
   White background, two-column cards
   ════════════════════════════════════════════════════════════ */
.about-products-section {
  padding: 96px 0;
  background-color: var(--color-bg);
}

.about-products-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-products-sub {
  margin: 16px auto 0;
}

.about-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Product card */
.about-product-card {
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1.5px solid #E5E7EB;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-product-live:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.about-product-soon {
  opacity: 0.72;
  background: linear-gradient(135deg, #F9FAFB 0%, #F1F5F9 100%);
  border-style: dashed;
  border-color: #CBD5E1;
}

.about-product-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Amber shimmer bar on live card */
.about-product-live-bar {
  height: 5px;
  background: linear-gradient(90deg, #3B82F6, #60A5FA, #2563EB, #3B82F6);
  background-size: 200% 100%;
  animation: about-shimmer 4s linear infinite;
}

@keyframes about-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.about-product-body {
  padding: 36px;
}

.about-product-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.about-product-name {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
}

.about-product-name-dim {
  color: #94A3B8;
  font-size: 1.375rem;
}

.about-product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 4px 12px;
}

.about-status-live {
  background-color: #DBEAFE;
  color: #1D4ED8;
}

.about-status-soon {
  background-color: #E2E8F0;
  color: #64748B;
}

.about-status-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: about-pulse 2s infinite;
}

.about-product-type {
  font-size: 0.8375rem;
  font-weight: 600;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.about-product-type-dim {
  color: #94A3B8;
}

.about-product-desc {
  font-size: 0.9875rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-product-desc-dim {
  color: #94A3B8;
}

.about-product-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  list-style: none;
}

.about-product-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-dark);
  font-weight: 500;
}

.about-product-facts li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #D1FAE5;
  color: var(--color-success);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-product-cta {
  display: inline-flex;
}

/* ════════════════════════════════════════════════════════════
   SECTION 6 — CTA
   Vibrant amber → orange gradient
   ════════════════════════════════════════════════════════════ */
.about-cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 40%, #1D4ED8 100%);
  position: relative;
  overflow: hidden;
}

.about-cta-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-cta-decor-1 {
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.08);
  top: -120px;
  right: -80px;
}

.about-cta-decor-2 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  bottom: -60px;
  left: 10%;
}

.about-cta-decor-3 {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.12);
  top: 30%;
  left: 5%;
}

.about-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-cta-label {
  color: rgba(255,255,255,0.75) !important;
}

.about-cta-headline {
  color: var(--color-white) !important;
  margin-bottom: 16px;
}

.about-cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-btn-primary {
  background: var(--color-white);
  color: #1D4ED8;
  border: 2px solid var(--color-white);
  font-weight: 700;
}

.about-cta-btn-primary:hover {
  background: transparent;
  color: var(--color-white);
}

.about-cta-btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
}

.about-cta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-card {
    position: static;
    max-width: 400px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-products-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-inline: auto;
  }

  .about-mission-quote {
    padding: 36px 32px;
  }
}

@media (max-width: 640px) {
  .about-hero-inner {
    padding-bottom: 60px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-mission-quote {
    padding: 28px 24px;
  }

  .about-product-body {
    padding: 28px 24px;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
