/* ============================================================
   Wild Scan — shared sub-page stylesheet
   Usato da registrati, attiva-codice, regolamento, video, scan
   ============================================================ */
:root {
  --cyan:        #00e8f5;
  --cyan-hi:     #7df3ff;
  --cyan-glow:   rgba(0, 232, 245, 0.55);
  --cyan-soft:   rgba(0, 232, 245, 0.18);
  --copper:      #c9803a;
  --copper-hi:   #e5a863;
  --gold:        #f0c57a;
  --bg:          #060a0c;
  --bg-deep:     #020303;
  --text:        #f3ede2;
  --text-dim:    #a8a095;
  --danger:      #ff6a5b;
  --ok:          #6affc6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}
img, video { display: block; max-width: 100%; }
a { color: var(--cyan-hi); text-decoration: none; }
a:hover { color: var(--cyan); }
button { font: inherit; cursor: pointer; }

/* background: sfondo cinematic + vignette + scanline */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('sfondo.png') center center / cover no-repeat #060a0c;
  filter: saturate(0.85) brightness(0.45) blur(2px);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(3,5,6,0.4) 55%, rgba(3,5,6,0.9) 100%),
    repeating-linear-gradient(180deg, rgba(0,232,245,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: normal;
  z-index: -1;
  pointer-events: none;
}

/* ------------------------------------------------------------
   HEADER / BACK BAR
   ------------------------------------------------------------ */
.page-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  background: linear-gradient(180deg, rgba(3,5,6,0.92) 0%, rgba(3,5,6,0.55) 100%);
  border-bottom: 1px solid rgba(0, 232, 245, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--cyan-glow);
  border-radius: 999px;
  transition: all 0.25s ease;
  text-shadow: 0 0 8px var(--cyan-glow);
}
.back-link:hover {
  color: var(--bg-deep);
  background: var(--cyan);
  border-color: var(--cyan);
}
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mini img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,232,245,0.35)); }
.brand-mini .mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--text);
  text-shadow: 0 0 12px rgba(0,232,245,0.35);
}

/* ------------------------------------------------------------
   MAIN CONTAINER
   ------------------------------------------------------------ */
main.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.6rem 5rem;
}
main.page.wide { max-width: 920px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  margin-bottom: 0.9rem;
  text-shadow: 0 0 14px rgba(0,232,245,0.4);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

h1.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 0 22px rgba(0,232,245,0.35), 0 4px 20px rgba(0,0,0,0.8);
  margin-bottom: 0.3rem;
}
h1.page-title .accent { color: var(--cyan); text-shadow: 0 0 28px var(--cyan-glow); }

.lead {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 58ch;
  margin-bottom: 2.2rem;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  color: var(--cyan-hi);
  text-transform: uppercase;
  margin: 2.2rem 0 0.8rem;
  text-shadow: 0 0 10px rgba(0,232,245,0.3);
}
h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.4rem 0 0.4rem;
}

p { margin-bottom: 0.9rem; color: var(--text); }
p.dim { color: var(--text-dim); font-size: 0.92rem; }

ul, ol { margin: 0.6rem 0 1.2rem 1.3rem; }
li { margin-bottom: 0.45rem; color: var(--text); }
li::marker { color: var(--cyan); }

strong { color: var(--cyan-hi); font-weight: 500; }

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  margin: 2.4rem 0;
}

/* ------------------------------------------------------------
   CARD (form container, content panel)
   ------------------------------------------------------------ */
.card {
  position: relative;
  padding: 2.2rem 2rem;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.82) 0%, rgba(4, 12, 16, 0.9) 100%);
  border: 1px solid rgba(0, 232, 245, 0.35);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.65),
    0 0 40px rgba(0, 232, 245, 0.15),
    inset 0 0 40px rgba(0, 232, 245, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.card + .card { margin-top: 1.4rem; }

/* ------------------------------------------------------------
   FORM
   ------------------------------------------------------------ */
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--cyan-hi);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(2, 3, 3, 0.6);
  border: 1px solid rgba(0, 232, 245, 0.35);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 232, 245, 0.18), 0 0 24px rgba(0, 232, 245, 0.25);
  background: rgba(0, 232, 245, 0.04);
}
.field .hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.checkbox input { margin-top: 0.18rem; accent-color: var(--cyan); }

.code-input {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.35em !important;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.05rem 1.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(180deg, rgba(10, 38, 48, 0.85) 0%, rgba(4, 22, 28, 0.95) 100%);
  border: 2px solid var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.55),
    0 0 30px rgba(0, 232, 245, 0.22);
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0 50%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--cyan-hi) 0%, var(--cyan) 100%);
  text-shadow: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 232, 245, 0.5);
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.btn-primary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok {
  color: var(--ok);
  border-color: rgba(106, 255, 198, 0.4);
  background: rgba(106, 255, 198, 0.06);
}
.form-msg.err {
  color: var(--danger);
  border-color: rgba(255, 106, 91, 0.4);
  background: rgba(255, 106, 91, 0.06);
}

/* ------------------------------------------------------------
   RULES / LEGAL LISTS
   ------------------------------------------------------------ */
.rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rule-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2.2rem;
  border-bottom: 1px dashed rgba(0, 232, 245, 0.15);
}
.rule-list li:last-child { border-bottom: none; }
.rule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.rule-list .allowed::before { border-color: var(--ok); box-shadow: 0 0 10px rgba(106,255,198,0.5); }
.rule-list .forbidden::before { border-color: var(--danger); box-shadow: 0 0 10px rgba(255,106,91,0.5); }

/* ------------------------------------------------------------
   TOC / anchor nav inside the rules page
   ------------------------------------------------------------ */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 2rem;
}
.toc a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201, 128, 58, 0.55);
  color: var(--copper-hi);
  transition: all 0.25s ease;
}
.toc a:hover { color: var(--gold); border-color: var(--gold); background: rgba(240,197,122,0.08); }

/* ------------------------------------------------------------
   VIDEO PLAYER
   ------------------------------------------------------------ */
.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(0, 232, 245, 0.35);
  box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 60px rgba(0,232,245,0.18);
  overflow: hidden;
}
.video-stage video { width: 100%; height: 100%; object-fit: cover; }
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.video-thumbs button {
  padding: 0.8rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  background: rgba(2,3,3,0.65);
  border: 1px solid rgba(0,232,245,0.35);
  transition: all 0.25s ease;
}
.video-thumbs button:hover,
.video-thumbs button.active {
  color: var(--bg-deep);
  background: var(--cyan);
  border-color: var(--cyan);
}

/* ------------------------------------------------------------
   SCAN PAGE — how it works
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.step {
  position: relative;
  padding: 1.4rem 1.3rem 1.3rem;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.8) 0%, rgba(4, 12, 16, 0.9) 100%);
  border: 1px solid rgba(0,232,245,0.3);
}
.step .num {
  position: absolute;
  top: -16px;
  left: 16px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--bg-deep);
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan-glow);
}
.step h3 { margin-top: 0.4rem; margin-bottom: 0.4rem; color: var(--cyan-hi); }
.step p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 0; }

.scan-box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 2rem auto 1.2rem;
  border: 2px dashed var(--cyan);
  box-shadow: 0 0 36px rgba(0, 232, 245, 0.25), inset 0 0 36px rgba(0, 232, 245, 0.1);
  position: relative;
}
.scan-box svg { width: 58%; height: 58%; stroke: var(--cyan-hi); fill: none; stroke-width: 1.6; }
.scan-box::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan-glow);
  animation: scanline 2.4s ease-in-out infinite;
}
@keyframes scanline {
  0%   { top: 10%; opacity: 0.3; }
  50%  { top: 90%; opacity: 1; }
  100% { top: 10%; opacity: 0.3; }
}

/* ------------------------------------------------------------
   SHOP PAGE
   ------------------------------------------------------------ */
.shop-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.78) 0%, rgba(4, 12, 16, 0.9) 100%);
  border: 1px solid rgba(0, 232, 245, 0.3);
  box-shadow: 0 24px 70px rgba(0,0,0,0.7), 0 0 60px rgba(0,232,245,0.12);
}
.shop-hero .illustration {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(0,232,245,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a1a20 0%, #020608 100%);
  border: 1px solid rgba(0, 232, 245, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-hero .illustration svg { width: 100%; height: 100%; }
.shop-hero .illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.05) contrast(1.05);
}
.shop-hero .illustration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,232,245,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,232,245,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}
.shop-hero .illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3,5,6,0.7) 100%);
  pointer-events: none;
}
.shop-hero .copy h2 {
  margin-top: 0;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.shop-hero .copy .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan-glow);
  margin: 0.4rem 0 0.8rem;
}
.shop-hero .copy .price-tag small {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-hero .copy p { font-size: 0.95rem; color: var(--text-dim); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.82) 0%, rgba(4, 12, 16, 0.92) 100%);
  border: 1px solid rgba(0, 232, 245, 0.28);
  transition: all 0.3s ease;
  overflow: hidden;
}
.product:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 18px 50px rgba(0,0,0,0.65), 0 0 40px rgba(0, 232, 245, 0.28);
}
.product .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(0,232,245,0.14) 0%, transparent 62%),
    linear-gradient(180deg, #0a1a20 0%, #020608 100%);
  border-bottom: 1px solid rgba(0, 232, 245, 0.22);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,232,245,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,232,245,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, black 45%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 45%, transparent 90%);
  pointer-events: none;
}
.product .thumb svg {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 0 18px rgba(0,232,245,0.35));
  transition: transform 0.4s cubic-bezier(.2,1,.2,1);
}
.product .thumb img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.2,1,.2,1), filter 0.4s ease;
  filter: saturate(1.05) contrast(1.05);
}
.product:hover .thumb svg { transform: scale(1.04) translateY(-2px); }
.product:hover .thumb img { transform: scale(1.06); filter: saturate(1.15) contrast(1.1); }
.product .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(3,5,6,0.55) 100%);
  pointer-events: none;
}
.product .thumb .badge { z-index: 3; }
.product .thumb .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.55rem;
  color: var(--bg-deep);
  background: var(--cyan);
  text-transform: uppercase;
  box-shadow: 0 0 14px var(--cyan-glow);
}
.product .thumb .badge.soon {
  color: var(--gold);
  background: rgba(3,5,6,0.85);
  border: 1px solid var(--copper);
  box-shadow: 0 0 12px rgba(201, 128, 58, 0.45);
}
.product .body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
}
.product .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-glow);
}
.product .desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  flex: 1;
  margin: 0.2rem 0 0.9rem;
}
.product .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  background: rgba(2,3,3,0.6);
  border: 1px solid var(--cyan-glow);
  transition: all 0.25s ease;
  cursor: pointer;
  width: 100%;
}
.product .cta:hover {
  color: var(--bg-deep);
  background: var(--cyan);
  border-color: var(--cyan);
}
.product .cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.shop-note {
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--copper);
  background: rgba(201, 128, 58, 0.07);
  font-size: 0.88rem;
  color: var(--text-dim);
}
.shop-note strong { color: var(--copper-hi); }

.drop-strip {
  margin-top: 2.4rem;
  padding: 1.8rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.2rem;
  border: 1px solid rgba(0, 232, 245, 0.28);
  background:
    radial-gradient(ellipse at center, rgba(0,232,245,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0a1a20 0%, #020608 100%);
}
.drop-strip .mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.drop-strip .mini svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 12px rgba(0,232,245,0.4));
}
.drop-strip .mini .nm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--cyan-hi);
  text-transform: uppercase;
}
.drop-strip .mini .pr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ------------------------------------------------------------
   MANIFESTO
   ------------------------------------------------------------ */
.manifesto-intro {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: var(--text);
  margin: 1.6rem 0 2.8rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--cyan);
  text-shadow: 0 0 18px rgba(0,232,245,0.25);
}
.manifesto-intro em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 22px var(--cyan-glow);
}

.articles {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  counter-reset: art;
}
.article {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.4rem;
  padding: 1.8rem 1.8rem 1.8rem 1.4rem;
  background: linear-gradient(180deg, rgba(10, 24, 30, 0.82) 0%, rgba(4, 12, 16, 0.92) 100%);
  border: 1px solid rgba(0, 232, 245, 0.28);
  box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 0 30px rgba(0,232,245,0.08);
  counter-increment: art;
  transition: all 0.3s ease;
}
.article:hover {
  border-color: var(--cyan);
  box-shadow: 0 18px 50px rgba(0,0,0,0.65), 0 0 50px rgba(0,232,245,0.25);
}
.article::before {
  content: "0" counter(art);
  grid-column: 1;
  align-self: start;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  line-height: 0.9;
  color: var(--cyan);
  text-shadow: 0 0 26px var(--cyan-glow);
  letter-spacing: 0.02em;
}
.article h3 {
  grid-column: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  margin: 0.3rem 0 0.6rem;
  text-shadow: 0 0 14px rgba(0,232,245,0.25);
}
.article p {
  grid-column: 2;
  color: var(--text);
  font-size: 0.97rem;
  margin: 0;
}
.article p + p { margin-top: 0.6rem; }
.article .tag {
  grid-column: 2;
  display: inline-block;
  margin-top: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-hi);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(201, 128, 58, 0.45);
}

@media (max-width: 640px) {
  .article { grid-template-columns: 54px 1fr; padding: 1.3rem 1.2rem; gap: 0.9rem; }
  .article::before { font-size: 2.4rem; }
  .article h3 { font-size: 1.2rem; }
}

.closing {
  margin-top: 2.6rem;
  padding: 2rem 1.6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(60, 36, 18, 0.55) 0%, rgba(4, 12, 16, 0.85) 100%);
  border-top: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
}
.closing .line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.16em;
  color: var(--gold);
  text-shadow: 0 0 22px rgba(240,197,122,0.45);
  margin-bottom: 0.4rem;
}
.closing .line .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
  vertical-align: middle;
  margin: 0 0.5em 0.2em;
}
.closing p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.closing .actions-row {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.closing .actions-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-hi);
  border: 1.5px solid var(--cyan);
  background: rgba(2,3,3,0.6);
  transition: all 0.3s ease;
}
.closing .actions-row a:hover {
  color: var(--bg-deep);
  background: var(--cyan);
}
.closing .actions-row a.gold {
  color: var(--gold);
  border-color: var(--copper-hi);
}
.closing .actions-row a.gold:hover {
  color: var(--bg-deep);
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .shop-hero {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
  .shop-hero .photo { aspect-ratio: 4 / 5; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.page-footer {
  border-top: 1px solid rgba(201, 128, 58, 0.35);
  padding: 1.2rem 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(3,5,6,0.85);
}
.page-footer a { color: var(--copper-hi); margin: 0 0.4rem; }
.page-footer a:hover { color: var(--gold); }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 640px) {
  .page-header { padding: 0.8rem 1rem; }
  main.page { padding: 2rem 1.1rem 3.5rem; }
  .card { padding: 1.6rem 1.25rem; }
  h1.page-title { font-size: clamp(2rem, 9vw, 3rem); }
  .btn-primary { font-size: 1.1rem; padding: 0.9rem 1.2rem; }
  .brand-mini .mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
