/* Foundations: design tokens, reset, typography and layout utilities. */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
--bg: #020711;
    --bg-soft: #071120;
    --card: #081425;
    --text: #f4f6fb;
    --muted: #9aa4b5;
    --line: #1b2a40;
    --blue: #0f83ff;
    --violet: #8b2cff;
    --green: #4ee38b;
    --max: 1180px
}

* {
box-sizing: border-box
}

html {
scroll-behavior: smooth
}

body {
margin: 0;
    background: radial-gradient(circle at 74% 10%, #091535 0, transparent 28%), var(--bg);
    color: var(--text);
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.55
}

a {
color: inherit;
    text-decoration: none
}

img {
max-width: 100%;
    display: block
}

.container {
width: min(calc(100% - 40px), var(--max));
    margin-inline: auto
}

.sr-only {
position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.eyebrow {
color: #77839a;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 12px
}

.gradient-text {
background: linear-gradient(90deg, #168cff, #9b37f4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

.lead {
font-size: 17px;
    color: var(--muted);
    max-width: 610px
}

.section {
padding-top: 82px
}

.section-heading {
display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 24px
}

.text-link {
color: #308eff;
    font-size: 13px
}

.cards {
display: grid;
    gap: 18px
}

.three-up {
grid-template-columns: repeat(3, 1fr)
}

.portrait-placeholder img {
width: 150px;
    filter: drop-shadow(0 15px 28px #672cba)
}

.page-hero .lead {
margin: auto
}

.about-mark img {
width: 55%;
    filter: drop-shadow(0 20px 35px #5328b1)
}

.breadcrumb a {
color: #3697ff
}

@media(max-width:900px) {
.three-up,
    .service-grid {
grid-template-columns: 1fr 1fr
}
}

@media(max-width:620px) {
.container {
width: min(calc(100% - 28px), var(--max))
}

.lead {
font-size: 15px
}

.section {
padding-top: 60px
}

.section-heading {
align-items: start
}

.section-heading .text-link {
margin-top: 28px
}

.three-up,
    .case-grid,
    .service-grid {
grid-template-columns: 1fr
}
}

@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto
}
}
