*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

:root {
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --text: #0f1117;
    --muted: #6b7280;
    --light: #f5f6fa;
    --bg: #f8f9fc;
    --border: rgba(0, 0, 0, 0.07);
    --white: #ffffff;
    --accent: #3f51b5;
    --accent-light: rgba(63, 81, 181, 0.08);
    --accent-mid: rgba(63, 81, 181, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: 0.06em;
}

.nav-logo .logo-mark {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .logo-mark svg {
    width: 17px;
    height: 17px;
    fill: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-cta {
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

/* ── HERO ── */
.about-hero {
    padding: 100px 40px 60px;
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid var(--accent-mid);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0px 14px;
    height: 30px;
    border-radius: 99px;
    margin-bottom: 25px;
}

.about-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-hero h1 em {
    font-style: normal;
    color: var(--blue);
}

.about-hero p {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
}

/* ── DIVIDER ── */
.section-divider {
    width: 80%;
    height: 1px;
    background: var(--border);
    max-width: 1080px;
    margin: 0 auto;
}

/* ── ORIGIN STORY ── */
.origin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px !important;
    align-items: center;
}

.origin-text .label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.origin-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.origin-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.origin-text p strong {
    color: var(--text);
    font-weight: 500;
}

.origin-visual {
    position: relative;
}

.origin-card {
    background: var(--light);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.origin-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(63, 81, 181, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.oc-quote {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.55;
    margin: 24px 0;
    position: relative;
}

.oc-quote::before {
    content: '"';
    font-size: 4rem;
    line-height: 1;
    color: var(--blue);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -8px;
    font-family: Georgia, serif;
}

.oc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oc-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #c3d2ee99;
}

.oc-author-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.oc-author-text span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── MISSION ── */
.mission {
    background: var(--text);
    padding: 40px 60px;
}

.mission-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.mission-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}

.mission-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.mission-statement {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.mission-statement em {
    font-style: normal;
    color: rgba(124, 143, 245, 0.9);
}

/* ── VALUES ── */
.values {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px;
}

.values-header {
    margin-bottom: 30px;
}

.values-header .label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.values-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.value-item {
    background: white;
    padding: 32px 28px;
    transition: background 0.2s;
}

.value-item:hover {
    background: #fafbff;
}

.value-num {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue);
    opacity: 0.5;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.value-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
}

/* ── FOUNDER ── */
.founder {
    background: var(--light);
    padding: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.founder-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
}

.founder-left .label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.founder-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.founder-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: auto;
}

.founder-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 500;
}

.founder-right p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 16px;
}

.founder-right p:last-child {
    margin-bottom: 0;
}

.founder-right strong {
    color: var(--text);
    font-weight: 500;
}

/* ── NUMBERS ── */
.numbers {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.number-item {
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

.number-item:first-child {
    padding-left: 0;
}

.number-item:last-child {
    border-right: none;
}

.number-val {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.number-val span {
    color: var(--blue);
}

.number-label {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
}

/* ── CTA ── */

.about-cta {
    background: var(--blue);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.about-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
}

.about-cta>* {
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 26px;
    position: relative;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.hero-form {
    display: flex;
    gap: 10px;
    margin: 0px;
    max-width: 600px;
}

.hero-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(63, 81, 181, 0.18);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
    width: 250px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.hero-form input::placeholder {
    color: #b0b5c9;
}


.btn-cta {
    background: white;
    color: var(--blue);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #f0f2ff;
    transform: translateY(-1px);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── FOOTER ── */
footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer span {
    font-size: 0.8rem;
    color: #c0c5d8;
}

footer a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--blue);
}

/* ── Entrance animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero>* {
    animation: fadeUp 0.7s ease both;
}

.about-hero>*:nth-child(1) {
    animation-delay: 0.05s;
}

.about-hero>*:nth-child(2) {
    animation-delay: 0.15s;
}

.about-hero>*:nth-child(3) {
    animation-delay: 0.25s;
}