/* ============================================================
   STRABAREGGIA 2026 — Design System
   Palette: nero (#080808) · arancione (#f97316) · bianco (#fff)
   ============================================================ */

:root {
  --bg:          #080808;
  --surface:     #0f0f0f;
  --surface-alt: #161616;
  --fg:          #ffffff;
  --muted:       rgba(255,255,255,0.5);
  --border:      rgba(255,255,255,0.07);
  --accent:      #f97316;
  --accent-hover:#ea6a0a;
  --accent-glow: rgba(249,115,22,0.15);
  --nav-h:       72px;
  --max-w:       1160px;
  --r:           14px;
  --trans:       0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--trans), border-color var(--trans), padding var(--trans);
  border-bottom: 1px solid transparent;
}
.nav.nav-scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-size: 22px; font-weight: 900; letter-spacing: -0.03em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--accent); background: rgba(249,115,22,0.09); }
.btn-nav {
  margin-left: 8px;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--trans);
  text-align: center;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.w-full { width: 100%; }

/* ================================================================
   PANELS (homepage sections)
   ================================================================ */
.panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  position: relative;
}
.panel-surface     { background: var(--surface); }
.panel-dark        { background: var(--bg); }
.panel-accent-dark { background: #0a0500; }

/* Section headers */
.section-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(249,115,22,0.12);
  color: var(--accent);
  border-radius: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-desc {
  font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.75;
}
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--bg);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -250px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.11) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 28px;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  padding: 6px 14px;
  background: var(--accent); color: #fff;
  border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
}
.badge-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
}
.hero-title {
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 900; letter-spacing: -0.035em; line-height: 0.9;
  background: linear-gradient(140deg, #fff 30%, rgba(249,115,22,0.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 19px);
  color: rgba(255,255,255,0.55);
  font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
}
.countdown {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 80px; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.cd-num {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900; letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.cd-label {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 5px;
}
.cd-sep {
  font-size: 32px; font-weight: 800; color: var(--accent); opacity: 0.35;
  line-height: 1; padding-bottom: 20px;
}
.cd-live {
  font-size: 24px; font-weight: 800; color: var(--accent);
  letter-spacing: -0.01em;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.25);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ================================================================
   ISCRIZIONI
   ================================================================ */
.cards-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 36px;
}
.card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px; position: relative; overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }
.race-card-featured { border-color: rgba(249,115,22,0.28); }
.race-card-featured:hover { border-color: rgba(249,115,22,0.7); }
.race-badge-feat {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.race-dist {
  font-size: 72px; font-weight: 900; letter-spacing: -0.04em;
  line-height: 1; color: #fff; margin-bottom: 24px;
}
.race-dist span { font-size: 28px; font-weight: 700; color: var(--accent); vertical-align: super; }
.race-info { display: flex; flex-direction: column; gap: 16px; }
.race-start {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px;
}
.race-start svg { color: var(--accent); flex-shrink: 0; }
.race-price { display: flex; align-items: baseline; gap: 10px; }
.price { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; }
.price-note { font-size: 13px; color: var(--muted); }
.race-features { display: flex; flex-direction: column; gap: 9px; }
.race-features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.race-features li::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.iscr-chips {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
}
.info-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; font-size: 13px; color: rgba(255,255,255,0.65);
}
.info-chip svg { color: var(--accent); flex-shrink: 0; }
.iscr-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ================================================================
   PERCORSO
   ================================================================ */
.percorso-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; width: 100%;
}
.percorso-desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.percorso-stats { display: flex; gap: 36px; margin-bottom: 32px; flex-wrap: wrap; }
.p-stat { display: flex; flex-direction: column; gap: 4px; }
.p-num { font-size: 44px; font-weight: 900; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.p-unit { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.4); }
.p-label { font-size: 13px; color: var(--muted); }
.percorso-details { display: flex; flex-direction: column; gap: 13px; }
.pd-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.pd-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.map-wrapper {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.route-svg { width: 100%; height: auto; }
.map-legend {
  display: flex; gap: 20px; margin-top: 16px; justify-content: center;
}
.leg-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.leg-line { display: block; width: 28px; height: 2px; border-radius: 2px; }
.leg-10 { background: var(--accent); }
.leg-5 { background: rgba(255,255,255,0.4); }

/* ================================================================
   NUMERI
   ================================================================ */
.numeri-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.num-item {
  padding: 52px 32px; text-align: center;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: background var(--trans);
}
.num-item:hover { background: rgba(249,115,22,0.05); }
.num-val {
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 900; letter-spacing: -0.035em;
  color: var(--accent); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.num-plus { font-size: 28px; font-weight: 800; color: var(--accent); opacity: 0.5; }
.num-label { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.4; }

/* ================================================================
   PARTNERS
   ================================================================ */
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.partner-item {
  padding: 28px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.4);
  transition: all var(--trans); min-height: 80px;
}
.partner-item:hover {
  color: #fff; border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #050505; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; align-items: start;
  padding: 56px 24px; max-width: var(--max-w); margin: 0 auto;
}
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; padding-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all var(--trans);
}
.footer-social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.22);
  flex-wrap: wrap; gap: 6px;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.23,1,0.32,1),
              transform 0.65s cubic-bezier(0.23,1,0.32,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   INNER PAGES (news, info, reg, faq)
   ================================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero .section-title { margin-bottom: 0; }
.page-content { padding: 72px 0 96px; }

/* Content layout with sidebar */
.content-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }
.sidebar-title {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 10px; padding: 0 14px;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  padding: 9px 14px; border-radius: 8px; font-size: 14px;
  color: rgba(255,255,255,0.5); transition: all var(--trans);
}
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-link.active { color: var(--accent); background: rgba(249,115,22,0.09); font-weight: 600; }
.main-content { min-width: 0; }
.content-section { margin-bottom: 56px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.content-section + .content-section { padding-top: 8px; border-top: 1px solid var(--border); }
.content-section h2 {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 20px; color: var(--accent);
}
.content-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: rgba(255,255,255,0.9); }
.content-section p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.78; margin-bottom: 16px; }
.content-section ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 8px; }
.content-section ul li { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.content-section strong { color: #fff; font-weight: 600; }

/* Info boxes */
.info-highlight {
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px; padding: 20px 24px; margin-bottom: 24px;
}
.info-highlight p { margin-bottom: 0; }
.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.info-cell {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
}
.info-cell .lbl {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px;
}
.info-cell .val { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.35; }
.info-cell .sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ================================================================
   NEWS
   ================================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform var(--trans), border-color var(--trans);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); }
.news-card-img {
  width: 100%; height: 200px;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; overflow: hidden; position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.15);
}
.news-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap;
}
.news-card-date { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.news-card-tag {
  font-size: 11px; color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05); border-radius: 4px;
  padding: 2px 7px;
}
.news-card-title { font-size: 17px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.news-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 700;
  color: var(--accent); transition: gap var(--trans);
}
.news-card-link:hover { gap: 10px; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-section-title {
  font-size: 18px; font-weight: 800; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; margin-top: 40px;
  text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em;
}
.faq-section-title:first-child { margin-top: 0; }
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: rgba(249,115,22,0.3); }
.faq-q {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-size: 15px; font-weight: 600; color: #fff;
  user-select: none; transition: color var(--trans);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px; line-height: 1;
  transition: background var(--trans), transform var(--trans), color var(--trans);
  color: var(--accent);
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.23,1,0.32,1); }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 16px 22px 20px;
  font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.78;
  border-top: 1px solid var(--border);
}
.faq-a-inner strong { color: #fff; }
.faq-a-inner ul { list-style: disc; padding-left: 18px; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .numeri-grid    { grid-template-columns: repeat(2, 1fr); }
  .partners-grid  { grid-template-columns: repeat(3, 1fr); }
  .percorso-grid  { grid-template-columns: 1fr; gap: 52px; }
  .percorso-visual { max-width: 500px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .sidebar-nav { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .panel { padding: 80px 0; min-height: auto; }
  .cards-row { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .numeri-grid    { grid-template-columns: repeat(2, 1fr); }
  .partners-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .footer-bottom  { flex-direction: column; gap: 4px; text-align: center; }
  .iscr-chips     { flex-direction: column; }
  .percorso-stats { gap: 24px; }
  .info-grid      { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,6,6,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; padding: 40px 24px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-link  { font-size: 20px; padding: 12px 28px; }
  .btn-nav   { font-size: 17px; padding: 14px 40px; margin: 8px 0 0 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .cd-unit { min-width: 62px; padding: 10px 12px; }
  .cd-num  { font-size: 28px; }
  .cd-sep  { font-size: 24px; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); }
}

/* ── NEWS DETAIL ── */
.news-detail { max-width: 760px; margin: 0 auto; }
.news-detail-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.news-detail-image {
  margin-bottom: 40px; border-radius: var(--r); overflow: hidden;
}
.news-detail-image img {
  width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block;
}
.news-detail-content { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.8); }
.news-detail-content h2 {
  font-size: 22px; font-weight: 700; margin: 40px 0 16px; color: var(--fg);
}
.news-detail-content h3 {
  font-size: 18px; font-weight: 700; margin: 32px 0 12px; color: var(--fg);
}
.news-detail-content p { margin-bottom: 18px; }
.news-detail-content ul, .news-detail-content ol {
  margin: 0 0 18px 20px; padding: 0;
}
.news-detail-content li { margin-bottom: 6px; }
.news-detail-content a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; transition: color var(--trans);
}
.news-detail-content a:hover { color: var(--accent-hover); }
.news-detail-content img {
  max-width: 100%; height: auto; border-radius: var(--r); margin: 24px 0;
}
.news-detail-content blockquote {
  margin: 24px 0; padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--r) var(--r) 0;
  color: rgba(255,255,255,0.7); font-style: italic;
}
.news-detail-content strong { color: var(--fg); }
.news-detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 48px; font-size: 14px; font-weight: 700;
  color: var(--accent); transition: gap var(--trans);
}
.news-detail-back:hover { gap: 10px; }

@media (max-width: 768px) {
  .news-detail-image img { max-height: 280px; }
  .news-detail-content h2 { font-size: 20px; }
}
