.hero {
    padding: 84px 0 40px;
    text-align: center;
}

.hero .eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    margin: 0 auto;
    max-width: 14ch;
}

.hero .lead {
    max-width: 600px;
    margin: 24px auto 0;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
    flex-wrap: wrap;
}

.beam {
    position: absolute;
    top: -40px;
    right: 12%;
    width: 360px;
    height: 620px;
    background: linear-gradient(180deg, rgba(190, 255, 110, 0.14), transparent 70%);
    transform: rotate(22deg);
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Bento showcase ---------- */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 130px;
    gap: 16px;
    margin-top: 56px;
}

.bento>div {
    background: linear-gradient(180deg, var(--card-top), var(--card-bot));
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(6px);
}

.b-eng {
    grid-column: span 2;
    grid-row: span 2;
}

.b-pipe {
    grid-column: span 4;
    grid-row: span 2;
}

.b-core {
    grid-column: span 3;
    grid-row: span 3;
}

.b-globe {
    grid-column: span 3;
    grid-row: span 2;
}

.b-comp {
    grid-column: span 3;
    grid-row: span 3;
}

.b-score {
    grid-column: span 2;
    grid-row: span 2;
}

.b-sec {
    grid-column: span 4;
    grid-row: span 2;
}

.b-card-title {
    font-family: "Sora", sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* engagement bars */
.b-eng .big {
    font-family: "Sora", sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.b-eng .sub {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 14px;
}

.bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bars span {
    height: 9px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), oklch(0.7 0.13 165));
    opacity: 0.85;
}

.bars span:nth-child(2) {
    width: 88%
}

.bars span:nth-child(3) {
    width: 72%
}

.bars span:nth-child(4) {
    width: 94%
}

.bars span:nth-child(5) {
    width: 60%
}

/* pipeline */
.pipe-steps {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pipe-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-2);
    padding: 9px 13px;
    border-radius: 9px;
    background: var(--panel-2);
    border: 1px solid var(--stroke);
}

.pipe-step .pd {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 8px var(--blue-bright);
}

.pipe-step.out {
    background: var(--blue-soft);
    border-color: rgba(142, 240, 18, 0.4);
    color: var(--blue-bright);
    font-weight: 600;
    align-self: flex-end;
}

/* core / globe */
.b-core {
    display: flex;
    flex-direction: column;
}

.globe-wrap {
    flex: 1;
    display: grid;
    place-items: center;
    margin-top: 10px;
}

.globe {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(190, 255, 110, 0.9), rgba(110, 190, 20, 0.55) 45%, rgba(14, 34, 6, 0.92) 80%),
        #0c2207;
    box-shadow: inset -16px -20px 40px rgba(0, 0, 0, 0.7), 0 0 50px rgba(142, 240, 18, 0.5);
    position: relative;
}

.globe::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(0deg, transparent 0 9px, rgba(150, 190, 255, 0.12) 9px 10px);
    mask: radial-gradient(circle at 35% 30%, #000 50%, transparent 85%);
}

/* compliance */
.comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-2);
    padding: 11px 0;
    border-bottom: 1px solid var(--stroke);
}

.comp-row:last-child {
    border-bottom: 0
}

.comp-row b {
    color: var(--text);
    font-family: "Sora", sans-serif;
}

.comp-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--panel-2);
    margin-top: 4px;
    overflow: hidden;
}

.comp-bar i {
    display: block;
    height: 100%;
    width: 86%;
    background: linear-gradient(90deg, var(--teal), var(--blue-bright));
}

/* score gauge */
.b-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--blue-bright) 0% 72%, rgba(255, 255, 255, 0.08) 72% 100%);
    position: relative;
}

.gauge::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: var(--bg-2);
}

.gauge span {
    position: relative;
    font-family: "Sora", sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.b-score .sl {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 10px;
}

/* security */
.b-sec {
    display: flex;
    align-items: center;
    gap: 18px;
}

.shield {
    width: 54px;
    height: 62px;
    flex: none;
    background: linear-gradient(180deg, rgba(142, 240, 18, 0.3), rgba(142, 240, 18, 0.08));
    border: 1px solid rgba(142, 240, 18, 0.4);
    border-radius: 12px 12px 26px 26px;
    display: grid;
    place-items: center;
}

.shield svg {
    width: 26px;
    height: 26px;
    stroke: var(--blue-bright);
    fill: none;
    stroke-width: 2.4;
}

.b-sec p {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 4px;
}

/* analytics chip */
.chip-up {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--teal);
    background: rgba(45, 180, 140, 0.12);
    border: 1px solid rgba(45, 180, 140, 0.3);
    padding: 3px 9px;
    border-radius: 99px;
}

@media (max-width: 900px) {
    .bento {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 120px;
    }

    .b-eng {
        grid-column: span 2;
        grid-row: span 2
    }

    .b-pipe {
        grid-column: span 4;
        grid-row: span 2
    }

    .b-core {
        grid-column: span 3;
        grid-row: span 3
    }

    .b-globe {
        grid-column: span 3;
        grid-row: span 2
    }

    .b-comp {
        grid-column: span 3;
        grid-row: span 2
    }

    .b-score {
        grid-column: span 2;
        grid-row: span 2
    }

    .b-sec {
        grid-column: span 4;
        grid-row: span 2
    }

    .beam {
        display: none
    }
}

@media (max-width: 620px) {
    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento>div {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }

    .b-pipe,
    .b-core,
    .b-sec {
        grid-column: span 2 !important;
    }
}

/* ---------- Approach / why ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.feat-item {
    display: flex;
    gap: 16px;
}

.feat-item .fi {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--blue-soft);
    border: 1px solid rgba(142, 240, 18, 0.3);
}

.feat-item .fi svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-bright);
    fill: none;
    stroke-width: 2;
}

.feat-item h4 {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    margin-bottom: 4px;
}

.feat-item p {
    color: var(--text-2);
    font-size: 14.5px;
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

/* process */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: s;
}

.step .n {
    font-family: "Sora", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 0.05em;
}

.step h4 {
    font-family: "Sora", sans-serif;
    font-size: 18px;
    margin: 12px 0 8px;
}

.step p {
    color: var(--text-2);
    font-size: 14.5px;
}

.step {
    position: relative;
    padding-top: 22px;
    border-top: 1px solid var(--stroke);
}

@media (max-width:860px) {
    .steps {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:520px) {
    .steps {
        grid-template-columns: 1fr
    }
}

/* tech marquee */
.tech {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tech span {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    color: var(--text-2);
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--panel);
    border: 1px solid var(--stroke);
}

/* CTA band */
.cta-band {
    text-align: center;
    background: linear-gradient(180deg, rgba(142, 240, 18, 0.14), rgba(142, 240, 18, 0.04));
    border: 1px solid rgba(142, 240, 18, 0.25);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 240, 18, 0.4), transparent 70%);
    filter: blur(20px)
}

.cta-band>* {
    position: relative;
}

.page-hero {
    padding: 72px 0 44px;
    text-align: center;
}

.page-hero h1 {
    max-width: 16ch;
    margin: 22px auto 0;
}

.page-hero .lead {
    max-width: 640px;
    margin: 20px auto 0;
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.story p {
    color: var(--text-2);
    font-size: 16px;
    margin-bottom: 16px;
}

.story p strong {
    color: var(--text);
    font-weight: 600;
}

.story-visual {
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, var(--card-top), var(--card-bot));
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.story-visual .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(142, 240, 18, 0.25), transparent 60%)
}

@media (max-width:860px) {
    .story {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

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

.value .vic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: var(--blue-soft);
    border: 1px solid rgba(142, 240, 18, 0.3);
}

.value .vic svg {
    width: 24px;
    height: 24px;
    stroke: var(--blue-bright);
    fill: none;
    stroke-width: 2
}

.value h3 {
    font-size: 19px;
    margin-bottom: 8px
}

.value p {
    color: var(--text-2);
    font-size: 14.5px
}

@media (max-width:780px) {
    .values {
        grid-template-columns: 1fr
    }
}

.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.member {
    text-align: center;
}

.member .avatar {
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 12px, rgba(255, 255, 255, 0.06) 12px 24px);
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.member .avatar span {
    font-family: "Sora", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: rgba(150, 200, 90, 0.6)
}

.member h4 {
    font-size: 16px;
    margin-bottom: 2px
}

.member p {
    color: var(--text-3);
    font-size: 13.5px
}

@media (max-width:780px) {
    .team {
        grid-template-columns: 1fr 1fr
    }
}

.page-hero {
    padding: 72px 0 36px;
    text-align: center;
}

.page-hero h1 {
    max-width: 14ch;
    margin: 22px auto 0;
}

.page-hero .lead {
    max-width: 560px;
    margin: 20px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width:880px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

/* form */
.form-card {
    padding: 38px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--field-bg);
    border: 1px solid var(--stroke);
    border-radius: 11px;
    padding: 13px 15px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--text-3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(142, 240, 18, 0.6);
    box-shadow: 0 0 0 3px var(--blue-soft);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b95a8' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:520px) {
    .row2 {
        grid-template-columns: 1fr
    }
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.form-status {
    font-size: 14px;
    margin-top: 14px;
    min-height: 20px;
}

.form-status.ok {
    color: var(--teal);
}

.form-status.err {
    color: #ff8585;
}

.form-status a {
    color: var(--blue-bright);
    font-weight: 600;
}

.priv {
    font-size: 13px;
    color: var(--text-3);
}

/* contact info */
.info-card {
    padding: 34px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--stroke);
}

.info-item:last-of-type {
    border-bottom: 0
}

.info-item .ii {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--blue-soft);
    border: 1px solid rgba(142, 240, 18, 0.3);
}

.info-item .ii svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-bright);
    fill: none;
    stroke-width: 2
}

.info-item .lbl {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 2px
}

.info-item .val {
    font-size: 15px;
    color: var(--text);
    font-weight: 600
}

.info-item a.val:hover {
    color: var(--blue-bright)
}

.info-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px
}

.info-socials a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--panel);
    border: 1px solid var(--stroke);
    transition: all .2s
}

.info-socials a:hover {
    background: var(--blue-soft);
    border-color: rgba(142, 240, 18, 0.4);
    transform: translateY(-2px)
}

.info-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    color: var(--text-2)
}

.resp-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-2)
}

.resp-note .pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(45, 180, 140, 0.6);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 180, 140, 0.5)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(45, 180, 140, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 180, 140, 0)
    }
}

.page-hero {
    padding: 72px 0 44px;
    text-align: center;
}

.page-hero h1 {
    max-width: 16ch;
    margin: 22px auto 0;
}

.page-hero .lead {
    max-width: 600px;
    margin: 20px auto 0;
}

/* detailed service block */
.svc-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 40px 0;
}

.svc-block:nth-child(even) .svc-visual {
    order: -1;
}

.svc-block .ic {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: linear-gradient(150deg, rgba(142, 240, 18, 0.25), rgba(142, 240, 18, 0.08));
    border: 1px solid rgba(142, 240, 18, 0.25);
}

.svc-block .ic svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue-bright);
    fill: none;
    stroke-width: 2;
}

.svc-block h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 14px;
}

.svc-block p {
    color: var(--text-2);
    font-size: 16px;
}

.svc-block ul {
    list-style: none;
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.svc-block li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text);
}

.svc-block li svg {
    width: 20px;
    height: 20px;
    flex: none;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.4;
    margin-top: 2px;
}

.svc-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, var(--card-top), var(--card-bot));
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.svc-visual .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 35%, rgba(142, 240, 18, 0.22), transparent 60%);
}

.svc-visual .ph {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: var(--text-3);
    position: relative;
    text-align: center;
    padding: 0 30px;
}

.svc-visual .ph svg {
    width: 60px;
    height: 60px;
    stroke: rgba(150, 200, 90, 0.35);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 12px;
}

.svc-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 14px, rgba(255, 255, 255, 0.05) 14px 28px);
}

@media (max-width: 860px) {
    .svc-block {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 0
    }

    .svc-block:nth-child(even) .svc-visual {
        order: 0
    }
}

.page-hero {
    padding: 72px 0 44px;
    text-align: center;
}

.page-hero h1 {
    max-width: 15ch;
    margin: 22px auto 0;
}

.page-hero .lead {
    max-width: 580px;
    margin: 20px auto 0;
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filters button {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-2);
    background: var(--panel);
    border: 1px solid var(--stroke);
    padding: 9px 18px;
    border-radius: 99px;
    cursor: pointer;
    transition: all .2s;
}

.filters button:hover {
    color: var(--text);
}

.filters button.active {
    background: var(--blue-soft);
    border-color: rgba(142, 240, 18, 0.4);
    color: var(--blue-bright);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.work-thumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--stroke);
    background: var(--bg-3);
    display: grid;
    place-items: center;
}

.work-thumb .stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 14px, rgba(255, 255, 255, 0.05) 14px 28px);
}

.work-thumb .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 30%, rgba(142, 240, 18, 0.28), transparent 60%);
}

.work-thumb .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--blue-bright);
    background: rgba(10, 16, 28, 0.7);
    border: 1px solid rgba(142, 240, 18, 0.3);
    padding: 4px 10px;
    border-radius: 7px;
    backdrop-filter: blur(4px);
}

.work-thumb .wic {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, rgba(142, 240, 18, 0.3), rgba(142, 240, 18, 0.1));
    border: 1px solid rgba(142, 240, 18, 0.3);
}

.work-thumb .wic svg {
    width: 30px;
    height: 30px;
    stroke: var(--ink);
    fill: none;
    stroke-width: 1.8;
}

.work-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-body h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.work-body p {
    color: var(--text-2);
    font-size: 14.5px;
    flex: 1;
}

.work-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--blue-bright);
    font-weight: 600;
    font-size: 14px;
}

.work-link svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform .2s
}

.work-card:hover .work-link svg {
    transform: translate(3px, -3px)
}

@media (max-width:780px) {
    .work-grid {
        grid-template-columns: 1fr
    }
}

/* ---------- Service illustration placeholders ---------- */
.ph-mockup {
    position: relative;
    width: 88%;
}

.ph-mockup > svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(142, 240, 18, 0.1));
}

/* ---------- Team avatar SVG ---------- */
.member .avatar svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Legal pages (terms, privacy) ---------- */
.legal-doc {
    max-width: 760px;
    margin: 0 auto;
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    background: var(--panel);
    border: 1px solid var(--stroke);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--stroke);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(17px, 2.2vw, 21px);
    margin-bottom: 16px;
}

.legal-section p {
    color: var(--text-2);
    font-size: 15.5px;
    line-height: 1.78;
    margin-bottom: 14px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 10px 0 14px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-section li {
    color: var(--text-2);
    font-size: 15.5px;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--text);
    font-weight: 600;
}

.legal-section a {
    color: var(--blue-bright);
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}