/* ============================================================
   Devverse Labs v3 — Design System
   Agent: Cyan (ENG-SUB-01)
   Palette: Iron Meridian (Direction B — confirmed March 9, 2026)
   Principle: Every line either earns its space or gets cut.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg: #F9F7F4;
    --bg-section: #F2EFE9;
    --bg-card: #FFFFFF;
    --bg-high: #F2EFE9;
    /* alias → bg-section; used by input fields + level-row hover */

    /* Ink */
    --ink: #1A1714;
    --ink-2: #4A4440;
    --ink-3: #857D77;

    /* Accent — Iron Meridian amber */
    --accent: #B45309;
    --accent-2: #92400E;

    /* Backward-compatible aliases (token names unchanged; values updated) */
    --purple: #B45309;
    /* was #8B26E3 — now amber; components using var(--purple) get amber */
    --violet: #92400E;
    /* was #B87CF8 — now dark amber */
    --rose: #B45309;
    /* was #F4607A — consolidated to amber */

    /* Gradients */
    --grad: linear-gradient(135deg, #1A1714 0%, #4A4440 60%, #B45309 100%);
    --gradient-brand: linear-gradient(135deg, #1A1714 0%, #4A4440 60%, #B45309 100%);
    --grad-subtle: linear-gradient(135deg, rgba(180, 83, 9, .06), rgba(180, 83, 9, .03));

    /* Borders */
    --border: rgba(232, 226, 220, 1);
    --border-hi: rgba(212, 204, 202, 1);

    /* Shadows */
    --shadow-card: 0 1px 4px rgba(26, 23, 20, 0.06), 0 1px 2px rgba(26, 23, 20, 0.04);
    --shadow-hover: 0 6px 16px rgba(26, 23, 20, 0.09), 0 2px 8px rgba(26, 23, 20, 0.06);

    /* Semantic */
    --color-success: #14532D;
    --color-warning: #92400E;
    --color-error: #7F1D1D;
    --color-info: #1E3A5F;

    /* Typography */
    --f-head: 'Space Grotesk', system-ui, sans-serif;
    --f-body: 'Inter', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', monospace;

    /* Radii */
    --r-sm: .375rem;
    --r-md: .75rem;
    --r-lg: 1.25rem;
    --r-full: 9999px;

    /* Transitions */
    --t-fast: 150ms ease;
    --t-base: 250ms ease;
    --t-slow: 420ms cubic-bezier(.16, 1, .3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--f-body);
    background: var(--bg);
    color: var(--ink-2);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit
}

/* ─── Type ───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--f-head);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -.025em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.025em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -.02em;
}

h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem)
}

h4 {
    font-size: 1.125rem
}

p {
    line-height: 1.8;
    color: var(--ink-2)
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eyebrow {
    font-family: var(--f-mono);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 1.25rem;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem)
}

.wrap-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem)
}

.sec {
    padding: clamp(4rem, 10vw, 8rem) 0
}

.sec-alt {
    background: var(--bg-section)
}

.sec-sm {
    padding: clamp(2rem, 5vw, 4rem) 0
}

.g2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.g3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.g4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

@media(max-width:1024px) {
    .g4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .g3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:680px) {

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr
    }
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(249, 247, 244, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background var(--t-base), box-shadow var(--t-base);
}

.nav.stuck {
    background: rgba(249, 247, 244, .97);
    box-shadow: var(--shadow-card);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: .625rem;
    text-decoration: none
}

.logo-mark svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0
}

.logo-word {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -.03em;
    color: var(--ink);
    white-space: nowrap;
}

.logo-word span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink-3);
    transition: color var(--t-fast);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink)
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-2);
    border-radius: 2px;
    transition: all var(--t-fast);
}

@media(max-width:860px) {
    .nav-links {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #F9F7F4;
        overflow-y: auto;
        padding: 2rem clamp(1rem, 5vw, 2.5rem);
        padding-bottom: 6rem;
        /* Ensure bottom space for scrolling */
        gap: 1.5rem;
        z-index: 9999;
        border-top: 1px solid var(--border);
    }

    .nav-links.open a {
        font-size: 1.125rem;
        color: var(--ink-2)
    }

    .nav-links.open .cta {
        width: 100%;
        text-align: center;
        justify-content: center
    }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.625rem;
    border-radius: var(--r-full);
    font-family: var(--f-body);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: all var(--t-base);
    cursor: pointer;
    text-decoration: none;
}

.btn-fill {
    background: var(--grad);
    color: var(--bg) !important;
    box-shadow: 0 4px 24px rgba(180, 83, 9, .22);
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(180, 83, 9, .32);
}

.btn-line {
    background: transparent;
    color: var(--ink) !important;
    border: 1.5px solid var(--border-hi);
}

.btn-line:hover {
    border-color: var(--accent);
    background: rgba(180, 83, 9, .06);
}

.btn-text {
    background: transparent;
    color: var(--accent) !important;
    padding-left: 0;
    padding-right: 0;
    font-size: .875rem;
}

.btn-text::after {
    content: ' \2192';
    transition: margin var(--t-fast)
}

.btn-text:hover::after {
    margin-left: 4px
}

.btn-sm {
    padding: .55rem 1.125rem;
    font-size: .8125rem
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: border-color var(--t-base), transform var(--t-slow), box-shadow var(--t-base);
}

.card:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-grad {
    background: var(--grad-subtle);
    border-color: var(--border-hi)
}

/* ─── Tags ───────────────────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    padding: .2rem .7rem;
    border-radius: var(--r-full);
    font-family: var(--f-mono);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(180, 83, 9, .08);
    color: var(--accent);
    border: 1px solid rgba(180, 83, 9, .18);
}

.tag-rose {
    background: rgba(127, 29, 29, .07);
    color: var(--color-error);
    border-color: rgba(127, 29, 29, .18)
}

.tag-green {
    background: rgba(20, 83, 45, .07);
    color: var(--color-success);
    border-color: rgba(20, 83, 45, .18)
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding-top: calc(64px + clamp(4rem, 10vw, 7rem));
    padding-bottom: clamp(4rem, 8vw, 7rem);
    overflow: hidden;
}

/* Iron Meridian: retired — hero-bg, hero-orb, hero-orb-1, hero-orb-2, #hero-canvas
   Warm parchment background does the atmospheric work. No orbs, canvas, or particle fields. */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--ink-2);
    max-width: 640px;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

/* ─── Section header ─────────────────────────────────────────── */
.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 5rem)
}

.sec-head h2 {
    margin-bottom: 1rem
}

.sec-head p {
    font-size: 1.0625rem
}

.sec-head.left {
    text-align: left;
    margin-left: 0;
    max-width: 620px
}

/* ─── Divider ────────────────────────────────────────────────── */
hr.fade {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--border-hi), transparent)
}

/* ─── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    text-align: center
}

.stat-n {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
    margin-bottom: .5rem;
}

.stat-label {
    font-size: .8125rem;
    color: var(--ink-3);
    line-height: 1.5
}

@media(max-width:680px) {
    .stats-bar {
        grid-template-columns: 1fr
    }
}

/* ─── APMM levels ────────────────────────────────────────────── */
.level-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-lg);
    transition: border-color var(--t-base), background var(--t-base);
}

.level-row:hover {
    border-color: var(--border-hi);
    background: var(--bg-high)
}

.level-num {
    font-family: var(--f-mono);
    font-size: .6875rem;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .12em;
    text-transform: uppercase;
    padding-top: 3px;
}

.level-body h4 {
    color: var(--ink);
    margin-bottom: .4rem
}

.level-body p {
    font-size: .875rem;
    margin-bottom: .5rem
}

.level-fault {
    font-family: var(--f-mono);
    font-size: .75rem;
    color: var(--color-error);
    opacity: .85
}

@media(max-width:580px) {
    .level-row {
        grid-template-columns: 1fr;
        gap: .75rem
    }
}

/* ─── Comparison table ───────────────────────────────────────── */
.tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem
}

.tbl th {
    text-align: left;
    padding: 1rem 1.5rem;
    color: var(--ink-3);
    font-family: var(--f-mono);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.tbl td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(232, 226, 220, .6);
    color: var(--ink-2);
    vertical-align: top;
}

.tbl tr:last-child td {
    border-bottom: none
}

.tbl td:first-child {
    font-weight: 600;
    color: var(--ink)
}

/* ─── Production standard table ─────────────────────────────── */
.prod-tbl {
    width: 100%;
    border-collapse: collapse
}

.prod-tbl th,
.prod-tbl td {
    padding: .875rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .875rem
}

.prod-tbl th {
    font-family: var(--f-mono);
    font-size: .6875rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-3)
}

.prod-tbl td:first-child {
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap
}

/* ─── Case study card ────────────────────────────────────────── */
.cs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--t-base), transform var(--t-slow);
}

.cs-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px)
}

.cs-top {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center
}

.cs-body {
    padding: 2rem
}

.cs-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-top: 2rem
}

.cs-meta-item {
    background: var(--bg-card);
    padding: 1.25rem;
    text-align: center
}

.cs-val {
    font-family: var(--f-head);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: .25rem
}

.cs-key {
    font-family: var(--f-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-3)
}

/* ─── Quote block ────────────────────────────────────────────── */
blockquote.featured {
    padding: 2rem 2.5rem;
    background: var(--grad-subtle);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
}

blockquote.featured p {
    font-family: var(--f-head);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
}

blockquote.featured cite {
    display: block;
    margin-top: .75rem;
    font-family: var(--f-mono);
    font-size: .75rem;
    color: var(--ink-3);
}

/* ─── Credential strip ───────────────────────────────────────── */
.cred-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center
}

.cred {
    font-family: var(--f-mono);
    font-size: .6875rem;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: .375rem;
}

.cred::before {
    content: '>';
    color: var(--accent);
    font-weight: 700
}

/* ─── Trust badges ───────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .8rem;
    border-radius: var(--r-full);
    font-family: var(--f-mono);
    font-size: .625rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(20, 83, 45, .07);
    color: var(--color-success);
    border: 1px solid rgba(20, 83, 45, .18);
}

.badge svg {
    width: 10px;
    height: 10px
}

/* ─── Track card ─────────────────────────────────────────────── */
.track {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: border-color var(--t-base), transform var(--t-slow);
}

.track:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px)
}

.track-n {
    font-family: var(--f-mono);
    font-size: .6875rem;
    color: var(--accent);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.track-price {
    font-family: var(--f-mono);
    font-size: .8125rem;
    color: var(--accent-2);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.track ul {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.track li {
    font-size: .875rem;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: .5rem
}

.track li::before {
    content: '\2192';
    color: var(--accent);
    font-size: .75rem;
    flex-shrink: 0
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem
}

.f-brand p {
    font-size: .875rem;
    color: var(--ink-3);
    max-width: 240px;
    margin: 1rem 0 1.5rem
}

.f-col h5 {
    font-family: var(--f-mono);
    font-size: .6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-3);
    margin-bottom: 1.25rem;
}

.f-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.f-col a {
    font-size: .875rem;
    color: var(--ink-3);
    transition: color var(--t-fast)
}

.f-col a:hover {
    color: var(--accent)
}

.f-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.f-bottom p {
    font-size: .75rem;
    color: var(--ink-3)
}

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

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

/* ─── Cal embed ──────────────────────────────────────────────── */
.cal-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 680px;
}

.cal-wrap iframe {
    width: 100%;
    min-height: 680px;
    border: none;
    display: block
}

/* ─── 404 ────────────────────────────────────────────────────── */
.err-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem
}

.err-code {
    font-family: var(--f-head);
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* ─── Reveal animations ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ─── Grain overlay ──────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.tc {
    text-align: center
}

.flex {
    display: flex
}

.fg {
    flex-grow: 1
}

.gap2 {
    gap: .5rem
}

.gap4 {
    gap: 1rem
}

.gap6 {
    gap: 1.5rem
}

.gap8 {
    gap: 2rem
}

.mt4 {
    margin-top: 1rem
}

.mt6 {
    margin-top: 1.5rem
}

.mt8 {
    margin-top: 2rem
}

.mt10 {
    margin-top: 2.5rem
}

.mt12 {
    margin-top: 3rem
}

.mb4 {
    margin-bottom: 1rem
}

.mb6 {
    margin-bottom: 1.5rem
}

.mb8 {
    margin-bottom: 2rem
}

.w100 {
    width: 100%
}

/* ─── Input styles ───────────────────────────────────────────── */
input,
textarea {
    background: var(--bg-high);
    border: 1px solid var(--border-hi);
    color: var(--ink);
    padding: .875rem 1rem;
    border-radius: var(--r-md);
    font-family: var(--f-body);
    font-size: .9rem;
    outline: none;
    width: 100%;
    transition: border-color var(--t-fast);
}

input:focus,
textarea:focus {
    border-color: var(--accent)
}

input::placeholder,
textarea::placeholder {
    color: var(--ink-3)
}