/* ================================================================
   About Page — about.css
   ================================================================ */

.section-eyebrow {
    display: inline-flex; align-items: center;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: #4f46e5; background: #ede9fe;
    padding: 0.25rem 0.85rem; border-radius: 20px;
    margin-bottom: 0.85rem;
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.about-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 60%, #fafafe 100%);
    text-align: center; position: relative; overflow: hidden;
}

.about-hero-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(80px); opacity: 0.3;
}

.orb-a {
    width: 380px; height: 380px;
    background: #c4b5fd; top: -120px; right: -80px;
}

.orb-b {
    width: 220px; height: 220px;
    background: #a5b4fc; bottom: -60px; left: -50px;
}

.about-hero-inner {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
}

.about-hero-title {
    font-size: 2.8rem; font-weight: 900;
    color: #111827; letter-spacing: -1px;
    line-height: 1.15; margin-bottom: 1rem;
}

.about-hero-accent {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-desc {
    font-size: 1rem; color: #6b7280;
    line-height: 1.7; margin-bottom: 2rem;
}

/* Stat pills */
.about-hero-stats {
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap; gap: 0;
    background: #fff; border: 1.5px solid #f3f4f6;
    border-radius: 14px; padding: 1rem 1.5rem;
    display: inline-flex;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.about-stat-pill { text-align: center; padding: 0 1.25rem; }

.about-stat-value {
    font-size: 1.1rem; font-weight: 900; color: #111827;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.65rem; color: #9ca3af; margin-top: 3px;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.about-stat-divider {
    width: 1.5px; height: 32px; background: #f3f4f6; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   STORY
   ════════════════════════════════════════════════════════════════ */
.about-story-section {
    padding: 5rem 0; background: #fff;
}

.about-story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: flex-start;
}

.about-story-title {
    font-size: 1.75rem; font-weight: 900; color: #111827;
    letter-spacing: -0.5px; line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-story-body p {
    font-size: 0.9rem; color: #4b5563; line-height: 1.8;
    margin-bottom: 1rem;
}

.about-story-body p:last-child { margin-bottom: 0; }

.about-story-body em { color: #4f46e5; font-style: italic; }

/* Timeline */
.about-story-timeline {
    display: flex; flex-direction: column; gap: 0;
}

.about-timeline-item {
    display: flex; gap: 1rem; position: relative;
    padding-bottom: 1.5rem;
}

.about-timeline-item:last-child { padding-bottom: 0; }

.about-timeline-dot {
    width: 14px; height: 14px; border-radius: 50%;
    background: #e5e7eb; border: 2px solid #fff;
    box-shadow: 0 0 0 2px #e5e7eb;
    flex-shrink: 0; margin-top: 4px; z-index: 1;
    position: relative;
}

.about-timeline-dot::after {
    content: '';
    position: absolute; left: 50%; top: 100%;
    transform: translateX(-50%);
    width: 2px; height: calc(100% + 1.5rem);
    background: linear-gradient(180deg, #e5e7eb 0%, #f3f4f6 100%);
}

.about-timeline-item:last-child .about-timeline-dot::after {
    display: none;
}

.about-timeline-dot.first  { background: #4f46e5; box-shadow: 0 0 0 3px #ede9fe; }
.about-timeline-dot.latest { background: linear-gradient(135deg, #4f46e5, #7c3aed); box-shadow: 0 0 0 3px #ede9fe; width: 16px; height: 16px; }
.about-timeline-dot.future { background: #f3f4f6; border: 2px dashed #d1d5db; box-shadow: none; }

.about-timeline-card {
    flex: 1; background: #f9fafb;
    border: 1.5px solid #f3f4f6;
    border-radius: 12px; padding: 1rem 1.1rem;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.about-timeline-card:hover {
    box-shadow: 0 4px 16px rgba(79,70,229,0.08);
    border-color: #e0e7ff;
}

.about-timeline-card.latest {
    border-color: #c4b5fd;
    background: linear-gradient(135deg, #fafafe, #f5f3ff);
}

.about-timeline-card.future {
    border-style: dashed; border-color: #e5e7eb;
    background: #fafafa;
}

.about-timeline-date {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: #9ca3af; margin-bottom: 0.3rem;
}

.about-timeline-title {
    font-size: 0.875rem; font-weight: 800;
    color: #111827; margin-bottom: 0.35rem; line-height: 1.3;
}

.about-timeline-card.future .about-timeline-title { color: #9ca3af; }

.about-timeline-desc {
    font-size: 0.78rem; color: #6b7280; line-height: 1.55;
}

.about-timeline-badge {
    display: inline-flex; align-items: center;
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff; padding: 0.15rem 0.5rem;
    border-radius: 20px; margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════════ */
.about-team-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 60%, #fafafe 100%);
}

.about-section-header {
    text-align: center; max-width: 600px;
    margin: 0 auto 2.5rem;
}

.about-section-title {
    font-size: 2rem; font-weight: 900; color: #111827;
    letter-spacing: -0.5px; margin-bottom: 0.75rem; line-height: 1.2;
}

.about-section-desc {
    font-size: 0.9rem; color: #6b7280; line-height: 1.7; margin: 0;
}

/* Team card */
.about-team-card {
    display: flex; align-items: flex-start; gap: 2rem;
    background: #fff; border: 1.5px solid #f3f4f6;
    border-radius: 20px; padding: 2rem;
    max-width: 780px; margin: 0 auto;
    box-shadow: 0 8px 32px rgba(79,70,229,0.08);
}

/* Avatar */
.about-team-avatar { position: relative; flex-shrink: 0; }

.about-avatar-ring {
    width: 88px; height: 88px; border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex; align-items: center; justify-content: center;
    padding: 3px;
}

.about-avatar-inner {
    width: 100%; height: 100%; border-radius: 50%;
    background: #ede9fe;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; color: #4f46e5;
}

.about-avatar-badge {
    position: absolute; bottom: 2px; right: 2px;
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #4f46e5;
}

/* Team info */
.about-team-info { flex: 1; }

.about-team-name {
    font-size: 1.25rem; font-weight: 900;
    color: #111827; margin-bottom: 0.2rem;
}

.about-team-role {
    font-size: 0.78rem; font-weight: 600;
    color: #4f46e5; margin-bottom: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}

.about-team-bio {
    font-size: 0.875rem; color: #4b5563;
    line-height: 1.75; margin-bottom: 1.25rem;
}

/* Team links */
.about-team-links {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}

.about-team-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600;
    padding: 0.35rem 0.85rem; border-radius: 9px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
    border: 1.5px solid transparent;
}

.about-team-link:hover { opacity: 0.85; transform: translateY(-1px); }

.about-team-link.telegram { background: #dbeafe; color: #2563eb; border-color: #bfdbfe; }
.about-team-link.email    { background: #ede9fe; color: #4f46e5; border-color: #c4b5fd; }
.about-team-link.youtube  { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.about-team-link.website  { background: #f3f4f6; color: #374151; border-color: #e5e7eb; }

/* ════════════════════════════════════════════════════════════════
   TECH STACK
   ════════════════════════════════════════════════════════════════ */
.about-stack-section {
    padding: 5rem 0; background: #fff;
}

.about-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px; margin: 0 auto;
}

.about-stack-card {
    background: #f9fafb; border: 1.5px solid #f3f4f6;
    border-radius: 14px; padding: 1.25rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}

.about-stack-card:hover {
    box-shadow: 0 4px 16px rgba(79,70,229,0.08);
    border-color: #e0e7ff; transform: translateY(-2px);
}

.about-stack-icon {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 0.85rem;
}

.about-stack-icon.blue   { background: #dbeafe; color: #2563eb; }
.about-stack-icon.indigo { background: #ede9fe; color: #4f46e5; }
.about-stack-icon.cyan   { background: #cffafe; color: #0891b2; }
.about-stack-icon.green  { background: #d1fae5; color: #059669; }
.about-stack-icon.purple { background: #f3e8ff; color: #7c3aed; }
.about-stack-icon.amber  { background: #fef3c7; color: #d97706; }
.about-stack-icon.teal   { background: #ccfbf1; color: #0d9488; }
.about-stack-icon.rose   { background: #ffe4e6; color: #e11d48; }

.about-stack-name {
    font-size: 0.82rem; font-weight: 800;
    color: #111827; margin-bottom: 0.35rem;
}

.about-stack-desc {
    font-size: 0.72rem; color: #6b7280; line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   VALUES
   ════════════════════════════════════════════════════════════════ */
.about-values-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, #fafafe 0%, #f0f0ff 60%, #fafafe 100%);
}

.about-values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem; max-width: 900px; margin: 0 auto;
}

.about-value-card {
    background: #fff; border: 1.5px solid #f3f4f6;
    border-radius: 16px; padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.about-value-card:hover {
    box-shadow: 0 4px 20px rgba(79,70,229,0.08);
    border-color: #c4b5fd;
}

.about-value-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #ede9fe; color: #4f46e5;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
}

.about-value-title {
    font-size: 0.9rem; font-weight: 800;
    color: #111827; margin-bottom: 0.5rem;
}

.about-value-desc {
    font-size: 0.78rem; color: #6b7280; line-height: 1.65; margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   COMPANY + CTA
   ════════════════════════════════════════════════════════════════ */
.about-company-section {
    padding: 5rem 0; background: #fff;
}

.about-company-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 2rem; align-items: stretch; max-width: 900px; margin: 0 auto;
}

/* Company card */
.about-company-card {
    background: #f9fafb; border: 1.5px solid #f3f4f6;
    border-radius: 18px; padding: 1.75rem;
    display: flex; flex-direction: column;
}

.about-company-logo {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
}

.about-company-name {
    font-size: 1rem; font-weight: 900; color: #111827;
    margin-bottom: 0.2rem; line-height: 1.3;
}

.about-company-tagline {
    font-size: 0.78rem; color: #9ca3af;
    margin-bottom: 1.25rem; font-style: italic;
}

.about-company-details {
    display: flex; flex-direction: column; gap: 0.55rem;
    margin-bottom: 1.25rem; flex: 1;
}

.about-company-row {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.78rem; color: #374151; font-weight: 500;
}

.about-company-row i { color: #4f46e5; font-size: 0.78rem; flex-shrink: 0; }

.about-company-row a {
    color: #4f46e5; text-decoration: none; font-weight: 600;
}

.about-company-row a:hover { text-decoration: underline; }

.about-company-products {
    border-top: 1.5px solid #f3f4f6; padding-top: 1rem;
}

.about-company-products-label {
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: #9ca3af; margin-bottom: 0.6rem;
}

.about-company-product {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.82rem; font-weight: 700; color: #374151;
}

.about-company-product i { color: #4f46e5; }

.about-product-badge {
    font-size: 0.62rem; font-weight: 700;
    background: #d1fae5; color: #065f46;
    padding: 0.1rem 0.45rem; border-radius: 20px;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-left: auto;
}

/* CTA card */
.about-cta-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 18px; padding: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}

.about-cta-orb {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%; background: rgba(255,255,255,0.06);
    top: -120px; right: -80px; pointer-events: none;
}

.about-cta-inner {
    position: relative; z-index: 1; text-align: center;
}

.about-cta-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff;
    margin: 0 auto 1.25rem;
}

.about-cta-title {
    font-size: 1.35rem; font-weight: 900;
    color: #fff; letter-spacing: -0.3px;
    line-height: 1.25; margin-bottom: 0.75rem;
}

.about-cta-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.75);
    line-height: 1.65; margin-bottom: 1.5rem;
}

.about-cta-buttons {
    display: flex; justify-content: center;
    gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}

.btn-about-primary {
    display: inline-flex; align-items: center;
    background: #fff; color: #4f46e5;
    text-decoration: none;
    font-size: 0.875rem; font-weight: 700;
    padding: 0.7rem 1.25rem; border-radius: 11px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: opacity 0.15s, transform 0.1s;
}

.btn-about-primary:hover {
    opacity: 0.92; transform: translateY(-1px); color: #4f46e5;
}

.btn-about-secondary {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.12); color: #fff;
    text-decoration: none;
    font-size: 0.875rem; font-weight: 600;
    padding: 0.7rem 1.25rem; border-radius: 11px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.15s;
}

.btn-about-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }

.about-cta-links {
    display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}

.about-cta-links a {
    font-size: 0.72rem; color: rgba(255,255,255,0.55);
    text-decoration: none; font-weight: 500;
    transition: color 0.15s;
}

.about-cta-links a:hover { color: #fff; }
.about-cta-links span    { color: rgba(255,255,255,0.25); font-size: 0.7rem; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-stack-grid  { grid-template-columns: repeat(3, 1fr); }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .about-story-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-company-grid { grid-template-columns: 1fr; }
    .about-team-card    { flex-direction: column; align-items: center; text-align: center; }
    .about-team-links   { justify-content: center; }
    .about-stack-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .about-hero-title   { font-size: 2rem; }
    .about-section-title { font-size: 1.6rem; }
    .about-story-title  { font-size: 1.4rem; }
    .about-hero-stats   { flex-direction: column; gap: 0.75rem; }
    .about-stat-divider { width: 80px; height: 1.5px; }
    .about-stack-grid   { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid  { grid-template-columns: 1fr; }
    .about-cta-buttons  { flex-direction: column; align-items: center; }
    .btn-about-primary,
    .btn-about-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
    .about-stack-grid { grid-template-columns: 1fr; }
}

