/* ================================================
   HERO
================================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 75% 85% at 50% 50%, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 75% 85% at 50% 50%, black 20%, transparent 75%);
}

.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, .065) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Floating gradient orbs — subtle depth & dynamism */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    opacity: .5;
    will-change: transform;
}

.orb-1 {
    width: 8px;
    height: 8px;
    background: var(--blue);
    top: 22%;
    left: 12%;
    box-shadow: 0 0 24px 4px var(--blue-glow);
    animation: float-y 7s ease-in-out infinite;
}

.orb-2 {
    width: 5px;
    height: 5px;
    background: var(--chrome);
    top: 65%;
    left: 20%;
    box-shadow: 0 0 16px 3px rgba(192, 212, 232, .3);
    animation: float-y 9s ease-in-out infinite 1.2s;
}

.orb-3 {
    width: 10px;
    height: 10px;
    background: var(--blue);
    top: 30%;
    right: 14%;
    box-shadow: 0 0 28px 5px var(--blue-glow);
    animation: float-y 8s ease-in-out infinite .6s;
}

.orb-4 {
    width: 6px;
    height: 6px;
    background: var(--chrome);
    top: 72%;
    right: 22%;
    box-shadow: 0 0 18px 3px rgba(192, 212, 232, .25);
    animation: float-y 6.5s ease-in-out infinite 2s;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-26px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 14px;
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .22);
    border-radius: 100px;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 30px;
}

.hero-badge i {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.75);
    }
}

.hero-h1 {
    font-family: var(--f-display);
    font-size: clamp(38px, 6.5vw, 78px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-h1 .l2 {
    display: block;
    font-size: clamp(30px, 5vw, 62px);
}

.hero-p {
    font-size: clamp(14px, 1.7vw, 17px);
    color: var(--text-sec);
    max-width: 530px;
    line-height: 1.78;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

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

.metric {
    background: var(--bg);
    padding: 22px 18px;
    position: relative;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .35), transparent);
}

.metric-v {
    font-family: var(--f-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 700;
    color: var(--chrome);
    line-height: 1;
    margin-bottom: 7px;
}

.metric-l {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-sec);
}

/* ================================================
   COMPARATIVO — DOR vs SOLUÇÃO
   Bento-style: lado "bad" sutil/recuado, lado "good"
   em destaque com borda-gradiente animada + glassmorphism.
================================================ */
.compare {
    padding: 110px 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .02) 45%, transparent);
    overflow: hidden;
}

.compare-head {
    text-align: center;
    margin-bottom: 60px;
}

.compare-head .label {
    justify-content: center;
}

.compare-head .label::before {
    display: none;
}

.compare-head .sec-sub {
    margin: 0 auto;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.05fr;
    align-items: center;
    column-gap: 28px;
}

/* ---- shared badge ---- */
.compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.compare-badge--bad {
    color: var(--text-sec);
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(192, 212, 232, .1);
}

.compare-badge--good {
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .32);
    box-shadow: 0 0 16px rgba(59, 130, 246, .16);
}

.compare-badge--good svg {
    width: 13px;
    height: 13px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- shared list ---- */
.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.compare-ic {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.compare-list p {
    font-size: 14px;
    line-height: 1.65;
}

/* ---- "bad" card: subtle, recedes into the background ---- */
.compare-card--bad {
    padding: 34px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(192, 212, 232, .08);
    opacity: .78;
    transition: opacity var(--dur-base) ease, border-color var(--dur-base) ease;
}

.compare-card--bad:hover {
    opacity: .94;
    border-color: rgba(192, 212, 232, .16);
}

.compare-card--bad .compare-ic {
    stroke: rgba(248, 113, 113, .55);
}

.compare-card--bad .compare-list p {
    color: var(--text-sec);
}

/* ---- "good" card: gradient-glow border + glassmorphism ---- */
.compare-card-good-wrap {
    position: relative;
    padding: 1.5px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue) 0%, rgba(59, 130, 246, .12) 30%, var(--chrome) 55%, var(--blue) 100%);
    background-size: 220% 220%;
    animation: border-flow 7s ease infinite;
    box-shadow: 0 0 44px rgba(59, 130, 246, .22), 0 24px 60px rgba(6, 12, 24, .55);
    transition: box-shadow var(--dur-slow) ease, transform var(--dur-slow) ease;
}

.compare-card-good-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 64px rgba(59, 130, 246, .4), 0 30px 70px rgba(6, 12, 24, .65);
}

.compare-card--good {
    position: relative;
    height: 100%;
    border-radius: 18.5px;
    background: rgba(8, 15, 30, .82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 38px 34px;
}

.compare-card--good .compare-ic {
    stroke: var(--blue);
    margin-top: 3px;
}

.compare-list--good li {
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: 10px;
    transition: background var(--dur-fast) ease;
}

.compare-list--good li:hover {
    background: rgba(59, 130, 246, .07);
}

.compare-list--good .compare-ic {
    margin-top: 5px;
}

.compare-metric {
    display: inline-block;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .28);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.compare-list--good p {
    color: var(--text);
}

@keyframes border-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ---- connector arrow ---- */
.compare-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .3);
    color: var(--blue);
    z-index: 2;
}

.compare-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.compare-arrow-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, .25);
    animation: ring-pulse 2.6s ease-out infinite;
}

@keyframes ring-pulse {
    0% {
        transform: scale(.85);
        opacity: .8;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* ================================================
   SERVICES
================================================ */
.services {
    padding: 100px 0;
}

.services-head {
    text-align: center;
    margin-bottom: 56px;
}

.services-head .label {
    justify-content: center;
}

.services-head .label::before {
    display: none;
}

.services-head .sec-sub {
    margin: 0 auto;
}

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

.srv-card {
    background: var(--bg);
    padding: 34px 30px;
    position: relative;
    cursor: pointer;
    transition: background .3s;
}

body.has-fine-pointer .srv-card {
    cursor: none;
}

.srv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--blue-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.srv-card:hover {
    background: var(--bg-card);
}

.srv-card:hover::after {
    opacity: 1;
}

.srv-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .3s;
}

.srv-card:hover .srv-icon {
    border-color: rgba(59, 130, 246, .4);
    box-shadow: 0 0 18px rgba(59, 130, 246, .14);
    transform: translateY(-2px);
}

.srv-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srv-title {
    font-family: var(--f-head);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 9px;
}

.srv-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.68;
}

/* ================================================
   HOW IT WORKS
================================================ */
.how {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .016) 50%, transparent);
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.steps {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.step {
    display: flex;
    gap: 18px;
    padding: 26px 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 62px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(59, 130, 246, .3) 0%, transparent 100%);
}

.step-n {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(59, 130, 246, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-dim);
}

.step-title {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.65;
}

/* MOCKUP */
.mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mk-bar {
    background: var(--blue-dim);
    border-bottom: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.mk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mk-name {
    font-family: var(--f-display);
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--text-sec);
    margin-left: auto;
}

.mk-body {
    padding: 20px;
}

.mk-label {
    font-family: var(--f-display);
    font-size: 10px;
    letter-spacing: 2.5px;
    color: var(--text-sec);
    margin-bottom: 16px;
}

.sp-row {
    display: grid;
    grid-template-columns: 90px 1fr 44px;
    gap: 12px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(59, 130, 246, .06);
}

.sp-row:last-of-type {
    border: none;
}

.sp-lbl {
    font-family: var(--f-head);
    font-size: 11px;
    color: var(--text-sec);
    letter-spacing: .8px;
}

.sp-track {
    height: 5px;
    background: rgba(59, 130, 246, .08);
    border-radius: 100px;
    overflow: hidden;
}

.sp-fill {
    height: 100%;
    border-radius: 100px;
    animation: fill 2.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes fill {
    from {
        width: 0;
    }
}

.sp-pct {
    font-family: var(--f-display);
    font-size: 10px;
    color: var(--chrome);
    text-align: right;
}

.mk-chips {
    display: flex;
    gap: 7px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.chip {
    padding: 3px 9px;
    border-radius: 100px;
    font-family: var(--f-head);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chip-g {
    background: rgba(34, 197, 94, .1);
    color: var(--success);
}

.chip-b {
    background: var(--blue-dim);
    color: var(--blue);
}

.chip-c {
    background: var(--chrome-faint);
    color: var(--chrome);
}

/* ================================================
   WHY BYTRIX
================================================ */
.why {
    padding: 100px 0;
}

.why-head {
    text-align: center;
    margin-bottom: 58px;
}

.why-head .label {
    justify-content: center;
}

.why-head .label::before {
    display: none;
}

.why-head .sec-sub {
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-chr);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}

body.has-fine-pointer .why-card {
    cursor: none;
}

.why-card::before,
.why-card::after {
    content: '';
    position: absolute;
}

.why-card::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), transparent);
    transition: width .4s ease;
}

.why-card::after {
    left: 0;
    bottom: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(0deg, var(--blue), transparent);
    transition: height .4s ease .08s;
}

.why-card:hover {
    border-color: rgba(59, 130, 246, .22);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(6, 12, 24, .65), 0 0 0 1px rgba(59, 130, 246, .09);
}

.why-card:hover::before {
    width: 100%;
}

.why-card:hover::after {
    height: 100%;
}

.why-n {
    font-family: var(--f-display);
    font-size: 68px;
    font-weight: 900;
    color: rgba(59, 130, 246, .05);
    line-height: 1;
    position: absolute;
    top: -10px;
    right: 14px;
    pointer-events: none;
}

.why-title {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 9px;
    position: relative;
}

.why-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.65;
    position: relative;
}

/* ================================================
   STACK
================================================ */
.stack {
    padding: 80px 0;
}

.stack-head {
    text-align: center;
    margin-bottom: 44px;
}

.stack-head .label {
    justify-content: center;
}

.stack-head .label::before {
    display: none;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
}

.tag {
    padding: 7px 15px;
    background: var(--chrome-faint);
    border: 1px solid var(--border-chr);
    border-radius: var(--radius-sm);
    font-family: var(--f-head);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--chrome);
    cursor: pointer;
    transition: all .25s;
}

body.has-fine-pointer .tag {
    cursor: none;
}

.tag:hover {
    background: var(--blue-dim);
    border-color: rgba(59, 130, 246, .3);
    color: var(--blue);
    box-shadow: 0 0 12px rgba(59, 130, 246, .09);
    transform: translateY(-2px);
}

/* ================================================
   TESTIMONIALS
================================================ */
.testi {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .014) 50%, transparent);
}

.testi-head {
    text-align: center;
    margin-bottom: 56px;
}

.testi-head .label {
    justify-content: center;
}

.testi-head .label::before {
    display: none;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.t-card {
    background: var(--bg-card);
    border: 1px solid var(--border-chr);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: transform .3s, border-color .3s;
}

.t-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, .2);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.star {
    width: 13px;
    height: 13px;
    fill: var(--warning);
}

.t-text {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.78;
    margin-bottom: 22px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.t-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
}

.t-name {
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 600;
}

.t-role {
    font-size: 12px;
    color: var(--text-sec);
}

/* ================================================
   CTA / CONTACT
================================================ */
.cta-sec {
    padding: 100px 0;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-h {
    font-family: var(--f-display);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 14px;
}

.cta-p {
    color: var(--text-sec);
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 44px;
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.c-field label {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .6px;
    color: var(--text-sec);
}

.c-input {
    width: 100%;
    padding: 13px 18px;
    background: rgba(10, 20, 40, .8);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
    min-height: 44px;
}

.c-input:focus {
    border-color: rgba(59, 130, 246, .45);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .08);
}

.c-input::placeholder {
    color: var(--text-sec);
}

.c-input:invalid.touched {
    border-color: rgba(239, 68, 68, .5);
}

.c-err {
    font-size: 12px;
    color: #F87171;
    min-height: 16px;
}

.c-note {
    font-size: 12px;
    color: var(--text-sec);
    margin-top: 6px;
}

/* ================================================
   QUEM SOMOS — Bento grid
================================================ */
.about {
    padding: 100px 0;
}

.about-head {
    text-align: center;
    margin-bottom: 48px;
}

.about-head .label {
    justify-content: center;
}

.about-head .label::before {
    display: none;
}

.about-head .sec-sub {
    margin: 0 auto;
}

/* shared bento tile */
.about-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-chr);
    border-radius: var(--radius-lg);
    padding: 40px 38px;
    overflow: hidden;
    transition: transform var(--dur-base) ease, border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
}

.about-card::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    top: -90px;
    right: -90px;
    background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 70%);
    pointer-events: none;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, .2);
    box-shadow: 0 18px 40px rgba(6, 12, 24, .5), 0 0 0 1px rgba(59, 130, 246, .05);
}

.about-eyebrow {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .22);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    position: relative;
}

.about-manifesto {
    margin-bottom: 20px;
}

.about-leaders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.about-manifesto p {
    position: relative;
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-manifesto p:last-child {
    margin-bottom: 0;
}

.about-founder {
    display: flex;
    flex-direction: column;
}

.about-founder-id {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.about-founder-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
}

.about-founder-name {
    font-family: var(--f-head);
    font-size: 16px;
    font-weight: 600;
}

.about-founder-role {
    font-size: 12px;
    color: var(--text-sec);
}

.about-founder-quote {
    position: relative;
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 22px;
}

.about-founder-stack {
    position: relative;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.about-founder-stack li {
    font-family: var(--f-head);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--chrome);
    background: var(--chrome-faint);
    border: 1px solid var(--border-chr);
    padding: 5px 11px;
    border-radius: var(--radius-sm);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 28px 20px;
    text-align: center;
}

.stat-card::before {
    width: 160px;
    height: 160px;
    top: -60px;
    right: 50%;
    transform: translateX(50%);
}

.stat-card .metric-v {
    position: relative;
    font-family: var(--f-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    color: var(--chrome);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .metric-l {
    position: relative;
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-sec);
}

/* ================================================
   FAQ
================================================ */
.faq {
    padding: 100px 0;
}

.faq-head {
    text-align: center;
    margin-bottom: 56px;
}

.faq-head .label {
    justify-content: center;
}

.faq-head .label::before {
    display: none;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-item {
    background: var(--bg);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 26px;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--f-head);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: color .2s;
    min-height: 44px;
}

body.has-fine-pointer .faq-q {
    cursor: none;
}

.faq-q:hover {
    color: var(--chrome);
}

.faq-q.open {
    color: var(--blue);
}

.faq-ic {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
    color: currentColor;
}

.faq-ic::before,
.faq-ic::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 1px;
}

.faq-ic::before {
    width: 12px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-ic::after {
    width: 1.5px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s;
}

.faq-q.open .faq-ic::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4, 0, .2, 1);
}

.faq-a-inner {
    padding: 0 26px 20px;
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.78;
}

/* ================================================
   FOOTER
================================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 76px 0 38px;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.ft-logo {
    display: block;
    margin-bottom: 16px;
}

.ft-logo img {
    max-width: 140px;
    height: auto;
}

.ft-about {
    font-family: var(--f-head);
    font-size: 13px;
    color: var(--text-sec);
    letter-spacing: .5px;
    line-height: 1.72;
}

.ft-col-h {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--chrome);
    margin-bottom: 18px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ft-links a {
    font-size: 13.5px;
    color: var(--text-sec);
    text-decoration: none;
    transition: color .2s;
}

.ft-links a:hover,
.ft-links a:focus-visible {
    color: var(--text);
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    gap: 12px;
    flex-wrap: wrap;
}

.ft-copy {
    font-size: 12.5px;
    color: var(--text-sec);
}

.ft-tag {
    font-family: var(--f-display);
    font-size: 10px;
    letter-spacing: 3.5px;
    color: var(--blue);
    text-transform: uppercase;
}
