/* ============================================================
   KodeSquadra design system
   Dark, modern developer-studio aesthetic.
   Fonts: Space Grotesk (display) + Inter (body)
   ============================================================ */

:root {
    --bg: #07090f;
    --bg-alt: #0b0e18;
    --bg-footer: #05070c;
    --card: #10141f;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #e8ebf4;
    --muted: #9aa3b8;
    --brand-1: #7c5cff;
    --brand-2: #22d3ee;
    --grad: linear-gradient(92deg, var(--brand-1), var(--brand-2));
    --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
    --radius: 16px;
    --container: 1120px;
}

/* ---------- Reset & base ---------- */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }

h1:focus {
    outline: none;
}

p {
    margin: 0 0 1em;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.18s ease;
}

ul, ol {
    margin: 0;
    padding: 0;
}

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

:focus-visible {
    outline: 2px solid var(--brand-2);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.container-narrow {
    max-width: 780px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100;
    background: var(--brand-1);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
}

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

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn-primary {
    background: var(--grad);
    /* Dark ink text: white fails contrast on the cyan end of the gradient */
    color: #07090f;
    box-shadow: 0 8px 28px rgba(124, 92, 255, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(124, 92, 255, 0.45);
    color: #07090f;
}

.btn-ghost {
    border-color: var(--border-strong);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
    border-color: var(--brand-1);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; border-radius: 10px; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 9, 15, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-word {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand-word b {
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.site-nav > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
}

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

.site-nav > a.active {
    color: var(--text);
}

.site-nav > a.active:not(.btn) {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-nav > a.btn {
    color: #07090f;
    font-weight: 600;
}

.nav-toggle {
    display: none;
}

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

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
    background:
        radial-gradient(700px 420px at 82% -10%, rgba(124, 92, 255, 0.28), transparent 65%),
        radial-gradient(640px 400px at 8% 115%, rgba(34, 211, 238, 0.13), transparent 65%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, black 25%, transparent 78%);
    mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, black 25%, transparent 78%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 880px;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-2);
    margin-bottom: 1.1rem;
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 2.2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.trust {
    margin-top: clamp(2.5rem, 6vw, 4rem);
    border-top: 1px solid var(--border);
    padding-top: 1.6rem;
}

.trust-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2.2rem;
}

.trust-list a {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--muted);
}

.trust-list a:hover {
    color: var(--text);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(600px 360px at 85% -20%, rgba(124, 92, 255, 0.22), transparent 65%),
        radial-gradient(520px 320px at 5% 120%, rgba(34, 211, 238, 0.1), transparent 65%);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.error-hero {
    padding-bottom: clamp(5rem, 12vw, 9rem);
}

.error-request-id {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.error-request-id code {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.15rem 0.5rem;
}

/* ---------- Sections ---------- */

.section {
    padding: clamp(4rem, 9vw, 6.75rem) 0;
}

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}

.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-cta {
    text-align: center;
    margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

/* ---------- Cards ---------- */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 92, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.96rem;
}

.card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(34, 211, 238, 0.14));
    border: 1px solid rgba(124, 92, 255, 0.3);
    color: var(--brand-2);
}

/* ---------- Work / portfolio ---------- */

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 1.5rem;
}

.work-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 92, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.tile {
    position: relative;
    display: grid;
    place-items: center;
    height: 150px;
    border-bottom: 1px solid var(--border);
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(230px 130px at 78% 18%, rgba(255, 255, 255, 0.14), transparent 70%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.tile img {
    height: 74px;
    width: auto;
    max-width: 55%;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

/* Neutral dark tiles with a soft glow tinted to each product's brand */
.tile-a { background: radial-gradient(340px 210px at 50% 32%, rgba(224, 166, 90, 0.18), transparent 72%) #101820; }
.tile-b { background: radial-gradient(340px 210px at 50% 32%, rgba(66, 205, 190, 0.16), transparent 72%) #0c1517; }
.tile-c { background: radial-gradient(340px 210px at 50% 32%, rgba(168, 85, 247, 0.2), transparent 72%) #14101f; }
.tile-d { background: radial-gradient(340px 210px at 50% 32%, rgba(64, 211, 132, 0.14), transparent 72%) #0d1420; }

.tile-lg {
    height: 100%;
    min-height: 240px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tile-lg img {
    height: 104px;
}

.work-body {
    padding: 1.5rem 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-body h3 {
    margin-bottom: 0.15rem;
    font-size: 1.3rem;
}

.work-tag-line {
    font-weight: 600;
    color: var(--brand-2);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.work-body > p:not(.work-tag-line) {
    color: var(--muted);
    font-size: 0.95rem;
}

.tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.4rem 0 1.1rem;
}

.tags li {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.22rem 0.75rem;
}

.work-link {
    margin-top: auto;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
}

.work-link:hover {
    filter: brightness(1.25);
}

/* ---------- Case studies (work page) ---------- */

.case-list {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4rem);
}

.case {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.case-body h2 {
    margin-bottom: 0.2rem;
}

.case-body .eyebrow {
    margin-bottom: 0.6rem;
}

.case-body p {
    color: var(--muted);
}

.case-body .work-tag-line {
    font-size: 1rem;
}

.case-body .btn {
    margin-top: 0.4rem;
}

.more-note {
    margin-top: clamp(3rem, 7vw, 5rem);
    text-align: center;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 3rem);
}

.more-note p {
    color: var(--muted);
    max-width: 560px;
    margin-inline: auto;
}

/* ---------- Process steps ---------- */

.steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
}

.steps li {
    counter-increment: step;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.steps li::before {
    content: "0" counter(step);
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.7rem;
}

.steps h3 {
    margin-bottom: 0.35rem;
}

.steps p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ---------- Pricing ---------- */

.pricing-band {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.pricing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pricing-col {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.pricing-col h3 {
    margin-bottom: 1.1rem;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checklist li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--muted);
}

.checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.25rem;
    height: 1.25rem;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(34, 211, 238, 0.18));
    border: 1px solid rgba(124, 92, 255, 0.35);
    color: var(--brand-2);
}

/* ---------- Service rows (services page) ---------- */

.service-rows {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
    padding: clamp(2rem, 5vw, 3rem) 0;
    border-top: 1px solid var(--border);
}

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

.service-row h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.service-row p {
    color: var(--muted);
    margin: 0;
}

.service-row .tags {
    margin: 0.4rem 0 0;
    justify-content: flex-start;
}

/* ---------- FAQ ---------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-list details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-list details[open] {
    border-color: rgba(124, 92, 255, 0.4);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brand-2);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 1.4rem 1.3rem;
    margin: 0;
    color: var(--muted);
}

/* ---------- CTA band ---------- */

.cta-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(560px 320px at 50% 120%, rgba(124, 92, 255, 0.22), transparent 70%);
}

.cta-inner {
    text-align: center;
    max-width: 620px;
}

.cta-inner .btn {
    margin-top: 0.8rem;
}

/* ---------- Prose & values (about page) ---------- */

.prose h2 {
    font-size: 1.6rem;
    margin-top: 2.6rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    color: var(--muted);
    font-size: 1.03rem;
}

.value-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.value-list li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.value-list h3 {
    margin-bottom: 0.4rem;
}

.value-list p {
    margin: 0;
    font-size: 0.95rem;
}

/* ---------- Contact ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    position: sticky;
    top: 96px;
}

.contact-card p {
    color: var(--muted);
}

.contact-mail {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0.4rem 0 0.9rem;
    word-break: break-all;
}

.contact-note {
    font-size: 0.9rem;
}

.contact-info h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
}

.contact-info h2:first-child {
    margin-top: 0;
}

.contact-info > p {
    color: var(--muted);
}

.next-steps {
    list-style: none;
    counter-reset: next;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.next-steps li {
    counter-increment: next;
    position: relative;
    padding-left: 2.4rem;
    color: var(--muted);
}

.next-steps li::before {
    content: counter(next);
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.6rem;
    height: 1.6rem;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(34, 211, 238, 0.18));
    border: 1px solid rgba(124, 92, 255, 0.35);
    color: var(--brand-2);
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0.9rem 0;
    max-width: 300px;
}

.footer-mail {
    font-weight: 600;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-col h2 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    padding: 0.28rem 0;
}

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

.footer-col a.btn {
    display: inline-flex;
    color: var(--text);
    margin-top: 0.6rem;
    /* Restore button padding/size lost to the higher-specificity .footer-col a rule */
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
}

.footer-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 0.6rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.6rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .pricing-band,
    .pricing-cols,
    .contact-grid,
    .service-row,
    .case {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }

    .tile-lg {
        min-height: 170px;
    }

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

@media (max-width: 860px) {
    .nav-burger {
        display: flex;
    }

    /* Visually hidden but keyboard-focusable so the menu works without a mouse */
    .nav-toggle {
        display: block;
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .nav-toggle:focus-visible ~ .nav-burger {
        outline: 2px solid var(--brand-2);
        outline-offset: 3px;
        border-radius: 4px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7, 9, 15, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 1.25rem 1.25rem;
    }

    .site-nav > a {
        padding: 0.85rem 0.25rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
    }

    .site-nav > a.btn {
        margin-top: 1rem;
        border-bottom: none;
        justify-content: center;
    }

    .nav-toggle:checked ~ .site-nav {
        display: flex;
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta .btn {
        flex: 1;
    }
}

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

    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}
