:root {
    --font-primary: "Instrument Sans", "Segoe UI", sans-serif;
    --font-accent: "Newsreader", Georgia, serif;

    /* Primary brand colors */
    --primary-50: #fffdea;
    --primary-100: #fff8c5;
    --primary-200: #fff186;
    --primary-300: #ffe346;
    --primary-400: #ffd31c;
    --primary-500: #ffbe0f;
    --primary-600: #e18b00;
    --primary-700: #bb6b12;
    --primary-800: #974b09;
    --primary-900: #7c3d0b;
    --primary-950: #481f00;

    /* Neutral palette */
    --neutral-25: #ffffff;
    --neutral-50: #f8f8f8;
    --neutral-100: #eaeae9;
    --neutral-200: #d5d4d4;
    --neutral-300: #c1bfbe;
    --neutral-400: #acaaaa;
    --neutral-500: #979593;
    --neutral-600: #827f7e;
    --neutral-700: #6d6a69;
    --neutral-800: #595553;
    --neutral-900: #443f3e;
    --neutral-950: #2f2a28;

    /* Semantic success */
    --success-50: #ebfef8;
    --success-100: #d0fbe3;
    --success-200: #a4f6cd;
    --success-300: #6aebb3;
    --success-400: #2ed994;
    --success-500: #00bf7c;
    --success-600: #009b65;
    --success-700: #007c54;
    --success-800: #036243;
    --success-900: #035139;
    --success-950: #012d21;

    /* Semantic warning */
    --warning-50: #fffdea;
    --warning-100: #fff7c5;
    --warning-200: #fff085;
    --warning-300: #ffe246;
    --warning-400: #ffd010;
    --warning-500: #fabc00;
    --warning-600: #e28500;
    --warning-700: #b56f02;
    --warning-800: #984708;
    --warning-900: #7c3d0b;
    --warning-950: #050504;

    /* Semantic danger */
    --danger-50: #fef2f2;
    --danger-100: #fee2e2;
    --danger-200: #fecaca;
    --danger-300: #fca5a5;
    --danger-400: #f87171;
    --danger-500: #ef4444;
    --danger-600: #dc2626;
    --danger-700: #b91c1c;
    --danger-800: #991b1b;
    --danger-900: #7f1d1d;
    --danger-950: #450a0a;

    /* Brand gradient */
    --gradient-brand: linear-gradient(135deg, #fdae1c 0%, #ffc50d 100%);

    /* Spacing scale */
    --space-xxs: 2px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-base: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 32px;
    --space-4xl: 40px;
    --space-5xl: 48px;
    --space-6xl: 60px;
    --space-7xl: 120px;

    /* Project aliases */
    --color-bg: var(--neutral-25);
    --color-surface: rgba(255, 255, 255, 0.88);
    --color-surface-strong: #fff7de;
    --color-text: #171312;
    --color-text-soft: var(--neutral-700);
    --color-border: rgba(124, 61, 11, 0.12);
    --color-primary: var(--primary-500);
    --color-primary-deep: var(--primary-900);
    --color-header: var(--neutral-950);
    --shadow-button: 0 8px 24px rgba(250, 188, 0, 0.28), 0 2px 6px rgba(124, 61, 11, 0.18);
    --shadow-card: 0 18px 50px rgba(72, 31, 0, 0.12);
    --shadow-focus: 0 0 0 4px rgba(255, 190, 15, 0.22);
    --shadow-header-cta: 0 1px 20px rgba(253, 174, 28, 0.12), 0 -4px 10px rgba(238, 154, 0, 0.12);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --max-width: 1200px;

    /* Desktop typography */
    --type-d-h1-size: 70px;
    --type-d-h1-line: 82px;
    --type-d-h2-size: 44px;
    --type-d-h2-line: 56px;
    --type-d-h3-size: 36px;
    --type-d-h3-line: 48px;
    --type-d-body-xl-size: 24px;
    --type-d-body-xl-line: 36px;
    --type-d-body-lg-size: 20px;
    --type-d-body-lg-line: 32px;
    --type-d-body-base-size: 16px;
    --type-d-body-base-line: 28px;
    --type-d-body-sm-size: 14px;
    --type-d-body-sm-line: 26px;

    /* Mobile typography */
    --type-m-h1-size: 40px;
    --type-m-h1-line: 52px;
    --type-m-h2-size: 32px;
    --type-m-h2-line: 44px;
    --type-m-h3-size: 20px;
    --type-m-h3-line: 32px;
    --type-m-body-xl-size: 18px;
    --type-m-body-xl-line: 28px;
    --type-m-body-lg-size: 16px;
    --type-m-body-lg-line: 26px;
    --type-m-body-base-size: 14px;
    --type-m-body-base-line: 24px;
    --type-m-body-sm-size: 12px;
    --type-m-body-sm-line: 22px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    color: var(--color-text);
    background: #fffdf8;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.page-shell {
    width: 100%;
    margin: 0 auto;
}

.site-header {
    padding: 30px 0 0;
    position: relative;
    z-index: 20;
    background: transparent;
}

.header-shell {
    display: flex;
    justify-content: center;
}

.header-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 640px);
    min-height: 44px;
    padding: 4px 4px 4px 12px;
    border-radius: 6px;
    background: var(--color-header);
}

.header-menu {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--neutral-25);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.header-menu img {
    width: 20px;
    height: 20px;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: auto;
    height: 28px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    border-radius: var(--space-xs);
    border: 1px solid var(--primary-600);
    background: linear-gradient(180deg, #ffc500 0%, #fdae1c 100%);
    color: var(--neutral-950);
    font-size: 20px;
    line-height: 1;
    box-shadow: var(--shadow-header-cta);
}

.header-cta img {
    width: 12px;
    height: 12px;
}

.hero-home {
    position: relative;
    min-height: 999px;
    margin-top: -88px;
    overflow: hidden;
    background-color: #fffdf8;
    background-image: url("images/main-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 210px;
    background: linear-gradient(180deg, rgba(11, 9, 7, 0) 0%, rgba(11, 9, 7, 1) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("images/grid-bg.svg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.58;
    filter: contrast(1.05) brightness(0.98);
    z-index: 2;
    margin-top: -370px;
    pointer-events: none;
}

.hero-home-shell {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    padding-top: 152px;
}

.hero-copy {
    width: min(100%, 932px);
    text-align: center;
}

.hero-title {
    display: grid;
    gap: 0;
    justify-items: center;
}

.hero-title-primary {
    font-size: clamp(3.5rem, 5.2vw, 70px);
    line-height: 82px;
    font-weight: 500;
    letter-spacing: 0;
    color: #2f2a28;
    white-space: nowrap;
}

.hero-title-accent {
    font-family: var(--font-accent);
    font-size: clamp(3.65rem, 5.35vw, 70px);
    line-height: 82px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--neutral-500);
}

.hero-description {
    max-width: 541px;
    margin: 16px auto 0;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #6d6a69;
}

.hero-description span {
    display: inline-block;
    padding: 0 6px;
    border-radius: 4px;
    background: #eaeae9;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 40px;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-cta-button img {
    width: 14px;
    height: 14px;
}

.hero-cta-primary {
    color: #2f2a28;
    background: linear-gradient(180deg, #ffc500 0%, #fdae1c 100%);
    box-shadow: var(--shadow-header-cta);
}

.hero-cta-secondary {
    color: #2f2a28;
    border: 1px solid #d5d4d4;
    background: #ffffff;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 58px;
    padding-bottom: 0;
}

.hero-screens {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(0);
    pointer-events: none;
}

.hero-next {
    margin-top: -112px;
    position: relative;
    z-index: 4;
    padding: 18px 0 88px;
    color: #f7f5f1;
}

.hero-next .page-shell {
    display: flex;
    justify-content: center;
}

.hero-next h2 {
    max-width: 710px;
    text-align: center;
    font-size: 44px;
    line-height: 62px;
    font-weight: 500;
    letter-spacing: -2%;
}

.hero-next h2 span {
    margin-top: 6px;
    font-size: 44px;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--neutral-500);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 var(--space-2xl);
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-xl {
    min-height: 52px;
    padding-inline: 26px;
}

.button-primary {
    background: var(--gradient-brand);
    color: var(--primary-950);
    box-shadow: var(--shadow-button);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(68, 63, 62, 0.18);
    color: var(--color-text);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.button-tertiary {
    background: transparent;
    border-color: transparent;
    color: var(--color-text);
    padding-inline: 12px;
    min-height: 40px;
}

.button.is-focused {
    box-shadow: var(--shadow-focus), var(--shadow-button);
}

.button-secondary.is-focused,
.button-tertiary.is-focused {
    box-shadow: var(--shadow-focus);
}

.button.is-hover {
    transform: translateY(-2px);
}

.button-primary.is-hover {
    background: linear-gradient(135deg, #ffbf1b 0%, #ffb108 100%);
}

.button-secondary.is-hover {
    background: rgba(68, 63, 62, 0.08);
}

.button-tertiary.is-hover {
    color: var(--primary-900);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.button.is-pressed {
    transform: translateY(1px);
}

.button-primary.is-pressed {
    background: linear-gradient(135deg, #f0aa00 0%, #ffbd0f 100%);
    box-shadow: 0 4px 10px rgba(124, 61, 11, 0.24);
}

.button-secondary.is-pressed {
    background: rgba(68, 63, 62, 0.12);
    box-shadow: inset 0 0 0 1px rgba(68, 63, 62, 0.2);
}

.button-tertiary.is-pressed {
    color: var(--primary-950);
}

.button.is-loading {
    position: relative;
    pointer-events: none;
    gap: 10px;
}

.button.is-loading::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.button.is-disabled {
    opacity: 0.38;
    pointer-events: none;
    box-shadow: none;
}

.hero-card {
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(255, 190, 15, 0.5), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 222, 0.88));
    box-shadow: var(--shadow-card);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(0, 191, 124, 0.12);
    filter: blur(8px);
}

.metric {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-lg);
}

.metric-panel {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(124, 61, 11, 0.08);
}

.metric-panel strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
}

.metric-panel span {
    display: block;
    margin-top: var(--space-sm);
    color: var(--color-text-soft);
}

.metric-accent {
    background: linear-gradient(180deg, rgba(0, 191, 124, 0.14), rgba(255, 255, 255, 0.9));
}

.brand-tokens {
    padding-bottom: var(--space-6xl);
}

.system-section {
    padding-bottom: var(--space-6xl);
}

.section-title {
    max-width: 680px;
    margin-bottom: var(--space-3xl);
}

.section-title h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 500;
}

.section-title p {
    margin-top: var(--space-base);
    color: var(--color-text-soft);
    line-height: var(--type-d-body-base-line);
    font-size: var(--type-d-body-base-size);
    font-weight: 500;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
}

.token-card {
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.token-card h3 {
    font-family: var(--font-primary);
    margin-bottom: var(--space-lg);
    font-size: var(--type-d-h3-size);
    line-height: var(--type-d-h3-line);
    font-weight: 500;
}

.swatches {
    display: grid;
    gap: var(--space-base);
}

.swatch {
    display: flex;
    align-items: center;
    gap: var(--space-base);
}

.swatch-chip {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(23, 19, 18, 0.08);
    flex-shrink: 0;
}

.swatch-label strong {
    display: block;
    font-size: 0.95rem;
}

.swatch-label span {
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.spacing-card {
    margin-top: 24px;
}

.spacer-scale {
    display: grid;
    gap: var(--space-base);
    margin-top: var(--space-xl);
}

.spacer-item {
    display: flex;
    align-items: center;
    gap: var(--space-base);
    font-size: 0.95rem;
}

.spacer-bar {
    height: 14px;
    border-radius: 999px;
    background: var(--gradient-brand);
    min-width: 24px;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
}

.type-stack {
    display: grid;
    gap: var(--space-xl);
}

.type-sample {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(68, 63, 62, 0.08);
}

.type-sample:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.type-title {
    color: var(--color-text);
}

.type-h1,
.type-h1-mobile,
.type-h2,
.type-h2-mobile,
.type-h3-mobile,
.type-body-xl,
.type-body-lg,
.type-body-base,
.type-body-sm {
    font-family: var(--font-primary);
    font-weight: 500;
}

.type-h1 {
    font-size: var(--type-d-h1-size);
    line-height: var(--type-d-h1-line);
}

.type-h1-accent,
.type-h2-accent,
.type-h1-mobile-accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}

.type-h1-accent {
    font-size: var(--type-d-h1-size);
    line-height: var(--type-d-h1-line);
}

.type-h2 {
    font-size: var(--type-d-h2-size);
    line-height: var(--type-d-h2-line);
}

.type-h2-accent {
    font-size: var(--type-d-h2-size);
    line-height: var(--type-d-h2-line);
}

.type-body-xl {
    font-size: var(--type-d-body-xl-size);
    line-height: var(--type-d-body-xl-line);
}

.type-body-base {
    font-size: var(--type-d-body-base-size);
    line-height: var(--type-d-body-base-line);
}

.type-h1-mobile {
    font-size: var(--type-m-h1-size);
    line-height: var(--type-m-h1-line);
}

.type-h1-mobile-accent {
    font-size: var(--type-m-h1-size);
    line-height: var(--type-m-h1-line);
}

.type-h2-mobile {
    font-size: var(--type-m-h2-size);
    line-height: var(--type-m-h2-line);
}

.type-h3-mobile {
    font-size: var(--type-m-h3-size);
    line-height: var(--type-m-h3-line);
}

.type-body-lg {
    font-size: var(--type-m-body-lg-size);
    line-height: var(--type-m-body-lg-line);
}

.type-body-sm {
    font-size: var(--type-m-body-sm-size);
    line-height: var(--type-m-body-sm-line);
}

.type-meta,
.type-size {
    margin-top: 6px;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.button-system {
    display: grid;
    gap: var(--space-xl);
}

.button-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-base);
}

.shadow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl);
}

.shadow-card {
    display: grid;
    place-items: center;
    min-height: 120px;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.86);
}

.shadow-card-button {
    background: var(--gradient-brand);
    box-shadow: var(--shadow-button);
}

.shadow-card-surface {
    box-shadow: var(--shadow-card);
}

.about {
    padding: 100px 80px;
}

.about-shell {
    display: grid;
    gap: 18px;
}

.about-copy>img {
    width: 100%;
    border-radius: 32px;
}

.about-panel {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    padding: 28px 34px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    color: #f7f5f1;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.about-button:hover {
    border-color: rgba(255, 197, 0, 0.95);
    background: rgba(255, 197, 0, 0.08);
    transform: translateY(-1px);
}

.about-button img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.about-text {
    max-width: 848px;
    margin: 0 auto;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 1.85;
    text-align: left;
}

.services {
    padding: 100px 80px;
    background:
        radial-gradient(circle at 78% 14%, rgba(255, 184, 28, 0.12), transparent 18%),
        #090806;
    color: #f7f5f1;
}

.services-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.services-heading {
    max-width: 640px;
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(247, 245, 241, 0.7);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--primary-500);
    box-shadow: 0 0 14px rgba(255, 190, 15, 0.4);
}

.services-heading h2 {
    margin-top: 28px;
    font-size: 44px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.services-heading h2 span {
    display: block;
    color: rgba(233, 228, 220, 0.78);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}

.services-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    margin-top: 54px;
    padding: 0 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ffc500 0%, #fdae1c 100%);
    color: #2f2a28;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(253, 174, 28, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(253, 174, 28, 0.3);
}

.services-cta img {
    width: 14px;
    height: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    background: #121211;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 189, 15, 0.18), transparent 42%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 210, 16, 0.95);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-number {
    position: relative;
    z-index: 2;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.service-card-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 104px;
    margin: 30px 0 auto auto;
    border-radius: 12px;
    overflow: hidden;
    transition: width 0.35s ease, height 0.35s ease, margin 0.35s ease, border-radius 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-card-visual {
    width: 76%;
    height: 220px;
    margin: 22px auto auto;
    border-radius: 16px;
    transform: translateY(4px);
}

.service-card-copy {
    position: relative;
    z-index: 2;
    margin-top: 46px;
}

.service-card-copy h3 {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.service-card-copy p {
    margin-top: 14px;
    max-width: 290px;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 1.6;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.03);
}

.service-card-visual-web {
    box-shadow: inset 0 0 0 1px rgba(89, 85, 83, 0.08);
}

.service-card-visual-mobile {
    background:
        radial-gradient(circle at 50% 50%, rgba(196, 176, 255, 0.66), rgba(120, 103, 169, 0.95));
}

.service-card-visual-systems {
    background: linear-gradient(135deg, rgba(255, 218, 138, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-card-visual-mobile {
    background:
        radial-gradient(circle at 50% 50%, rgba(239, 226, 255, 0.95), rgba(133, 111, 191, 0.95));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 0;
    width: 170px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background: var(--primary-500);
    flex-shrink: 0;
}

.section-kicker-light {
    color: var(--neutral-700);
}

.section-kicker-dark {
    color: var(--neutral-500);
}

.why-choose {
    padding: 100px 80px;
    background: #fffdf8;
}

.why-choose-shell {
    display: grid;
    grid-template-columns: 137px 848px;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
    max-width: 1145px;
}

.why-choose-content {
    max-width: 848px;
}

.why-choose-label {
    padding-top: 4px;
}

.why-choose-title {
    font-size: 44px;
    line-height: 62px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #121211;
}

.why-choose-title span {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--neutral-400);
}

.why-choose-list {
    margin-top: 126px;
}

.why-choose-item {
    display: grid;
    grid-template-columns: 415px 413px;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    padding: 36px 0;
    border-top: 1px solid var(--neutral-100);
}

.why-choose-item:last-child {
    border-bottom: 1px solid var(--neutral-100);
}

.why-choose-item h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #121211;
    letter-spacing: 0;
}

.why-choose-item p {
    color: var(--neutral-700);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.testimonials {
    padding: 100px 80px;
    background: #050504;
    color: #fff;
}

.testimonials-shell {
    display: grid;
    gap: 42px;
}

.testimonials-heading {
    display: grid;
    justify-items: center;
    text-align: center;
}

.testimonials-heading h2 {
    font-size: 44px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--neutral-25);
}

.testimonials-heading h2 span {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--neutral-500);
}

.testimonials-heading p {
    max-width: 492px;
    margin-top: 6px;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 28px;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 417px minmax(0, 848px);
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    width: min(1301px, calc(100vw - 40px));
    margin-left: 50%;
    transform: translateX(-50%);
}

.testimonial-profile {
    min-height: 601px;
    padding: 34px 32px 28px;
    border-radius: 1000px;
    background: #121211;
    display: grid;
    justify-items: center;
    align-content: center;
}

.testimonial-profile h3 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: var(--neutral-25);
}

.testimonial-profile .testimonial-name {
    margin-top: 40px;
}

.testimonial-profile p {
    margin-top: 2px;
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;
}

.testimonial-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    margin-top: 28px;
    border-radius: 50%;
}

.testimonial-avatar::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.8) 0deg 1deg,
            transparent 1deg 7deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
    opacity: 0.45;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.06);
}

.testimonial-play {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 244, 244, 0.58);
    backdrop-filter: blur(12px);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.testimonial-play span {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid #fff;
}

.testimonial-profile strong {
    margin-top: 28px;
    color: #c8ff17;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.testimonial-card {
    position: relative;
    min-height: 601px;
    padding: 0px 50px 34px 40px;
    border-radius: 14px;
    background:
        radial-gradient(circle at top right, rgba(253, 174, 28, 0.24), transparent 34%),
        #121211;
    display: flex;
    flex-direction: column;
}

.testimonial-card-quote {
    display: block;
    width: 82px;
    height: 40px;
}

.testimonial-card-copy {
    max-width: 756px;
    margin-top: 26px;
    color: var(--neutral-25);
    font-family: var(--font-accent);
    font-size: 36px;
    line-height: 60px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

.testimonial-card-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-stat strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 0 2px;
    color: var(--neutral-25);
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.testimonial-stat span {
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;
}

.projects-showcase {
    padding: 0 0 128px;
    background: #050504;
    color: var(--neutral-25);
}

.projects-shell {
    display: grid;
    justify-items: center;
}

.projects-heading {
    margin-top: 18px;
    max-width: 516px;
    text-align: center;
}

.projects-heading h2 {
    font-size: 44px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.projects-heading h2 span {
    display: block;
    margin-top: 4px;
    color: var(--neutral-500);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.project-filter {
    min-height: 44px;
    padding: 8px 16px;
    border: 1px solid #2f2a28;
    border-radius: 2px;
    background: transparent;
    color: var(--neutral-500);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.project-filter:hover,
.project-filter:focus-visible {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--neutral-25);
    outline: none;
}

.project-filter.is-active {
    padding-inline: 24px;
    border-color: transparent;
    border-radius: 999px;
    background: #fff;
    color: #121211;
}

.projects-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1666 / 782;
    margin-top: 36px;
    transform: translateX(0%);
    overflow: hidden;
}

.projects-ellipse,
.projects-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.projects-ellipse {
    margin-top: 230px;
}

.projects-visual {
    z-index: 1;
}

.projects-viewall {
    position: absolute;
    left: 50%;
    bottom: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 32px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;
    background: rgba(18, 18, 17, 0.9);
    color: var(--neutral-25);
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    transform: translateX(-50%);
}

.projects-viewall img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.team-section {
    background: #fffdf8;
}

.team-shell {
    padding: 100px 80px;
}

.team-heading {
    display: grid;
    gap: 22px;
}

.team-heading .section-kicker {
    width: auto;
}

.team-heading h2 {
    font-size: 44px;
    line-height: 56px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #121211;
}

.team-heading h2 span {
    color: var(--neutral-500);
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.team-card {
    display: flex;
    flex-direction: column;
    min-height: 484px;
    border: 1px solid var(--neutral-100);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: #ddd9d6;
    box-shadow: 0 14px 34px rgba(18, 18, 17, 0.1);
}

.team-card-media {
    height: 280px;
    overflow: hidden;
}

.team-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 204px;
    padding: 22px 20px 20px;
}

.team-card-copy {
    display: grid;
    gap: 6px;
}

.team-card-copy h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    color: #121211;
}

.team-card-copy p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-600);
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-transform: uppercase;
}

.team-card-copy p::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: var(--primary-500);
    flex-shrink: 0;
}

.team-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.team-card-socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.team-card-socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.team-card-bio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #121211;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.team-card-bio span:last-child {
    font-size: 14px;
    line-height: 1;
}

/* .team-cta-band {
    padding: 60px 80px;
} */

.team-cta-band {
    position: relative;
    overflow: hidden;
}

.team-cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1278px;
    min-height: 164px;
    padding: 34px 32px;
    background:
        radial-gradient(circle at right center, rgba(255, 197, 0, 0.84), transparent 30%),
        linear-gradient(90deg, #121211 0%, #090806 58%, #121211 100%);
}

.foot-cta-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 60px 80px;
    /* background:
        radial-gradient(circle at right center, rgba(255, 197, 0, 0.84), transparent 30%),
        linear-gradient(90deg, #121211 0%, #090806 58%, #121211 100%); */
}

.team-cta-copy {
    max-width: 560px;
}

.team-cta-copy h2 {
    color: var(--neutral-25);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.team-cta-copy h2 span {
    display: block;
    color: var(--neutral-500);
    font-family: var(--font-accent);
    font-size: 44px;
    line-height: 1.18;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
}

.team-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.team-cta-button:hover {
    transform: translateY(-1px);
}

.team-cta-button img {
    width: 14px;
    height: 14px;
}

.team-cta-button-primary {
    background: linear-gradient(180deg, #ffc500 0%, #fdae1c 100%);
    color: #121211;
    box-shadow: 0 8px 24px rgba(253, 174, 28, 0.24);
}

.team-cta-button-secondary {
    border-color: rgba(255, 255, 255, 0.08);
    background: #121211;
    color: var(--neutral-25);
}

.team-cta-button-secondary img {
    filter: brightness(0) invert(1);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.site-footer {
    position: relative;
    background: #090806;
    color: var(--neutral-400);
    overflow: hidden;
}

.footer-ellipse-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
    /* margin-top: -66px; */
    pointer-events: none;
}

.footer-ellipse-bg img {
    width: 100%;
    height: auto;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 0 80px;
    border-top: 1px solid transparent;
    border-image-source: radial-gradient(2586.19% 1529151.36% at 54.14% -0.14%, rgba(253, 174, 28, 0.2) 0%, rgba(253, 174, 28, 0) 73.75%);
    border-image-slice: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links a {
    font-size: 16px;
    color: var(--neutral-300);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-500);
}

.footer-divider-vert {
    display: flex;
    align-items: center;
    padding: 0 40px 0 0;
}

.footer-divider-vert img {
    height: 100%;
    width: auto;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
}

.footer-socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-divider-horz {
    border-top: 1px solid transparent;
    border-image-source: radial-gradient(2586.19% 1529151.36% at 54.14% -0.14%, rgba(253, 174, 28, 0.2) 0%, rgba(253, 174, 28, 0) 73.75%);
    border-image-slice: 1;
    width: 100%;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    font-size: 14px;
    color: var(--neutral-600);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary-500);
}

.footer-legal .dot {
    color: var(--primary-500);
}

@media (max-width: 960px) {

    .token-grid,
    .type-grid,
    .shadow-grid {
        grid-template-columns: 1fr;
    }

    .header-bar {
        width: 100%;
    }

    .hero-home {
        min-height: 860px;
        margin-top: -78px;
    }

    .hero-home-shell {
        padding-top: 132px;
    }

    .hero-visual {
        margin-top: 34px;
    }

    .hero-screens {
        width: 182vw;
    }

    .hero-next {
        margin-top: -92px;
    }

    .why-choose {
        padding: 100px 80px;
    }

    .why-choose-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-choose-content {
        max-width: none;
    }

    .why-choose-list {
        margin-top: 64px;
    }

    .why-choose-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        margin-left: 0;
        transform: none;
    }

    .testimonial-profile,
    .testimonial-card {
        width: min(100%, 848px);
    }

    .projects-stage {
        width: 100%;
    }

    .team-shell {
        padding-inline: 80px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-cta-band {
        padding-inline: 80px;
    }

    .team-cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-header {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .services-cta {
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-shell {
        padding: 0 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-divider-vert {
        display: none;
    }

    .footer-socials {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .site-header {
        padding-top: 18px;
    }

    .header-bar {
        min-height: 44px;
        padding-left: 10px;
    }

    .header-menu span {
        font-size: 15px;
    }

    .header-logo img {
        height: 24px;
    }

    .hero-home {
        min-height: 760px;
        margin-top: -68px;
        background-position: center top;
    }

    .hero-home-shell {
        padding-top: 118px;
    }

    .hero-title-primary {
        font-size: 42px;
        line-height: 52px;
        white-space: normal;
    }

    .hero-title-accent {
        font-size: 40px;
        line-height: 52px;
    }

    .hero-description {
        max-width: 320px;
        font-size: 14px;
        line-height: 24px;
    }

    .hero-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-cta-button {
        min-height: 48px;
        width: auto;
        justify-content: center;
        max-width: none;
        font-size: 13px;
    }

    .hero-visual {
        margin-top: 26px;
    }

    .hero-screens {
        width: 236vw;
    }

    .hero-next {
        margin-top: -68px;
        padding-top: 14px;
    }

    .hero-next h2 {
        font-size: 40px;
    }

    .token-card {
        padding: var(--space-xl);
    }

    .section-title p {
        font-size: var(--type-m-body-base-size);
        line-height: var(--type-m-body-base-line);
    }

    .token-card h3 {
        font-size: var(--type-m-h3-size);
        line-height: var(--type-m-h3-line);
    }

    .why-choose {
        padding: 72px 0 84px;
    }

    .why-choose-title {
        font-size: 36px;
        line-height: 48px;
    }

    .why-choose-list {
        margin-top: 40px;
    }

    .why-choose-item {
        padding: 24px 0;
    }

    .why-choose-item h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .why-choose-item p {
        font-size: 14px;
        line-height: 24px;
    }

    .testimonials {
        padding: 100px 80px;
    }

    .testimonials-heading h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .testimonials-heading p {
        font-size: 14px;
        line-height: 24px;
    }

    .testimonial-layout {
        gap: 24px;
    }

    .testimonial-profile {
        min-height: auto;
        padding: 28px 22px 24px;
        border-radius: 36px;
    }

    .testimonial-avatar {
        width: 240px;
        height: 240px;
        margin-top: 22px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 28px 22px 24px;
    }

    .testimonial-card-copy {
        margin-top: 4px;
        font-size: 28px;
        line-height: 46px;
    }

    .testimonial-card-footer {
        margin-top: 36px;
        align-items: center;
    }

    .testimonial-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .projects-showcase {
        padding-bottom: 96px;
    }

    .projects-heading h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .project-filters {
        gap: 8px;
        margin-top: 28px;
    }

    .project-filter {
        min-height: 40px;
        font-size: 14px;
        line-height: 24px;
    }

    .projects-stage {
        width: 100%;
        margin-top: 34px;
    }

    .projects-visual,
    .projects-ellipse {
        object-fit: cover;
    }

    .projects-viewall {
        bottom: 14px;
    }

    .team-shell {
        padding: 72px 0 40px;
    }

    .team-heading {
        gap: 16px;
    }

    .team-heading h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 28px;
    }

    .team-card {
        min-height: 0;
    }

    .team-card-media {
        height: 248px;
    }

    .team-card-body {
        min-height: 0;
        padding: 20px 16px 18px;
    }

    .team-card-copy h3 {
        font-size: 20px;
        line-height: 32px;
    }

    .team-card-copy p {
        font-size: 12px;
        line-height: 22px;
    }

    .team-card-footer {
        align-items: flex-end;
    }

    .team-cta-band {
        padding: 0;
    }

    .team-cta-shell {
        min-height: 0;
        padding: 28px 18px 30px;
        gap: 22px;
    }

    .foot-cta-shell {
        min-height: 0;
        padding: 100px 80px;
        gap: 22px;
    }

    .team-cta-copy h2 {
        font-size: 22px;
    }

    .team-cta-copy h2 span {
        font-size: 18px;
    }

    .team-cta-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .team-cta-button {
        justify-content: center;
    }

    .services-heading h2 {
        margin-top: 18px;
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 500px;
        padding: 24px;
    }

    .service-card-number {
        font-size: 24px;
    }

    .service-card-visual {
        width: 122px;
        height: 96px;
        margin-top: 22px;
    }

    .service-card:hover .service-card-visual {
        width: 100%;
        height: 188px;
    }

    .service-card-copy {
        margin-top: 34px;
    }

    .service-card-copy h3 {
        font-size: 32px;
    }

    .service-card-copy p {
        max-width: none;
        font-size: 15px;
    }

    .about {
        padding-bottom: 48px;
    }

    .about-copy>img {
        border-radius: 24px;
    }

    .about-panel {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 20px;
        padding: 20px 18px;
        border-radius: 16px;
    }

    .about-button {
        width: 100%;
    }

    .about-text {
        margin: 0;
        text-align: left;
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-shell {
        padding: 0 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}