/* Technology page (matches cubig.ai/technology) */

.tech-page { background: #fff; color: rgb(23, 23, 25); }
.tech-page * { box-sizing: border-box; }

.tech-page h1,
.tech-page h2,
.tech-page h3,
.tech-page h4 {
    font-family: 'DM Sans', 'Pretendard', sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin: 0;
}

/* ─── HERO ─── */
.tech-hero {
    padding: 140px 0 96px;
    background: linear-gradient(180deg, #fff 0%, #faf7ff 100%);
    text-align: center;
}
.tech-hero__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}
.tech-hero__title {
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
}
.tech-hero__body {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(90, 90, 95);
    max-width: 720px;
    margin: 0 auto 32px;
}
.tech-hero__cta {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c34dfc 0%, #ff7fd6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.tech-hero__cta:hover { opacity: 0.88; }

/* ─── PROCESS ─── */
.tech-process {
    padding: 100px 0;
    background: #fbfbfd;
}
.tech-process__inner {
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 24px;
}
.tech-process__title {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.25;
    margin: 0 0 16px;
    max-width: 880px;
}
.tech-process__body {
    font-size: 16px;
    line-height: 1.65;
    color: rgb(90, 90, 95);
    max-width: 760px;
    margin: 0 0 48px;
}
.tech-process__pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.tech-process__pills li span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgb(220, 220, 226);
    background: #fff;
    font-size: 14px;
    color: rgb(50, 50, 55);
    font-weight: 500;
}
.tech-process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tech-step {
    background: #fff;
    border: 1px solid rgb(232, 232, 236);
    border-radius: 16px;
    padding: 28px;
}
.tech-step__num {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgb(155, 155, 160);
    margin-bottom: 12px;
}
.tech-step__title {
    font-size: 22px;
    margin: 0 0 10px;
}
.tech-step__body {
    color: rgb(90, 90, 95);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* ─── DIFFERENTIAL PRIVACY ─── */
.tech-dp {
    padding: 120px 0;
    background: #0e0e10;
    color: #fff;
}
.tech-dp__inner {
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 24px;
}
.tech-dp__title {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.25;
    color: #fff;
    margin: 0 0 16px;
    max-width: 880px;
}
.tech-dp__body {
    font-size: 16px;
    line-height: 1.65;
    color: rgb(170, 170, 180);
    max-width: 760px;
    margin: 0 0 48px;
}
.tech-dp__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.tech-dp__card {
    border-radius: 16px;
    padding: 32px;
}
.tech-dp__card--light {
    background: #1a1a1d;
    border: 1px solid #28282c;
}
.tech-dp__card--dark {
    background: linear-gradient(135deg, #2a1a3a 0%, #1a1a3a 100%);
    border: 1px solid #3a2a4a;
}
.tech-dp__card-title {
    font-size: 18px;
    color: #fff;
    margin: 0 0 24px;
}
.tech-dp__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tech-dp__list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgb(220, 220, 230);
    font-size: 15px;
    line-height: 1.5;
}
.tech-dp__list li:first-child { border-top: 0; }
.tech-dp__num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgb(155, 100, 220);
    flex-shrink: 0;
    width: 32px;
}

/* ─── PERFORMANCE BARS ─── */
.tech-perf {
    background: #1a1a1d;
    border-radius: 16px;
    padding: 32px;
}
.tech-perf__title {
    font-size: 16px;
    color: rgb(170, 170, 180);
    margin: 0 0 24px;
    font-weight: 500;
}
.tech-perf__row {
    display: grid;
    grid-template-columns: 180px 1fr 140px;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tech-perf__row:first-of-type { border-top: 0; }
.tech-perf__label {
    font-size: 14px;
    color: #fff;
}
.tech-perf__bar {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    height: 12px;
    overflow: hidden;
}
.tech-perf__fill {
    display: block;
    height: 100%;
    border-radius: 999px;
}
.tech-perf__fill--cubig {
    background: linear-gradient(90deg, #c34dfc 0%, #ff7fd6 100%);
}
.tech-perf__fill--conv {
    background: rgb(110, 110, 115);
}
.tech-perf__value {
    text-align: right;
    font-size: 14px;
    color: rgb(170, 170, 180);
}
.tech-perf__value--hl {
    color: #fff;
    font-weight: 600;
}

/* ─── ARCHITECTURE ─── */
.tech-arch {
    padding: 120px 0;
    background: #fff;
}
.tech-arch__inner {
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 24px;
}
.tech-arch__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(155, 100, 220);
    margin-bottom: 16px;
}
.tech-arch__title {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.25;
    margin: 0 0 16px;
    max-width: 760px;
}
.tech-arch__body {
    font-size: 16px;
    line-height: 1.65;
    color: rgb(90, 90, 95);
    max-width: 720px;
    margin: 0 0 48px;
}
.tech-arch__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tech-arch__card {
    background: #fbfbfd;
    border: 1px solid rgb(232, 232, 236);
    border-radius: 16px;
    padding: 32px;
}
.tech-arch__num {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgb(155, 155, 160);
    margin-bottom: 12px;
}
.tech-arch__card-title {
    font-size: 22px;
    margin: 0 0 12px;
}
.tech-arch__card-body {
    color: rgb(90, 90, 95);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* ─── CLOSING CTA ─── */
.tech-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, #fbfbfd 0%, #f4ecff 100%);
    text-align: center;
}
.tech-cta__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}
.tech-cta__title {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.25;
    margin: 0 0 20px;
}
.tech-cta__body {
    font-size: 16px;
    line-height: 1.65;
    color: rgb(90, 90, 95);
    margin: 0 0 32px;
}
.tech-cta__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c34dfc 0%, #ff7fd6 100%);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.tech-cta__btn:hover { opacity: 0.88; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .tech-process__steps,
    .tech-dp__cards {
        grid-template-columns: 1fr;
    }
    .tech-arch__grid {
        grid-template-columns: 1fr;
    }
    .tech-perf__row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .tech-perf__value {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .tech-hero { padding: 100px 0 64px; }
    .tech-process,
    .tech-dp,
    .tech-arch,
    .tech-cta { padding: 72px 0; }
    .tech-step,
    .tech-dp__card,
    .tech-arch__card,
    .tech-perf { padding: 24px; }
}
