/* ── HERO ──────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(73,53,181,0.22) 0%, transparent 65%); top: -100px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(239,62,45,0.12) 0%, transparent 65%); bottom: 10%; right: 10%; pointer-events: none; }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, #7A60E8 0%, #4935B5 45%, #EF3E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.7;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(73,53,181,0.45);
  background: rgba(73,53,181,0.12);
  color: #B0A0FF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

section {
  padding: 6rem 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* About content sections */
.mission {
  background: var(--ink-2);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.mission-content p {
  color: var(--muted);
  line-height: 1.8;
}

.stats-wrapper { position: relative; }
.stats-wrapper .stats { position: relative; z-index: 1; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background-color: var(--ink);
  padding: 2rem;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(160deg, rgba(73,53,181,0.55) 0%, rgba(134,187,216,0.25) 35%, rgba(255,255,255,0.06) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card-content {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Stat connectors */
.step-connectors { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
@media (max-width: 768px) { .step-connectors { display: none; } }

.suite {
  background: var(--ink);
}

.suite > .container > p {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 700px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--ink-2);
  padding: 2.5rem;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(160deg, rgba(73,53,181,0.55) 0%, rgba(134,187,216,0.25) 35%, rgba(255,255,255,0.06) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.product-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: fit-content;
}

.product-tag.purple {
  background-color: rgba(73,53,181,0.2);
  color: var(--blue);
}

.product-tag.red {
  background-color: rgba(239,62,45,0.2);
  color: var(--red);
}

.product-tag.blue {
  background-color: rgba(158,203,227,0.2);
  color: var(--blue);
}

.product-tag.gold {
  background-color: rgba(224,160,32,0.2);
  color: var(--gold);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.product-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.product-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.product-link:hover {
  gap: 0.8rem;
  color: var(--white);
}

.values {
  background: var(--ink-2);
}

.values h2 {
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--ink);
  padding: 2.5rem;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  padding: 1px;
  background: linear-gradient(160deg, rgba(73,53,181,0.55) 0%, rgba(134,187,216,0.25) 35%, rgba(255,255,255,0.06) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.value-card-content {
  position: relative;
  z-index: 1;
}

.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.value-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--white);
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.story {
  background: var(--ink);
}

.timeline {
  position: relative;
  padding: 2rem 0 2rem 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--purple);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--purple);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.timeline-item h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.timeline-item .year {
  font-size: 0.875rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  background: var(--lt-bg);
  color: var(--lt-text);
  text-align: center;
}

.cta h2 {
  color: var(--lt-text);
}

.cta p {
  color: var(--lt-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 20px;
  background: var(--purple);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(73,53,181,0.3);
}

.btn-secondary {
  padding: 14px 32px;
  border-radius: 20px;
  background: transparent;
  color: var(--lt-text);
  border: 2px solid var(--lt-border);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--lt-text);
  background: var(--lt-card);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 930px) {
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mission-content { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 7rem 1.25rem 4rem; }
  section { padding: 5rem 1.25rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }
}
