:root {
    --bg: #08090c;
    --surface: #101216;
    --surface-2: #17191e;
    --surface-3: #202329;
    --text: #f5f4ef;
    --muted: #92959f;
    --line: rgba(255, 255, 255, .11);
    --lime: #caff45;
    --lime-soft: rgba(202, 255, 69, .13);
    --orange: #ff6a35;
    --radius: 1.35rem;
    --font: "Manrope", Arial, sans-serif;
    --mono: "DM Mono", monospace;
    --shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 50; opacity: .15; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.045) 0 1px, transparent 1.5px), radial-gradient(circle at 70% 65%, rgba(255,255,255,.03) 0 1px, transparent 1.5px); background-size: 19px 23px, 27px 31px; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--lime); color: #0b0c0e; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 40; top: 0; left: 0; right: 0; height: 82px; padding: 0 clamp(1rem, 4vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid transparent; transition: .35s ease; }
.site-header.is-scrolled { height: 68px; background: rgba(8, 9, 12, .82); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-size: .92rem; font-weight: 800; letter-spacing: .18em; }
.brand-mark { display: grid; width: 32px; height: 32px; place-items: center; color: var(--bg); background: var(--lime); border-radius: 50%; letter-spacing: 0; font-size: 1rem; transform: rotate(-9deg); }
.main-nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 2.4rem; color: #d1d2d5; font-size: .81rem; font-weight: 600; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -.55rem; background: var(--lime); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 1.2rem; font-family: var(--mono); text-transform: uppercase; font-size: .69rem; letter-spacing: .08em; }
.header-cta span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; transition: .25s; }
.header-cta:hover span { background: var(--lime); color: var(--bg); transform: rotate(45deg); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle > span:not(.sr-only) { width: 16px; height: 1px; background: currentColor; }

.hero { position: relative; min-height: 100svh; padding: clamp(8rem, 15vh, 11rem) clamp(1rem, 4vw, 4.5rem) 5.8rem; display: grid; grid-template-columns: minmax(300px, .77fr) minmax(480px, 1.23fr); gap: clamp(2rem, 5vw, 6rem); align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 43rem; height: 43rem; top: -25rem; left: -12rem; border-radius: 50%; background: rgba(89, 108, 155, .12); filter: blur(10px); pointer-events: none; }
.hero__copy { position: relative; z-index: 2; max-width: 690px; }
.live-pill { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 2rem; padding: .5rem .82rem; color: #b8bbc2; border: 1px solid var(--line); border-radius: 999px; font-family: var(--mono); text-transform: uppercase; font-size: .64rem; letter-spacing: .08em; }
.live-pill span, .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(202, 255, 69, .1); animation: pulse 2.4s infinite; }
.hero h1 { margin: 0; font-size: clamp(3.6rem, 6.6vw, 7.7rem); line-height: .88; letter-spacing: -.075em; font-weight: 700; }
.hero h1 em, .concept h2 em, .car-story h2 em { color: var(--lime); font-style: normal; }
.hero__lead { max-width: 565px; margin: 2rem 0 2.25rem; color: #aeb0b6; font-size: clamp(1rem, 1.35vw, 1.22rem); }
.hero__actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { min-height: 50px; padding: 0 1.35rem; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 1.3rem; cursor: pointer; font-weight: 750; font-size: .85rem; transition: transform .25s, background .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #090a0c; background: var(--lime); }
.button--primary span { font-size: 1.2rem; }
.button--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.text-link { color: #b8bac0; font-size: .85rem; font-weight: 600; border-bottom: 1px solid #54565d; padding-bottom: .3rem; }
.text-link span { color: var(--lime); margin-left: .3rem; }

.hero-car { position: relative; display: block; height: min(72vh, 760px); min-height: 520px; border-radius: .45rem 5.5rem .45rem .45rem; overflow: hidden; box-shadow: var(--shadow); isolation: isolate; }
.hero-car::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.15); border-radius: inherit; pointer-events: none; }
.hero-car img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.1,1); }
.hero-car:hover img { transform: scale(1.035); }
.hero-car__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,6,8,.04) 38%, rgba(4,6,8,.92) 100%); }
.hero-car__rank { position: absolute; top: 1.5rem; right: 1.5rem; width: 106px; height: 106px; display: grid; align-content: center; justify-items: center; background: rgba(8,9,12,.82); backdrop-filter: blur(12px); border-radius: 50%; }
.hero-car__rank span { font-family: var(--mono); font-size: .58rem; text-transform: uppercase; color: var(--muted); }
.hero-car__rank strong { font-size: 2rem; letter-spacing: -.06em; line-height: 1; }
.hero-car__caption { position: absolute; inset: auto 0 0; padding: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.hero-car__caption span { font-family: var(--mono); font-size: .65rem; color: #c7c8cc; text-transform: uppercase; }
.hero-car__caption h2 { margin: .35rem 0 0; font-size: clamp(1.7rem, 3vw, 3rem); letter-spacing: -.05em; line-height: 1; }
.hero-car__likes { flex: none; padding: .65rem 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(8,9,12,.42); backdrop-filter: blur(10px); font-weight: 700; }
.hero-car__likes span { color: var(--lime); font-size: 1rem; }
.hero__ticker { position: absolute; left: 0; bottom: 0; display: flex; align-items: center; gap: 2rem; min-width: 100%; height: 46px; padding-left: 1rem; color: #090a0c; background: var(--lime); font-family: var(--mono); font-size: .7rem; letter-spacing: .13em; white-space: nowrap; overflow: hidden; }
.hero__ticker i { font-style: normal; font-size: .55rem; }
.hero-empty { min-height: 520px; display: grid; place-items: center; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 4.5rem); }
.eyebrow { display: inline-block; margin-bottom: 1rem; color: var(--lime); font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: 3.5rem; }
.section-heading h2 { margin: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .9; letter-spacing: -.065em; }
.setup-notice { margin: 3rem clamp(1rem, 4vw, 4.5rem) 0; padding: 1.15rem 1.3rem; display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(202, 255, 69, .28); background: var(--lime-soft); border-radius: 1rem; }
.setup-notice div { display: flex; align-items: center; gap: .7rem; flex: none; }
.setup-notice p { color: #bfc4b5; margin: 0 auto 0 0; font-size: .82rem; }
.setup-notice a { color: var(--lime); font-weight: 700; font-size: .8rem; }
.ranking { background: #0d0f12; }
.ranking-summary { display: flex; gap: clamp(1.5rem, 4vw, 4rem); }
.ranking-summary div { display: grid; }
.ranking-summary strong { font-size: 1.6rem; letter-spacing: -.04em; }
.ranking-summary span { color: var(--muted); font-family: var(--mono); font-size: .62rem; text-transform: uppercase; }
.ranking-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.ranking-toolbar p { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-family: var(--mono); font-size: .64rem; text-transform: uppercase; }
.view-switch { display: flex; gap: .35rem; }
.view-switch button { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: .5rem; background: transparent; cursor: pointer; color: var(--muted); }
.view-switch button.is-active { background: var(--text); color: var(--bg); }
.car-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.3rem; }
.car-card { grid-column: span 4; min-width: 0; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.car-card:nth-child(1), .car-card:nth-child(2) { grid-column: span 6; }
.car-card__media { position: relative; display: block; aspect-ratio: 1.28/1; overflow: hidden; background: var(--surface-2); border-radius: var(--radius); }
.car-card:nth-child(1) .car-card__media, .car-card:nth-child(2) .car-card__media { aspect-ratio: 1.55/1; }
.car-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.1,1), filter .4s; }
.car-card__media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,7,9,.7)); opacity: .4; transition: opacity .3s; }
.car-card:hover .car-card__media img { transform: scale(1.045); }
.car-card:hover .car-card__media::after { opacity: .9; }
.car-card__rank { position: absolute; z-index: 2; top: 1rem; left: 1rem; display: grid; place-items: center; width: 57px; height: 57px; background: rgba(8,9,12,.78); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; backdrop-filter: blur(8px); font-size: 1.05rem; font-weight: 700; }
.car-card__rank small { font-family: var(--mono); font-size: .5rem; color: var(--muted); line-height: 1; }
.car-card__badge { position: absolute; z-index: 2; right: 1rem; top: 1rem; padding: .35rem .65rem; border-radius: 999px; background: var(--lime); color: var(--bg); font-family: var(--mono); font-weight: 600; text-transform: uppercase; font-size: .57rem; }
.car-card__open { position: absolute; z-index: 3; bottom: 1rem; right: 1rem; transform: translateY(8px); opacity: 0; padding: .55rem .8rem; border-radius: 999px; background: rgba(8,9,12,.82); backdrop-filter: blur(8px); font-size: .7rem; transition: .3s; }
.car-card:hover .car-card__open { opacity: 1; transform: none; }
.car-card__open b { color: var(--lime); margin-left: .45rem; }
.car-card__body { display: flex; justify-content: space-between; gap: 1rem; align-items: start; padding: 1.2rem .15rem .8rem; }
.car-card__meta { margin: 0 0 .35rem; color: var(--lime); font-family: var(--mono); text-transform: uppercase; font-size: .62rem; }
.car-card h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.12; letter-spacing: -.04em; }
.car-card__owner { margin: .4rem 0 0; color: var(--muted); font-size: .75rem; }
.car-card__tags, .detail-tags { display: flex; gap: .45rem; flex-wrap: wrap; }
.car-card__tags span, .detail-tags span { padding: .3rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: #a9abb1; font-family: var(--mono); font-size: .56rem; text-transform: uppercase; }
.like-button { flex: none; min-width: 72px; height: 42px; padding: 0 .8rem; display: inline-flex; gap: .45rem; align-items: center; justify-content: center; color: #d7d7da; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-family: var(--mono); font-size: .73rem; transition: .25s; }
.like-button .heart { color: #676a72; font-size: 1.1rem; transition: .25s; }
.like-button:hover { border-color: rgba(202,255,69,.5); }
.like-button.is-liked { color: var(--bg); background: var(--lime); border-color: var(--lime); }
.like-button.is-liked .heart { color: var(--bg); animation: heartPop .45s ease; }
.like-button.is-busy { opacity: .55; pointer-events: none; }
.car-grid.is-list { display: block; }
.car-grid.is-list .car-card { display: grid; grid-template-columns: minmax(250px, 32%) 1fr; gap: 1.6rem; margin-bottom: 1.3rem; padding: 0 0 1.3rem; }
.car-grid.is-list .car-card__media { aspect-ratio: 1.6/1; }
.car-grid.is-list .car-card__body { align-items: center; }
.empty-state { padding: 6rem 2rem; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state > span { color: var(--lime); font-family: var(--mono); }
.empty-state h3 { margin: 1rem 0 .5rem; font-size: 2rem; }
.empty-state p { max-width: 600px; margin: auto; color: var(--muted); }
.empty-state code { color: var(--text); }

.concept { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 10rem); }
.concept__intro { position: sticky; top: 110px; align-self: start; }
.concept h2 { margin: 0 0 1.8rem; font-size: clamp(3rem, 5.2vw, 6rem); line-height: .93; letter-spacing: -.065em; }
.concept__intro p { max-width: 520px; color: var(--muted); font-size: 1.05rem; }
.concept__steps { border-top: 1px solid var(--line); }
.step-card { min-height: 190px; display: grid; grid-template-columns: 80px 1fr; gap: 1rem; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.step-card > span { color: var(--lime); font-family: var(--mono); font-size: .65rem; }
.step-card h3 { margin: 0 0 .6rem; font-size: 1.65rem; letter-spacing: -.04em; }
.step-card p { max-width: 440px; color: var(--muted); margin: 0; }
.manifesto { min-height: 70vh; display: flex; flex-direction: column; justify-content: space-between; align-items: start; background: var(--lime); color: var(--bg); }
.manifesto p { max-width: 1100px; margin: 0; font-size: clamp(3.8rem, 8vw, 9.4rem); font-weight: 700; letter-spacing: -.08em; line-height: .86; }
.manifesto p span { color: transparent; -webkit-text-stroke: 1px rgba(8,9,12,.65); }
.manifesto a { margin-top: 5rem; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-weight: 700; }

.site-footer { padding: 4rem clamp(1rem, 4vw, 4.5rem) 2rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; background: #050608; border-top: 1px solid var(--line); }
.brand--footer { font-size: 1.25rem; }
.site-footer p { color: var(--muted); font-size: .78rem; }
.footer-links { display: grid; gap: .7rem; justify-items: end; font-size: .78rem; color: #c2c3c7; }
.footer-links button { padding: 0; color: inherit; background: none; border: 0; cursor: pointer; }
.footer-copy { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line); }

.consent-backdrop { position: fixed; z-index: 98; inset: 0; background: rgba(3,4,5,.66); backdrop-filter: blur(4px); }
.consent-panel { position: fixed; z-index: 99; right: 1.2rem; bottom: 1.2rem; width: min(520px, calc(100vw - 2.4rem)); padding: 2.2rem; overflow: hidden; background: #15171b; border: 1px solid var(--line); border-radius: 1.5rem; box-shadow: 0 25px 90px rgba(0,0,0,.55); }
.consent-panel[hidden], .consent-backdrop[hidden] { display: none; }
.consent-panel__glow { position: absolute; right: -5rem; top: -7rem; width: 15rem; height: 15rem; background: rgba(202,255,69,.12); filter: blur(40px); border-radius: 50%; }
.consent-panel h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.05; letter-spacing: -.05em; }
.consent-panel p { color: var(--muted); font-size: .83rem; }
.device-name-field { display: grid; gap: .45rem; margin-top: 1rem; color: #d6d7da; font-size: .72rem; font-weight: 700; }
.device-name-field small { color: var(--muted); font-weight: 500; }
.device-name-field input { width: 100%; min-height: 46px; padding: 0 .9rem; color: var(--text); background: #0e1013; border: 1px solid var(--line); border-radius: .75rem; outline: none; }
.device-name-field input:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(202,255,69,.1); }
.consent-actions { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.consent-close { position: absolute; z-index: 2; right: 1rem; top: .8rem; border: 0; background: none; color: var(--muted); font-size: 1.8rem; cursor: pointer; }
.toast-region { position: fixed; z-index: 120; right: 1.2rem; top: 6rem; display: grid; gap: .6rem; }
.toast { padding: .8rem 1rem; color: var(--bg); background: var(--lime); border-radius: .7rem; font-weight: 700; font-size: .78rem; box-shadow: var(--shadow); animation: toastIn .35s ease both; }

.car-detail-hero { min-height: 100svh; padding: 7rem clamp(1rem, 4vw, 4.5rem) 3rem; display: grid; grid-template-columns: 1fr 250px; grid-template-rows: auto 1fr; gap: 1.3rem; }
.back-link { grid-column: 1 / -1; align-self: center; color: var(--muted); font-family: var(--mono); font-size: .67rem; text-transform: uppercase; }
.car-detail-hero__image { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius); }
.car-detail-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.car-detail-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(4,5,7,.88)); }
.car-detail-hero__title { position: absolute; left: clamp(1.2rem, 4vw, 3.5rem); right: 1rem; bottom: clamp(1.5rem, 4vw, 3.5rem); }
.car-detail-hero__title p { color: var(--lime); font-family: var(--mono); font-size: .7rem; text-transform: uppercase; }
.car-detail-hero__title h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 8rem); line-height: .85; letter-spacing: -.075em; }
.car-detail-vote { padding: 1.7rem; display: flex; flex-direction: column; justify-content: end; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.car-detail-vote > span { color: var(--lime); font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }
.car-detail-vote > strong { margin-top: auto; font-size: 4.5rem; letter-spacing: -.08em; line-height: 1; }
.car-detail-vote > small { color: var(--muted); }
.like-button--large { width: 100%; height: auto; min-height: 52px; margin-top: 1.5rem; padding: .6rem 1rem; font-family: var(--font); font-weight: 700; white-space: nowrap; }
.car-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 10vw, 12rem); }
.car-story__facts { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-top: 1px solid var(--line); }
.car-story__facts div { padding: 1.5rem 0; display: grid; border-bottom: 1px solid var(--line); }
.car-story__facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.car-story__facts div:nth-child(even) { padding-left: 1.5rem; }
.car-story__facts span { color: var(--muted); font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }
.car-story__facts strong { margin-top: .3rem; font-size: 1.1rem; }
.car-story__copy h2 { margin: 0 0 2rem; font-size: clamp(2.7rem, 5vw, 5.5rem); line-height: .92; letter-spacing: -.065em; }
.car-story__copy > p { max-width: 680px; color: #b9bbc1; font-size: 1.1rem; }
.car-story__copy .owner-signature { color: var(--text); font-family: var(--mono); font-size: .75rem; }
.detail-tags { margin-top: 2rem; }
.gallery { background: #0d0f12; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-item { position: relative; padding: 0; aspect-ratio: 1.4/1; overflow: hidden; border: 0; background: var(--surface); border-radius: var(--radius); cursor: zoom-in; }
.gallery-item--wide { grid-column: 1 / -1; aspect-ratio: 2.1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item span { position: absolute; right: 1rem; bottom: 1rem; opacity: 0; padding: .5rem .75rem; border-radius: 999px; background: rgba(8,9,12,.75); transition: .25s; font-size: .7rem; }
.gallery-item:hover span { opacity: 1; }
.lightbox { width: min(1200px, 94vw); max-width: none; padding: 0; border: 0; border-radius: 1rem; background: #08090c; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox button { position: fixed; top: 1rem; right: 1.5rem; z-index: 2; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.55); font-size: 1.5rem; cursor: pointer; }
.detail-cta { text-align: center; min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.detail-cta > span { color: var(--lime); font-family: var(--mono); font-size: .65rem; text-transform: uppercase; }
.detail-cta h2 { margin: 1rem 0 2.2rem; font-size: clamp(3rem, 7vw, 7rem); line-height: .88; letter-spacing: -.07em; }
.not-found { min-height: 100svh; padding: 9rem 1.5rem; display: grid; place-content: center; text-align: center; }
.not-found > span { color: var(--lime); font-family: var(--mono); }
.not-found h1 { font-size: clamp(2.7rem, 7vw, 6rem); letter-spacing: -.06em; }

.reveal { opacity: 1; transform: none; }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(32px); }
.js .reveal { transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.15,1); }
.cursor-glow { position: fixed; z-index: 1; width: 460px; height: 460px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(202,255,69,.055), transparent 65%); pointer-events: none; opacity: 0; transition: opacity .3s; }

@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(202,255,69,0); } }
@keyframes heartPop { 35% { transform: scale(1.45) rotate(-8deg); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } }

@media (max-width: 1050px) {
    .main-nav { display: none; }
    .hero { grid-template-columns: 1fr; padding-top: 9rem; }
    .hero__copy { max-width: 800px; }
    .hero h1 { font-size: clamp(4rem, 10.5vw, 7rem); }
    .hero-car { min-height: 500px; height: 65vh; }
    .car-card { grid-column: span 6; }
    .concept { grid-template-columns: 1fr; }
    .concept__intro { position: static; }
    .car-detail-hero { grid-template-columns: 1fr; }
    .car-detail-hero__image { min-height: 68vh; }
    .car-detail-vote { min-height: 230px; display: grid; grid-template-columns: 1fr auto; align-items: end; }
    .car-detail-vote > strong { grid-row: 2; font-size: 3.5rem; }
    .car-detail-vote > small { grid-row: 3; }
    .like-button--large { grid-column: 2; grid-row: 2 / 4; min-width: 230px; }
}

@media (max-width: 720px) {
    body { font-size: 15px; }
    .site-header { height: 68px; padding-inline: 1rem; }
    .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .main-nav { position: fixed; display: flex; flex-direction: column; inset: 68px 0 auto; padding: 2rem 1rem; transform: translateY(-130%); background: rgba(8,9,12,.96); border-bottom: 1px solid var(--line); transition: transform .35s ease; }
    .main-nav.is-open { transform: none; }
    .main-nav a { font-size: 1.4rem; }
    .hero { min-height: auto; padding: 8rem 1rem 5.3rem; gap: 3rem; }
    .hero h1 { font-size: clamp(3.65rem, 17.2vw, 5.4rem); }
    .hero__lead { margin-top: 1.5rem; }
    .hero__actions { gap: 1.2rem; }
    .hero-car { min-height: 430px; height: 62vh; border-radius: .5rem 3.5rem .5rem .5rem; }
    .hero-car__rank { width: 82px; height: 82px; }
    .hero-car__caption { padding: 1.2rem; }
    .hero-car__likes { padding: .5rem .7rem; }
    .section { padding: 5rem 1rem; }
    .section-heading { align-items: start; flex-direction: column; gap: 2rem; margin-bottom: 2.2rem; }
    .section-heading h2 { font-size: 3.5rem; }
    .ranking-summary { width: 100%; justify-content: space-between; gap: 1rem; }
    .ranking-summary strong { font-size: 1.35rem; }
    .setup-notice { margin: 1rem; align-items: start; flex-direction: column; }
    .car-grid { display: block; }
    .car-card { margin-bottom: 2rem; }
    .car-card__media, .car-card:nth-child(1) .car-card__media, .car-card:nth-child(2) .car-card__media { aspect-ratio: 1.15/1; }
    .car-grid.is-list .car-card { display: block; }
    .view-switch { display: none; }
    .step-card { min-height: 160px; grid-template-columns: 52px 1fr; }
    .manifesto { min-height: 62vh; }
    .manifesto p { font-size: clamp(3.2rem, 15vw, 5rem); }
    .site-footer { grid-template-columns: 1fr; }
    .footer-links { justify-items: start; }
    .consent-panel { right: .65rem; bottom: .65rem; width: calc(100vw - 1.3rem); padding: 1.5rem; }
    .consent-actions { flex-direction: column; }
    .consent-actions .button { width: 100%; }
    .car-detail-hero { padding: 5.7rem 1rem 1rem; gap: 1rem; }
    .car-detail-hero__image { min-height: 67svh; }
    .car-detail-hero__title h1 { font-size: clamp(3.4rem, 16vw, 5rem); }
    .car-detail-vote { min-height: 250px; display: flex; }
    .car-detail-vote > strong { margin-top: auto; }
    .like-button--large { min-width: 0; }
    .car-story { grid-template-columns: 1fr; }
    .car-story__facts { order: 2; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item--wide { grid-column: auto; aspect-ratio: 1.15/1; }
}

@media (pointer: fine) { .cursor-glow { display: block; } }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal:not(.is-visible) { opacity: 1; transform: none; }
    .cursor-glow { display: none; }
}
