/* ── FONTS ── */
/* Self-hosted so no visitor data reaches Google just to render text. */

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    font-display: swap;
    src: url('/fonts/archivo-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    font-display: swap;
    src: url('/fonts/archivo-normal-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/fonts/newsreader-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Newsreader';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/fonts/newsreader-normal-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Newsreader';
    font-style: italic;
    font-weight: 200 800;
    font-display: swap;
    src: url('/fonts/newsreader-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Newsreader';
    font-style: italic;
    font-weight: 200 800;
    font-display: swap;
    src: url('/fonts/newsreader-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
    --bg: #15151D;
    --card: #1B1B25;
    --text: #ECE8E1;
    --text-mut: #A8A4B0;
    --text-mut2: #B6B2BE;
    --text-dim: #7E7A87;
    --accent: #7C6CFF;
    --accent-lt: #A89BFF;
    --line-10: rgba(236, 232, 225, .10);
    --line-14: rgba(236, 232, 225, .14);
    --line-16: rgba(236, 232, 225, .16);
    --line-18: rgba(236, 232, 225, .18);
    --line-20: rgba(236, 232, 225, .20);
    /* Logo 80px + 18px padding top and bottom + 1px border. Keep in step with .brand img. */
    --header-h: 117px;
    --arrow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'%3E%3Cpath d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3E%3C/svg%3E");
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'Archivo', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    /* Without this the sticky header sits on top of whatever we just scrolled to. */
    scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #fff;
}

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

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent-lt);
}

/* ── BRAND MARK ── */
.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 80px;
    width: auto;
    display: block;
    filter: invert(1);
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(21, 21, 29, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-10);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

nav a.link {
    color: var(--text-mut2);
    font-size: 14.5px;
    font-weight: 500;
    transition: color .2s;
}

nav a.link:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 999px;
    transition: transform .15s, background .2s, opacity .2s;
}

.btn-solid {
    background: var(--accent);
    color: #fff;
}

.btn-solid:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.btn-light {
    background: var(--text);
    color: var(--bg);
}

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

.nav-cta {
    font-size: 14px;
    padding: 11px 20px;
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 108, 255, .20), transparent 68%);
    pointer-events: none;
}

.glow-hero {
    top: -180px;
    right: -120px;
}

.glow-contact {
    bottom: -220px;
    left: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 108, 255, .16), transparent 68%);
}

.hero-inner {
    padding-top: 92px;
    padding-bottom: 60px;
    position: relative;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.hero-meta .rule {
    height: 1px;
    width: 54px;
    background: rgba(236, 232, 225, .28);
}

.hero-meta .loc {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(48px, 7.6vw, 104px);
    line-height: 1.0;
    letter-spacing: -.02em;
    max-width: 15ch;
}

h1 em {
    font-style: italic;
    color: var(--accent-lt);
}

.hero-sub {
    margin-top: 30px;
    max-width: 54ch;
    font-size: 20px;
    line-height: 1.62;
    color: var(--text-mut);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-ctas .btn-solid {
    font-size: 15px;
    padding: 15px 30px;
}

.hero-ctas .text-cta {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 8px;
    border-bottom: 1px solid rgba(236, 232, 225, .32);
    transition: border-color .2s;
}

.hero-ctas .text-cta:hover {
    border-color: var(--text);
}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-16);
}

.stat {
    padding: 28px;
    border-right: 1px solid var(--line-16);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    padding-right: 0;
    border-right: none;
}

.stat-num {
    font-family: var(--serif);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -.02em;
}

.stat-num span {
    color: var(--accent-lt);
}

.stat-label {
    margin-top: 12px;
    font-size: 14.5px;
    color: var(--text-mut);
    line-height: 1.4;
}

.stats-section {
    padding-bottom: 66px;
}

/* ── SECTION HEADINGS ── */
h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.015em;
}

/* ── ABOUT ── */
.about {
    border-top: 1px solid var(--line-10);
}

.about-inner {
    padding-top: 66px;
    padding-bottom: 66px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
}

.about h2 {
    margin-top: 22px;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 17.5px;
    line-height: 1.68;
    color: var(--text-mut);
    max-width: 60ch;
}

.about-body strong {
    font-weight: 600;
    color: var(--text);
}

/* ── WORK ── */
.work {
    padding-top: 66px;
    padding-bottom: 66px;
}

.work h2 {
    margin: 20px 0 0;
    line-height: 1.1;
}

.work-note {
    display: block;
    margin: 14px 0 36px;
    max-width: 62ch;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-dim);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1080px) {
    .work-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    .work-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.work-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--card);
    border: 1px solid var(--line-14);
    border-radius: 16px;
    padding: 22px;
    transition: transform .18s, border-color .18s;
}

.work-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.work-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -.01em;
    color: var(--text);
}

.work-desc {
    flex: 1;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-mut);
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-mut2);
    padding: 5px 10px;
    border: 1px solid var(--line-20);
    border-radius: 999px;
}

.work-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 16px;
    border: 1px solid var(--line-20);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    transition: background .2s, border-color .2s, color .2s;
}

.work-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.work-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform .2s;
}

.work-btn:hover svg {
    transform: translateX(3px);
}

.work-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 16px;
    border: 1px dashed var(--line-20);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dim);
}

.work-soon::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .65;
}

/* ── APPROACH ── */
.approach {
    padding-top: 66px;
    padding-bottom: 66px;
}

.approach h2 {
    margin: 20px 0 36px;
    line-height: 1.1;
}

.approach-flow {
    --circle: 140px;
    --arrow: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    list-style: none;
}

.step {
    position: relative;
    text-align: center;
}

/* Arrows are decoration, so they stay out of the list markup entirely. */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--circle) / 2 - var(--arrow) / 2);
    left: calc(100% - var(--arrow) / 2);
    width: var(--arrow);
    height: var(--arrow);
    background: var(--text-dim);
    -webkit-mask: var(--arrow-icon) center / contain no-repeat;
    mask: var(--arrow-icon) center / contain no-repeat;
}

.step-circle {
    width: var(--circle);
    height: var(--circle);
    margin: 0 auto 18px;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: var(--card);
    border: 1px solid var(--line-18);
    border-radius: 50%;
    transition: transform .2s, border-color .2s;
}

.step:hover .step-circle {
    transform: translateY(-3px);
    border-color: var(--accent);
}

.step-num {
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: .08em;
    color: var(--accent-lt);
}

.step-name {
    font-family: var(--serif);
    font-size: 21px;
    letter-spacing: -.01em;
    color: var(--text);
}

.step p {
    max-width: 26ch;
    margin: 0 auto;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-mut);
}


/* ── FAQ ── */
.faq {
    border-top: 1px solid var(--line-10);
}

.faq-inner {
    padding-top: 66px;
    padding-bottom: 66px;
}

.faq h2 {
    margin: 20px 0 32px;
    line-height: 1.1;
}

.faq-item {
    padding: 24px 0;
    border-top: 1px solid var(--line-16);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line-16);
}

.faq-item h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 23px;
    letter-spacing: -.01em;
    color: var(--text);
}

.faq-item p {
    font-size: 16.5px;
    line-height: 1.66;
    color: var(--text-mut);
    max-width: 56ch;
}

.faq-item a {
    color: var(--accent-lt);
}

/* ── CONTACT ── */
.contact {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-10);
}

.contact-inner {
    padding-top: 66px;
    padding-bottom: 66px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
    position: relative;
}

.contact h2 {
    margin-top: 22px;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.contact-copy {
    margin: 20px 0 28px;
    max-width: 48ch;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-mut);
}

.contact .btn-solid {
    font-size: 15px;
    padding: 16px 32px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--line-18);
}

.contact-row:last-child {
    border-bottom: 1px solid var(--line-18);
}

.contact-row .k {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.contact-row .v {
    font-size: 16px;
    color: var(--text);
    text-align: right;
}

.contact-row .v.accent {
    color: var(--accent-lt);
    font-weight: 500;
}

/* ── CONTACT FORM ── */
.contact-form {
    background: var(--card);
    border: 1px solid var(--line-14);
    border-radius: 18px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.field .req {
    color: var(--accent-lt);
}

.field .opt {
    letter-spacing: .04em;
    text-transform: none;
    font-weight: 400;
    opacity: .7;
}

.field input {
    width: 100%;
    background: rgba(236, 232, 225, .04);
    border: 1px solid var(--line-16);
    border-radius: 10px;
    padding: 13px 15px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 15.5px;
    transition: border-color .18s, background .18s;
}

.field input::placeholder {
    color: var(--text-dim);
}

.field input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(124, 108, 255, .06);
}

.field input:disabled {
    opacity: .55;
}

.field.invalid input {
    border-color: #FF7A7A;
}

.field-error {
    display: none;
    font-size: 13px;
    color: #FF9A9A;
}

.field.invalid .field-error {
    display: block;
}

.form-submit {
    align-self: flex-start;
    margin-top: 4px;
    font-size: 15px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

.form-submit[disabled] {
    cursor: not-allowed;
    opacity: .6;
    transform: none;
}

.form-status {
    font-size: 14.5px;
    line-height: 1.5;
    display: none;
}

.form-status.visible {
    display: block;
}

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

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

.form-privacy {
    font-size: 12.5px;
    color: var(--text-mut);
    line-height: 1.55;
}

.form-privacy a {
    color: var(--accent-lt);
    text-decoration: underline;
}

.form-legal {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

.form-legal a {
    color: var(--text-mut);
    text-decoration: underline;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ── COOKIE CONSENT ── */
.consent {
    position: fixed;
    z-index: 200;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 40px 24px;
}

.consent[hidden] {
    display: none;
}

.consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--card);
    border: 1px solid var(--line-18);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.consent-title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent-lt);
    margin-bottom: 8px;
}

.consent-copy {
    max-width: 68ch;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-mut);
}

.consent-copy a {
    color: var(--accent-lt);
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Reject and Accept are deliberately the same size and weight - the law wants
   refusing to be exactly as easy as agreeing. */
.consent-btn {
    min-width: 132px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s, opacity .2s;
}

.consent-btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.consent-reject {
    background: rgba(236, 232, 225, .10);
    border-color: var(--line-20);
    color: var(--text);
}

.consent-accept {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 860px) {
    .consent {
        padding: 0 16px 16px;
    }

    .consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
    }

    .consent-actions {
        flex-direction: row;
    }

    .consent-btn {
        flex: 1;
        min-width: 0;
    }
}

/* ── LEGAL PAGES ── */
.legal {
    padding-top: 66px;
    padding-bottom: 66px;
}

.legal h2 {
    margin: 20px 0 0;
    line-height: 1.1;
}

.legal-updated {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--text-dim);
}

.legal-lede {
    margin: 22px 0 38px;
    max-width: 68ch;
    font-size: 17.5px;
    line-height: 1.68;
    color: var(--text-mut);
}

.legal-item {
    padding: 24px 0;
    border-top: 1px solid var(--line-16);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.legal-item:last-child {
    border-bottom: 1px solid var(--line-16);
}

.legal-item-wide {
    grid-template-columns: 1fr;
    gap: 20px;
}

.legal-item h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 23px;
    letter-spacing: -.01em;
    color: var(--text);
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16.5px;
    line-height: 1.66;
    color: var(--text-mut);
}

.legal-body a {
    color: var(--accent-lt);
}

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

.legal-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table th,
.legal-table td {
    text-align: left;
    vertical-align: top;
    padding: 13px 16px;
    border: 1px solid var(--line-16);
    font-size: 15px;
    line-height: 1.6;
}

.legal-table th {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--card);
}

.legal-inline-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--sans);
    font-size: inherit;
    font-weight: 600;
    color: var(--accent-lt);
    text-decoration: underline;
    cursor: pointer;
}

.legal-callout {
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--line-16);
    border-left: 2px solid var(--accent);
    border-radius: 12px;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--line-10);
}

.footer-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-inner .brand img {
    height: 32px;
    opacity: .7;
}

.footer-link {
    margin-right: 18px;
    color: var(--text-mut);
    text-decoration: underline;
}

.footer-link:hover {
    color: var(--text);
}

.footer-link-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--sans);
    font-size: inherit;
    cursor: pointer;
}

.footer-copy {
    font-size: 13.5px;
    color: var(--text-dim);
}

/* ── MOBILE ── */
@media (max-width: 860px) {
    :root {
        /* Logo drops to 55px here, so the header does too. */
        --header-h: 92px;
    }

    .wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-inner .brand img {
        height: 55px;
    }

    nav {
        gap: 20px;
    }

    nav a.link {
        display: none;
    }

    .hero-inner {
        padding-top: 68px;
        padding-bottom: 52px;
    }

    .hero-sub {
        font-size: 18px;
    }

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

    .stat {
        padding: 28px 0;
        border-right: none;
        border-top: 1px solid var(--line-16);
    }

    .stat:first-child {
        border-top: none;
    }

    .stat-num {
        font-size: 46px;
    }

    .stats-section {
        padding-bottom: 52px;
    }

    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-inner, .work, .approach, .contact-inner {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .approach-flow {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .step:not(:last-child)::after {
        top: auto;
        bottom: calc(-38px - var(--arrow) / 2);
        left: calc(50% - var(--arrow) / 2);
        transform: rotate(90deg);
    }

    .faq-inner {
        padding-top: 52px;
        padding-bottom: 52px;
    }

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

    .legal {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .legal-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .legal-table thead {
        display: none;
    }

    .legal-table,
    .legal-table tbody,
    .legal-table tr,
    .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table tr {
        border: 1px solid var(--line-16);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .legal-table td {
        border: none;
        border-top: 1px solid var(--line-16);
    }

    .legal-table tr td:first-child {
        border-top: none;
    }

    .legal-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--text-dim);
    }

    .contact-row .v {
        text-align: right;
    }

    .contact-form {
        padding: 24px;
    }
}
