/* ═══════════════════════════════════════════════════
   VitGO Design System
   Paylaşımlı yolculuk platformu
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────── */
:root {
    --bg-deep: #060b18;
    --bg-card: #0d1425;
    --bg-elevated: #131c30;
    --bg-surface: #192338;
    --text: #f0f4f8;
    --text-muted: #8899b0;
    --text-dim: #5a6d84;
    --accent: #00e09e;
    --accent-hover: #00c78c;
    --accent-dim: #009e6e;
    --accent-glow: rgba(0, 224, 158, 0.25);
    --accent-subtle: rgba(0, 224, 158, 0.08);
    --accent-border: rgba(0, 224, 158, 0.2);
    --border: rgba(148, 163, 184, 0.08);
    --border-hover: rgba(148, 163, 184, 0.18);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --max-w: 1200px;
    --max-read: 44rem;
    --header-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
    font-family: var(--font);
    font-size: clamp(15px, 0.9rem + 0.3vw, 17px);
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}

ul,
ol {
    list-style: none;
}

/* ── Accessibility ──────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--bg-deep);
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
    left: 1rem;
    top: 0;
}

/* ── Scroll Reveal ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ══════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(6, 11, 24, 0.75);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
    border-color: var(--border-hover);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
    width: min(var(--max-w), 100% - 2rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
    text-decoration: none;
}

.logo__img {
    display: block;
    height: 32px;
    width: auto;
    max-width: min(168px, 40vw);
    object-fit: contain;
}

.site-footer .logo__img {
    height: 36px;
    max-width: min(180px, 50vw);
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-desktop a {
    padding: 0.5rem 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
    color: var(--text);
    background: var(--accent-subtle);
    text-decoration: none;
}

.nav-desktop a[aria-current="page"] {
    color: var(--accent);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
    border-color: var(--accent-border);
    background: var(--bg-surface);
}

/* Mobile Nav */
.nav-mobile {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0.15rem;
    box-shadow: var(--shadow-lg);
}

.nav-mobile a {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s;
}

.nav-mobile a:hover {
    background: var(--bg-elevated);
    text-decoration: none;
}

.nav-mobile.is-open {
    display: flex;
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.65rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s var(--ease-bounce), box-shadow 0.3s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
    text-decoration: none;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    color: #ffffff !important;
}

.btn--primary:hover {
    box-shadow: 0 6px 28px var(--accent-glow), 0 0 0 1px var(--accent-border);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Nav CTA — always show hover glow */
.nav-desktop .btn--primary {
    box-shadow: 0 6px 28px var(--accent-glow), 0 0 0 1px var(--accent-border);
    transform: translateY(-1px);
}

.nav-desktop .btn--primary:hover {
    box-shadow: 0 8px 36px rgba(0, 224, 158, 0.35), 0 0 0 1px var(--accent-border);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn--ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--text-dim);
    color: var(--text);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 10vw, 7rem) 1rem clamp(5rem, 12vw, 8rem);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 224, 158, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 224, 158, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    top: -25%;
    right: -15%;
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-glow 10s ease-in-out infinite;
}

.hero__glow--secondary {
    top: auto;
    bottom: -30%;
    right: auto;
    left: -15%;
    width: min(45vw, 400px);
    height: min(45vw, 400px);
    background: radial-gradient(circle, rgba(56, 86, 232, 0.12) 0%, transparent 60%);
    animation-delay: -5s;
}

@keyframes hero-glow {

    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 0.75;
        transform: scale(1.08);
    }
}

.hero__inner {
    position: relative;
    width: min(var(--max-w), 100%);
    margin-inline: auto;
    display: grid;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr 0.9fr;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw + 0.5rem, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
    color: var(--text-muted);
    max-width: 38ch;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero__stat strong {
    display: block;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.6rem);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero__stat span {
    font-size: 0.8125rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Phone mockup */
.hero-shot {
    margin: 0;
    justify-self: center;
    perspective: 1200px;
}

.hero-shot__frame {
    max-width: min(280px, 80vw);
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.06);
    background: #080c16;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 60px -10px var(--accent-glow);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    animation: phone-float 6s ease-in-out infinite;
    position: relative;
}

.hero-shot__frame:hover {
    transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 50px 100px -20px rgba(0, 0, 0, 0.55),
        0 0 80px -5px var(--accent-glow);
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-shot__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero slider */
.hero-slider {
    overflow: hidden;
    border-radius: 34px;
    position: relative;
}

.hero-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation arrows */
.hero-slider__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s, border-color 0.2s;
    z-index: 2;
    padding: 0;
}
.hero-shot__frame:hover .hero-slider__nav,
.hero-slider__nav:focus-visible {
    opacity: 1;
}
.hero-slider__nav:hover {
    background: rgba(0,0,0,0.65);
    border-color: var(--accent);
}
.hero-slider__nav--prev { left: 8px; }
.hero-slider__nav--next { right: 8px; }



/* ══════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════ */
.trust-bar {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.trust-bar__inner {
    width: min(var(--max-w), 100%);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-bar__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    background: var(--accent-subtle);
    color: var(--accent);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════ */
.section {
    padding: clamp(4rem, 8vw, 6rem) 1rem;
}

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

.section__inner {
    width: min(var(--max-w), 100%);
    margin-inline: auto;
}

.section__head {
    max-width: 38rem;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__head--center {
    margin-inline: auto;
    text-align: center;
}

.section__label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

.section__head h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.section__head p {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════ */
.features {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.feature:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-border);
}

.feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: background 0.2s, transform 0.3s var(--ease-bounce);
}

.feature:hover .feature__icon {
    background: rgba(0, 224, 158, 0.15);
    transform: scale(1.08);
}

.feature__icon:not(:has(svg)) {
    font-size: 1.125rem;
    font-weight: 800;
}

.feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ══════════════════════════════════════════════════ */
.steps {
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}

@media (min-width: 700px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.step {
    position: relative;
    padding: 2rem 1.75rem;
    text-align: center;
    counter-increment: step;
}

@media (min-width: 700px) {
    .step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 42px;
        right: -1px;
        width: 50%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-border), transparent);
        z-index: 1;
    }

    .step:not(:first-child)::before {
        content: "";
        position: absolute;
        top: 42px;
        left: -1px;
        width: 50%;
        height: 2px;
        background: linear-gradient(270deg, var(--accent-border), transparent);
        z-index: 1;
    }
}

.step__number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 2px solid var(--accent-border);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: background 0.3s, transform 0.3s var(--ease-bounce);
    top: 20px;
}

.step:hover .step__number {
    background: rgba(0, 224, 158, 0.18);
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 28ch;
    margin-inline: auto;
}

/* ══════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════ */
.cta-band {
    position: relative;
    padding: clamp(4rem, 8vw, 5.5rem) 1rem;
    text-align: center;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.cta-band>* {
    position: relative;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-band p {
    max-width: 34rem;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
}

.store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq-list {
    max-width: 42rem;
}

.faq-list.--center {
    margin-inline: auto;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: transform 0.3s var(--ease), color 0.2s;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-answer__inner {
    padding-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
    padding: 3.5rem 1rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.site-footer__inner {
    width: min(var(--max-w), 100%);
    margin-inline: auto;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 700px) {
    .site-footer__inner {
        grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    }
}

.site-footer .logo {
    margin-bottom: 0.85rem;
}

.site-footer__tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 26ch;
    line-height: 1.55;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.footer-col li {
    margin-bottom: 0.55rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.15s;
}

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

.footer-col--contact li {
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-col--contact li a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col--contact .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact-hint {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* Social links */
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-bounce);
}

.social-link:hover {
    background: var(--accent-subtle);
    border-color: var(--accent-border);
    color: var(--accent);
    transform: scale(1.1);
    text-decoration: none;
}

.social-link .icon {
    width: 18px;
    height: 18px;
}

/* Contact card icons */
.contact-dl dd a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-dl .icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.5;
}

.site-footer__bottom {
    width: min(var(--max-w), 100%);
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-dim);
    text-align: center;
}

/* ══════════════════════════════════════════════════
   LEGAL / ARTICLE PAGES
   ══════════════════════════════════════════════════ */
.page-hero {
    padding: clamp(3rem, 6vw, 4.5rem) 1rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
}

.page-hero__inner {
    width: min(var(--max-read), 100%);
    margin-inline: auto;
}

.page-hero h1 {
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page-hero .meta {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb__sep {
    color: var(--text-dim);
}

.article-wrap {
    padding: 2.5rem 1rem 4rem;
}

.article {
    width: min(var(--max-read), 100%);
    margin-inline: auto;
}

.article h2 {
    margin: 2.5rem 0 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.article h2:first-of-type {
    margin-top: 0;
}

.article p,
.article li {
    color: var(--text-muted);
}

.article ul,
.article ol {
    padding-left: 1.25rem;
}

.article ul {
    list-style: disc;
}

.article ol {
    list-style: decimal;
}

.article li {
    margin-bottom: 0.5rem;
}

.article .note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.article.legal-doc {
    width: min(48rem, 100%);
}

.article.legal-doc h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.article.legal-doc h2:first-of-type {
    margin-top: 0;
}

.article.legal-doc p {
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
}

/* About page */
.team-placeholder {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .team-placeholder {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-card {
    padding: 1.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.value-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.contact-cards {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

@media (min-width: 560px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.contact-card:hover {
    border-color: var(--accent-border);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.contact-dl {
    display: grid;
    gap: 0.65rem 0.5rem;
}

.contact-dl dt {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
}

.contact-dl dd {
    font-size: 0.9375rem;
}

.contact-dl dd a {
    color: var(--text);
    font-weight: 500;
}

.contact-dl dd a:hover {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════
   SCROLLBAR & SELECTION
   ══════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

::selection {
    background: rgba(0, 224, 158, 0.25);
    color: var(--text);
}