/* ========================================================================= */
/* LDSC - DESIGN TOKENS                                                     */
/* Brand Pack v1 — Aligned                                                  */
/* ========================================================================= */

:root, [data-theme="dark"] {
  /* --- Brand Colors --- */
  --ldsc-blu:       #1A56C4;
  --ldsc-oro:       #F5C518;
  --ldsc-campo:     #08090D;
  --ldsc-struttura: #1E2028;
  --ldsc-muted:     #9395A0;
  --ldsc-carta:     #F0EFE8;

  /* --- Semantic Tokens (dark) --- */
  --bg:             var(--ldsc-campo);
  --bg2:            var(--ldsc-struttura);
  --bg3:            #272a34;
  --border:         rgba(255,255,255,0.07);
  --border2:        rgba(255,255,255,0.14);
  --text:           var(--ldsc-carta);
  --muted:          var(--ldsc-muted);
  --faint:          #2a2d3a;

  /* --- Typography --- */
  --display:        'Space Grotesk', sans-serif;
  --mono:           'DM Mono', monospace;

  /* --- Accent (dark = oro) --- */
  --accent:         var(--ldsc-blu);
  --accent-bright:  #2868d8;
  --accent-dim:     rgba(26,86,196,0.12);
  --accent-border:  rgba(26,86,196,0.25);
  --oro:            var(--ldsc-oro);
  --oro-dim:        rgba(245,197,24,0.12);
  --oro-border:     rgba(245,197,24,0.25);
  --cta-text:       #fff;

  /* --- Motion --- */
  --ease:           cubic-bezier(.16,1,.3,1);
  color-scheme:     dark;
}

[data-theme="light"] {
  --bg:             var(--ldsc-carta);
  --bg2:            #e4e2dc;
  --bg3:            #d8d5ce;
  --border:         rgba(0,0,0,0.09);
  --border2:        rgba(0,0,0,0.17);
  --text:           var(--ldsc-campo);
  --muted:          #5A5D68;
  --faint:          #d0ccc4;
  --accent:         var(--ldsc-blu);
  --accent-bright:  #1440a0;
  --accent-dim:     rgba(26,86,196,0.08);
  --accent-border:  rgba(26,86,196,0.22);
  --oro:            var(--ldsc-blu);
  --oro-dim:        rgba(26,86,196,0.08);
  --oro-border:     rgba(26,86,196,0.22);
  --cta-text:       #fff;
  color-scheme:     light;
}
/* ========================================================================= */
/* LDSC - BASE                                                              */
/* Reset, body, selection, noise overlay                                    */
/* ========================================================================= */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .4s, color .4s;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: .25;
}

::selection { background: rgba(26,86,196,.28); }
/* ========================================================================= */
/* LDSC - COMPONENTS                                                        */
/* Nav, Hero, Sections, Props, Cases, Vendor, About, Contact, etc.          */
/* ========================================================================= */

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav-scrolled { background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(16px); border-bottom-color: var(--border); }
.nav-brand img { height: 26px; display: block; }
.nav-brand .logo-color { display: none; }
[data-theme="light"] .nav-brand .logo-white { display: none; }
[data-theme="light"] .nav-brand .logo-color { display: block; }
.nav-center { display: flex; gap: 32px; }
.nav-link { font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 4px 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); border-bottom-color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.theme-toggle { width: 36px; height: 36px; background: var(--bg2); border: 1px solid var(--border2); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.theme-toggle:hover { transform: scale(1.08); }
.theme-toggle svg { width: 15px; height: 15px; color: var(--text); }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 18px; position: relative; z-index: 101; }
.nav-hamburger span { display: block; width: 100%; height: 1.5px; background: var(--text); position: absolute; left: 0; transition: all .3s; }
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 8px; }
.nav-hamburger span:nth-child(3) { top: 16px; }
.nav-hamburger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }
.nav-mobile { display: none; position: fixed; inset: 0; z-index: 99; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 36px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav-mobile.open { display: flex; opacity: .98; pointer-events: auto; }
.nav-mobile .nav-link { font-size: 15px; letter-spacing: 3px; }

/* LANG SWITCH (Keply-style buttons) */
.nav-lang { display: flex; gap: 4px; align-items: center; }
.nav-lang-btn { font-family: var(--mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); background: none; border: 1px solid transparent; border-radius: 3px; padding: 2px 6px; cursor: pointer; transition: color .2s, border-color .2s; }
.nav-lang-btn:hover { color: var(--text); }
.nav-lang-btn.active { color: var(--text); border-color: var(--accent-border); }
.nav-lang-sep { color: var(--faint); font-size: 10px; user-select: none; }

/* HERO */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: flex-end; padding: 0 64px 80px 10vw; position: relative; z-index: 2; border-right: 1px solid var(--border); }
.hero-ghost { position: absolute; bottom: -40px; left: 6vw; font-family: var(--display); font-size: clamp(180px,22vw,320px); font-weight: 400; color: var(--faint); line-height: 1; pointer-events: none; user-select: none; z-index: 0; opacity: .35; }
.hero-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 4px; color: var(--oro); text-transform: uppercase; margin-bottom: 24px; position: relative; z-index: 1; opacity: 0; animation: up .9s var(--ease) both; }
.hero-title { font-family: var(--display); font-weight: 400; font-size: clamp(38px,4.5vw,68px); line-height: 1.1; letter-spacing: -0.5px; position: relative; z-index: 1; opacity: 0; animation: up .9s .1s var(--ease) both; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.85; max-width: 420px; margin-top: 24px; position: relative; z-index: 1; opacity: 0; animation: up .9s .2s var(--ease) both; }
.hero-actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; position: relative; z-index: 1; opacity: 0; animation: up .9s .3s var(--ease) both; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border); position: relative; z-index: 1; opacity: 0; animation: up .9s .4s var(--ease) both; flex-wrap: wrap; }
.hero-stat-n { font-family: var(--display); font-size: clamp(28px,3vw,40px); color: var(--oro); line-height: 1; }
.hero-stat-l { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }
.hero-right { position: relative; overflow: hidden; background: var(--bg); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; position: absolute; inset: 0; }
.hero-photo-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, var(--bg2) 0%, rgba(8,9,13,0.55) 30%, rgba(8,9,13,0.15) 60%, transparent 100%); }
.hero-right::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 220px; background: linear-gradient(0deg, rgba(8,9,13,0.75) 0%, transparent 100%); z-index: 1; pointer-events: none; }
.hero-right::before { content: ''; position: absolute; top: 15%; left: 0; bottom: 15%; width: 1px; background: linear-gradient(180deg, transparent, var(--accent), transparent); opacity: .4; z-index: 3; }
.hero-badge { position: absolute; bottom: 48px; left: 40px; z-index: 5; background: rgba(8,9,13,0.85); border: 1px solid var(--border2); backdrop-filter: blur(8px); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.hero-badge-n { font-family: var(--display); font-size: 32px; color: var(--oro); line-height: 1; }
.hero-badge-l { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* HERO COMPACT (inner pages) */
.hero-compact { padding: 140px 48px 80px; max-width: 1100px; margin: 0 auto; }

/* SECTIONS */
.sect { padding: 120px 48px; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; }
.sect-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 4px; color: var(--oro); text-transform: uppercase; margin-bottom: 16px; }
.sect-title { font-family: var(--display); font-weight: 400; font-size: clamp(26px,3.2vw,44px); line-height: 1.18; letter-spacing: -0.2px; margin-bottom: 16px; }
.sect-desc { font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.9; max-width: 500px; }

/* PROP GRID */
.prop-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); overflow: hidden; margin-top: 56px; }
.prop-cell { background: var(--bg); padding: 40px 32px; transition: background .25s; }
.prop-cell:hover { background: var(--bg2); }
.prop-n { font-family: var(--mono); font-size: 36px; font-weight: 300; color: var(--faint); line-height: 1; margin-bottom: 20px; }
.prop-h { font-family: var(--display); font-size: 18px; font-weight: 400; margin-bottom: 12px; }
.prop-p { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.85; }

/* VIDEO */
.video-full { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 100px 10vw; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.video-left .sect-title { margin-bottom: 20px; }
.video-left .sect-desc { margin-bottom: 32px; }
.video-frame { position: relative; aspect-ratio: 16/9; background: var(--bg); border: 1px solid var(--border2); overflow: hidden; cursor: pointer; }
.video-frame::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 40px 40px; }
.video-frame::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, transparent 70%); }
.video-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.play-ring { width: 80px; height: 80px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; background: rgba(255,255,255,0.03); }
.video-frame:hover .play-ring { border-color: var(--accent); background: var(--accent-dim); }
.play-ring svg { width: 26px; height: 26px; color: var(--text); margin-left: 4px; }
.play-label { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.video-frame .corner { position: absolute; width: 20px; height: 20px; border-color: var(--accent-border); border-style: solid; opacity: .8; }
.video-frame .corner-tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.video-frame .corner-tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.video-frame .corner-bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.video-frame .corner-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }
.video-timecode { position: absolute; bottom: 14px; right: 16px; font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--faint); }
.video-link { text-decoration: none; display: block; }
.video-link:hover .play-ring { border-color: var(--accent); background: var(--accent-dim); }
.video-link:hover .play-label { color: var(--text); }
.video-yt-badge { position: absolute; bottom: 16px; right: 16px; display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); z-index: 2; transition: color .2s; }
.video-link:hover .video-yt-badge { color: var(--muted); }

/* CASES */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); overflow: hidden; margin-top: 56px; }
.case-cell { background: var(--bg); padding: 44px 36px; transition: background .25s; }
.case-cell:hover { background: var(--bg2); }
.case-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 3px; color: var(--oro); text-transform: uppercase; margin-bottom: 16px; }
.case-result { font-family: var(--display); font-size: clamp(28px,3vw,40px); line-height: 1.1; margin-bottom: 14px; }
.case-desc { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.85; }

/* VENDOR */
.vendor-block { background: var(--bg2); border: 1px solid var(--accent-border); padding: 64px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.vendor-label { font-family: var(--mono); font-size: 9px; letter-spacing: 4px; color: var(--accent); text-transform: uppercase; margin-bottom: 14px; }
.vendor-title { font-family: var(--display); font-size: clamp(20px,2.2vw,28px); font-weight: 400; line-height: 1.3; margin-bottom: 16px; }
.vendor-text { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.9; }
.vendor-side { background: var(--accent-dim); border: 1px solid var(--accent-border); padding: 40px 36px; display: flex; flex-direction: column; gap: 22px; }
.vendor-feature { display: flex; align-items: flex-start; gap: 14px; }
.vendor-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.vendor-ft { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ABOUT */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.about-text { font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.95; }
.about-numbers { display: flex; flex-direction: column; gap: 36px; }
.about-n { font-family: var(--display); font-size: clamp(40px,4.5vw,56px); color: var(--oro); line-height: 1; }
.about-l { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* BUTTONS */
.btn-primary { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cta-text); background: var(--accent); padding: 14px 32px; text-decoration: none; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn-secondary { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); background: transparent; border: 1px solid var(--border2); padding: 13px 32px; text-decoration: none; transition: border-color .2s, transform .2s; }
.btn-secondary:hover { border-color: var(--text); transform: translateY(-1px); }

/* CTA */
.cta-sect { padding: 140px 48px; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; text-align: center; }
.cta-title { font-family: var(--display); font-size: clamp(28px,3.5vw,48px); font-weight: 400; letter-spacing: -0.2px; margin-bottom: 16px; }
.cta-sub { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 40px; line-height: 1.9; }

/* FOOTER */
.footer { padding: 48px; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 22px; display: block; }
.footer-logo .logo-color { display: none; }
[data-theme="light"] .footer-logo .logo-white { display: none; }
[data-theme="light"] .footer-logo .logo-color { display: block; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { font-family: var(--mono); font-size: 10px; color: var(--muted); text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
.footer-link:hover { color: var(--text); }
.footer-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); line-height: 1.8; text-align: right; }

/* SECTORS TICKER */
.sectors-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; position: relative; background: var(--bg2); }
.sectors-band::before, .sectors-band::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.sectors-band::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.sectors-band::after { right: 0; background: linear-gradient(270deg, var(--bg2), transparent); }
.sectors-track { display: flex; gap: 0; animation: ticker 28s linear infinite; width: max-content; }
.sectors-track:hover { animation-play-state: paused; }
.sector-item { display: flex; align-items: center; gap: 0; white-space: nowrap; }
.sector-name { font-family: var(--mono); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); padding: 0 32px; }
.sector-dot { width: 3px; height: 3px; background: var(--accent); border-radius: 50%; opacity: .5; flex-shrink: 0; }

/* TIMELINE */
.timeline { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 0 40px; padding: 32px 0; border-top: 1px solid var(--border); position: relative; }
.tl-item:last-child { border-bottom: 1px solid var(--border); }
.tl-year { font-family: var(--display); font-size: clamp(18px,2vw,26px); color: var(--oro); line-height: 1; padding-top: 3px; }
.tl-content-h { font-family: var(--display); font-size: 16px; margin-bottom: 8px; }
.tl-content-p { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.85; }

/* BIO SPLIT */
.bio-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.bio-photo { position: relative; overflow: hidden; border: 1px solid var(--border); }
.bio-photo img { width: 100%; display: block; object-fit: cover; object-position: center top; }
.bio-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(0deg, rgba(8,9,13,.85) 0%, transparent 100%); font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 56px; }
.contact-cell { background: var(--bg); padding: 48px 40px; }
.contact-cell-icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--accent); }
.contact-cell-label { font-family: var(--mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.contact-cell-value { font-family: var(--display); font-size: clamp(16px,1.8vw,22px); line-height: 1.3; margin-bottom: 8px; }
.contact-cell-sub { font-family: var(--mono); font-size: 11px; color: var(--muted); line-height: 1.8; }
.contact-cell a { color: var(--text); text-decoration: none; transition: color .2s; }
.contact-cell a:hover { color: var(--accent); }

/* BOOKING */
.booking-block { background: var(--bg2); border: 1px solid var(--accent-border); padding: 64px 56px; margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* BRAND LOCKUP — Navbar & Footer */
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand-symbol { display: block; flex-shrink: 0; }
.nav-brand-wordmark { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--text); line-height: 1; }

.footer-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-brand-symbol { display: block; flex-shrink: 0; }
.footer-brand-wordmark { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--text); line-height: 1; }

/* Cerchio: oro su dark, blu su light (regola brand) */
.symbol-circle { stroke: var(--oro); }

/* ORIENTATION LIST */
.orient-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.orient-list li { font-family: var(--mono); font-size: 13px; color: var(--muted); line-height: 1.9; padding: 16px 0 16px 24px; border-top: 1px solid var(--border); position: relative; }
.orient-list li:last-child { border-bottom: 1px solid var(--border); }
.orient-list li::before { content: '—'; position: absolute; left: 0; color: var(--oro); }

/* AREAS GRID (3x2 desktop, 1 col mobile) */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); overflow: hidden; margin-top: 56px; }
.area-cell { background: var(--bg); padding: 40px 32px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: background .25s; position: relative; }
.area-cell:hover { background: var(--bg2); }
.area-cell:hover .area-arrow { color: var(--oro); transform: translateX(4px); }
.area-n { font-family: var(--mono); font-size: 36px; font-weight: 300; color: var(--faint); line-height: 1; margin-bottom: 20px; }
.area-h { font-family: var(--display); font-size: 18px; font-weight: 500; margin-bottom: 12px; color: var(--text); }
.area-p { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.85; flex: 1; }
.area-arrow { font-family: var(--mono); font-size: 18px; color: var(--muted); margin-top: 20px; transition: color .2s, transform .2s; }

/* METHOD MINI */
.method-mini { font-family: var(--mono); font-size: 14px; color: var(--muted); line-height: 2; max-width: 560px; }

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* BACK LINK (pagine verticali) */
.back-link { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; color: var(--muted); text-decoration: none; margin-bottom: 24px; transition: color .2s; }
.back-link:hover { color: var(--text); }

/* RELATED LINKS (vedi anche) */
.related-links { display: flex; gap: 1px; background: var(--border); border: 1px solid var(--border); overflow: hidden; margin-top: 32px; }
.related-link { flex: 1; background: var(--bg); padding: 28px 24px; font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--text); text-decoration: none; transition: background .25s, color .2s; }
.related-link:hover { background: var(--bg2); color: var(--oro); }

@media (max-width: 900px) {
  .related-links { flex-direction: column; }
}
/* ========================================================================= */
/* LDSC - ANIMATIONS                                                        */
/* Keyframes, reveals, ticker                                               */
/* ========================================================================= */

@keyframes up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
/* ========================================================================= */
/* LDSC - RESPONSIVE                                                        */
/* Mobile breakpoints and reduced motion                                    */
/* ========================================================================= */

@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-hamburger { display: block; }
  .nav { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 64px; }
  .hero-ghost { display: none; }
  .hero-right { height: 260px; }
  .hero-badge { bottom: 24px; left: 24px; }
  .hero-compact { padding: 120px 24px 60px; }
  .sect, .cta-sect { padding: 80px 24px; }
  .prop-grid { grid-template-columns: 1fr; }
  .video-full { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .cases-grid { grid-template-columns: 1fr; }
  .vendor-block, .about-block, .bio-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-block { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-stats { animation: none; opacity: 1; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .sectors-track { animation: none; }
}
