/* ═══════════════════════════════════════════════════════════════════════════
   FLEET ADVISORY v2 — Delta Efficiency Professional Design System
   Premium corporate aesthetic with proven efficiency language
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Color System (Delta Efficiency Professional) */
    --navy: #00172F;
    --navy2: #041B3A;
    --ink: #00285A;
    --ink-soft: #5B6472;
    --blue: #0055BE;
    --red: #D8141A;
    --red-dark: #B10F14;
    --paper: #F5F6F8;
    --white: #FFFFFF;
    --line: #E4E6EA;
    --gray-ph: #D6D8DB;
    --gray-ph-dark: #B9BDC4;
    
    /* Typography (Sora + Inter) */
    --display: 'Sora', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    
    /* Spacing */
    --gap-xs: 8px;
    --gap-sm: 12px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

* {
    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(--body);
    color: var(--navy);
    background: #fff;
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--display);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTAINERS & SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    position: relative;
}

.pad {
    padding: 88px 0;
}

.pad-sm {
    padding: 56px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY & ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

h1 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.14;
    color: var(--navy);
}

h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

h3 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--navy);
}

h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
}

p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.lead {
    font-size: 15.5px;
    color: var(--ink-soft);
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 3px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btn svg {
    width: 15px;
    height: 15px;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

.btn-navy:hover {
    background: var(--ink);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--navy);
}

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--red);
}

.btn-white:hover {
    background: #f2f2f2;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLACEHOLDER BOX
   ═══════════════════════════════════════════════════════════════════════════ */

.ph {
    background: linear-gradient(155deg, var(--gray-ph), var(--gray-ph-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: #7C828C;
    border-radius: 6px;
}

.ph svg {
    width: 38px;
    height: 38px;
    opacity: .7;
}

.ph span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 23, 47, 0.04);
}

.site-header .wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo Section */
.logo-area {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: opacity .2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 16px;
    color: var(--red);
}

.logo-text {
    line-height: 1.2;
}

.logo-main {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
}

.logo-sub {
    font-family: var(--body);
    font-weight: 500;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    margin: 0 40px;
}

.nav-link {
    font-family: var(--body);
    font-weight: 600;
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.header-actions .btn {
    padding: 11px 18px;
    font-size: 12px;
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all .3s ease;
    border-radius: 2px;
}

.menu-toggle:hover span {
    background: var(--red);
}

/* Mobile Responsive */
@media (max-width: 980px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        margin: 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active,
    .nav-link:hover {
        background: var(--paper);
        color: var(--navy);
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn {
        padding: 10px 14px;
        font-size: 11px;
    }
}

@media (max-width: 680px) {
    .header-inner {
        height: 60px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .logo-main {
        font-size: 13px;
    }

    .logo-sub {
        font-size: 9px;
    }

    .main-nav {
        top: 60px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    background: var(--navy);
    overflow: hidden;
    padding-top: 10px;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.hero-clip {
    position: absolute;
    inset: 0;
    left: 46%;
    background: var(--gray-ph);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-clip::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--red);
    transform: skewX(-10deg);
}

.hero-clip .ph {
    background: transparent;
    width: 220px;
    height: 220px;
    border: 2px dashed #9AA0A8;
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 64px 0 40px;
}

.hero-left h1 {
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.14;
    margin-bottom: 20px;
}

.hero-left h1 .r {
    color: var(--red);
}

.hero-left p {
    color: #C3C9D3;
    font-size: 15.5px;
    max-width: 420px;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
}

/* Hero Stats */
.stat-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 26px;
    margin-right: 26px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat-item:last-child {
    border-right: none;
}

.stat-ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-ic svg {
    width: 17px;
    height: 17px;
    color: #fff;
}

.stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    color: var(--red);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 11.5px;
    color: #C3C9D3;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGO STRIP
   ═══════════════════════════════════════════════════════════════════════════ */

.logostrip {
    background: #fff;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.logostrip .lbl {
    text-align: center;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9298A3;
    margin-bottom: 22px;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-row div {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .06em;
    color: #B7BBC2;
    padding: 0 18px;
    border-right: 1px solid var(--line);
}

.logo-row div:last-child {
    border-right: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   IMPACT SECTION (4-Step Process)
   ═══════════════════════════════════════════════════════════════════════════ */

.impact {
    background: var(--paper);
}

.impact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.impact h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.impact h2 .r {
    color: var(--red);
}

.impact p {
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 26px;
    max-width: 380px;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.impact-card {
    background: #fff;
    border-radius: 6px;
    padding: 26px 20px;
    box-shadow: 0 2px 10px rgba(0, 20, 50, .06);
}

.impact-card .ic {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.impact-card .ic svg {
    width: 100%;
    height: 100%;
    color: var(--navy);
}

.impact-card .rule {
    width: 26px;
    height: 2px;
    background: var(--red);
    margin-bottom: 14px;
}

.impact-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.impact-card p {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 0;
    max-width: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOLUTIONS DARK SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.solutions {
    background: var(--navy2);
    color: #fff;
}

.sol-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.solutions h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.solutions h2 .r {
    color: var(--red);
}

.solutions > .wrap > .sol-grid > div:first-child p {
    color: #AEB6C4;
    font-size: 15px;
    margin-bottom: 26px;
    max-width: 340px;
}

.sol-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.sol-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.sol-card .ph {
    height: 130px;
}

.sol-card .label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.sol-card .label span {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
}

.sol-card .arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sol-card .arrow svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SAVE MONEY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.savemoney {
    background: #fff;
}

.save-grid {
    display: grid;
    grid-template-columns: .7fr 1fr 1fr;
    gap: 0;
    align-items: center;
}

.save-shape {
    position: relative;
    height: 340px;
    background: var(--paper);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 80%);
}

.save-shape .ph {
    position: absolute;
    inset: 16% 14%;
    background: transparent;
}

.save-shape .ph svg {
    color: #9298A3;
}

.save-shape .ph span {
    color: #8A909B;
}

.save-mid {
    padding: 0 30px;
}

.save-mid h2 {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--navy);
}

.save-mid h2 .r {
    color: var(--red);
}

.save-mid p {
    color: var(--ink-soft);
    font-size: 14.5px;
    margin-bottom: 24px;
    max-width: 340px;
}

.save-right {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.save-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.save-feat .ic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.save-feat .ic svg {
    width: 18px;
    height: 18px;
    color: var(--navy);
}

.save-feat h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.save-feat p {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin: 0;
}

.save-cta {
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RED CTA BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-banner {
    background: var(--red);
    padding: 40px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cta-ic {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-ic svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.cta-left h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cta-left p {
    color: rgba(255, 255, 255, .9);
    font-size: 13.5px;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
    background: var(--navy2);
    color: #AEB6C4;
    padding: 64px 0 26px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr .85fr .85fr .85fr .95fr;
    gap: 34px;
    margin-bottom: 46px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.foot-brand-badge {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-brand-badge img {
    height: 30px;
}

.foot-brand-text {
    font-family: var(--display);
    font-weight: 800;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
}

.foot-brand-text span {
    display: block;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--blue);
}

footer p.desc {
    font-size: 13.5px;
    margin-bottom: 18px;
    max-width: 230px;
}

.soc {
    display: flex;
    gap: 10px;
}

.soc a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc a svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.soc a:hover {
    background: var(--red);
    border-color: var(--red);
}

footer h4 {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

footer ul li {
    margin-bottom: 11px;
}

footer ul a {
    font-size: 13.5px;
}

footer ul a:hover {
    color: #fff;
}

.foot-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 14px;
}

.foot-contact svg {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    color: var(--blue);
    flex-shrink: 0;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: #7C86A0;
}

.foot-bottom a {
    margin-left: 20px;
}

.foot-bottom a:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 980px) {
    .wrap {
        padding: 0 36px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-clip {
        position: relative;
        inset: auto;
        left: auto;
        clip-path: none;
        height: 260px;
        margin-top: 20px;
        border-radius: 6px;
    }
    
    .hero-clip::before {
        display: none;
    }
    
    .impact-grid,
    .sol-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .sol-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .save-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .save-shape {
        clip-path: none;
        border-radius: 8px;
    }
    
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .wrap {
        padding: 0 22px;
    }
    
    .pad {
        padding: 56px 0;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .impact-cards,
    .sol-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
        margin-bottom: 18px;
    }
    
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .foot-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-row {
        flex-wrap: wrap;
    }
    
    .logo-row div {
        flex: 1;
        min-width: 50%;
        border-bottom: 1px solid var(--line);
        border-right: 1px solid var(--line);
        padding: 14px 10px;
    }
    
    .logo-row div:nth-child(even) {
        border-right: none;
    }
    
    .logo-row div:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */

:focus-visible {
    outline: 2.5px solid var(--red);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2.5px solid var(--red);
    outline-offset: 3px;
}
