/* ══════════════════════════════════════════
   ABOUT PAGE — scoped styles
══════════════════════════════════════════ */
/* ---------- About Hero: solid blue, metrics-style ---------- */
.about-hero {
    padding: 180px 0 96px;
    background: #bae8f8;
    text-align: center;
}
.about-hero-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    margin-bottom: 24px;
}
.about-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    max-width: 802px;
    margin: 0 auto 24px;
    color: var(--text);
}
.accent-wordanywhere {
  color: var(--text);
  background: var(--accent);
  padding: 0 10px;
  border-radius: 8px;
  display: inline-block;
}
.about-hero-highlight {
    color: var(--text);
    background: #cff3ff;
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
}
.about-hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #000;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}
/* ---------- Our Story ---------- */
.about-story {
    padding: var(--section-pad) 0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.about-story-copy .section-title {
    text-align: left;
    margin: 0 0 24px;
}
.about-story-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-story-visual {
    display: grid;
}
.about-story-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    padding-left: 32px;
}
.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(to bottom, #dde2e8, #b7c0cc);
}
.about-story-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(155deg, #f6f6f8 0%, #ececef 100%);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 26px 32px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 22px 40px -28px rgba(15, 23, 42, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-story-card:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 28px 48px -26px rgba(15, 23, 42, 0.28);
}
.about-story-card.story1 { --story-accent-solid: #2563eb; --story-accent-grad: linear-gradient(135deg, #60a5fa, #2563eb); }
.about-story-card.story2 { --story-accent-solid: #9333ea; --story-accent-grad: linear-gradient(135deg, #c084fc, #9333ea); }
.about-story-card.story3 { --story-accent-solid: #ea580c; --story-accent-grad: linear-gradient(135deg, #fb923c, #ea580c); }
.about-story-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--story-accent-grad);
    box-shadow: 0 8px 16px -8px var(--story-accent-solid);
    transition: transform 0.25s ease;
}
.about-story-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.about-story-card:hover .about-story-icon {
    transform: scale(1.08) rotate(-4deg);
}
.about-story-node {
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c3cad3;
    transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.about-story-card:last-child .about-story-node {
    background: var(--story-accent-solid);
    border-color: var(--story-accent-solid);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--story-accent-solid) 18%, transparent);
}
.about-story-content { min-width: 0; }
.about-story-stat {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 6px;
}
.about-story-stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
/* ---------- Values grid ---------- */
.about-values {
    padding: 0 0 var(--section-pad);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-value-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--value-wash);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(20, 40, 60, 0.2);
}
.about-value-card.card1 {
    --value-accent-solid: #2563eb;
    --value-accent-grad: linear-gradient(135deg, #60a5fa, #2563eb);
    --value-wash: linear-gradient(160deg, #eaf2ff 0%, #ffffff 55%);
}
.about-value-card.card2 {
    --value-accent-solid: #9333ea;
    --value-accent-grad: linear-gradient(135deg, #c084fc, #9333ea);
    --value-wash: linear-gradient(160deg, #f6ecff 0%, #ffffff 55%);
}
.about-value-card.card3 {
    --value-accent-solid: #ea580c;
    --value-accent-grad: linear-gradient(135deg, #fb923c, #ea580c);
    --value-wash: linear-gradient(160deg, #fff3e8 0%, #ffffff 55%);
}
.about-value-body {
    padding: 32px 32px 24px;
}
.about-value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--value-accent-grad);
    box-shadow: 0 8px 16px -8px var(--value-accent-solid);
    transition: transform 0.25s ease;
}
.about-value-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.about-value-card:hover .about-value-icon {
    transform: scale(1.08) rotate(-4deg);
}
.about-value-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--value-accent-solid);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}
.about-value-card h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.about-value-footer {
    padding: 18px 32px 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.about-value-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 56px;
}
.about-value-bars span {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: #e4e4e7;
}
.about-value-bars span.hl {
    background: var(--value-accent-grad);
}
.about-value-flow {
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-value-flow .pill {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.about-value-flow .pill-tint {
    background: rgba(147, 51, 234, 0.12);
    color: var(--value-accent-solid);
}
.about-value-flow .pill-neutral {
    background: #f0f0f2;
    color: var(--text-muted);
}
.about-value-flow .pill-filled {
    background: var(--value-accent-grad);
    color: #fff;
    margin-left: auto;
}
.about-value-flow .dash {
    flex: 1;
    height: 0;
    border-top: 2px dashed var(--value-accent-solid);
    opacity: 0.35;
    min-width: 8px;
}
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 72px;
    }
    .about-story-copy .section-title {
        text-align: center;
    }
    .about-story-copy {
        text-align: center;
    }
    .about-story-timeline {
        padding-left: 28px;
    }
    .about-story-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.privacytitle	{
	font-size: 22px;
}