:root {
  --bg: #0a0c10;
  --bg-elev: #11141a;
  --bg-card: #151921;
  --border: #1f2632;
  --border-hot: #2a3343;
  --text: #e8eaef;
  --text-dim: #8a93a3;
  --text-muted: #5a6373;
  --orange: #F7921C;
  --blue: #1A75BE;
  --red: #ED1C22;
  --gray: #A6A6A6;
  --accent: var(--orange);
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 38, 50, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 38, 50, .35) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 10%, rgba(247, 146, 28, .06), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 60%, rgba(26, 117, 190, .05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }

/* ===== NAV ===== */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(10, 12, 16, .72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 32px; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::before {
  content: '';
  position: absolute;
  left: -14px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.nav-links a:hover::before { opacity: 1; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-hot);
  color: var(--text);
  text-decoration: none;
  background: transparent;
  transition: all .2s;
}
.nav-cta:hover { border-color: var(--orange); color: var(--orange); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  position: relative;
}
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  max-width: 1100px;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .accent-blue { color: var(--blue); }
.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }
.btn-primary {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: var(--orange);
  color: #0a0c10;
  text-decoration: none;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #ffa838; transform: translateY(-1px); }
.btn-primary::after { content: '→'; font-size: 16px; }
.btn-ghost {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hot);
  text-decoration: none;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, .02); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat { padding-right: 24px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .plus { color: var(--orange); font-size: 28px; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ===== SECTION HEADERS ===== */
section { padding: 120px 32px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label .num { color: var(--orange); font-weight: 600; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 200px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -.015em;
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 900px;
}
.section-intro {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 700px;
  margin-bottom: 64px;
  line-height: 1.65;
}

/* ===== CHI SIAMO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.7;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.timeline {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  position: relative;
}
.timeline-item { margin-bottom: 40px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px; top: 8px;
  width: 10px; height: 10px;
  background: var(--bg);
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SERVIZI ===== */
.servizi { background: linear-gradient(180deg, var(--bg) 0%, #080a0e 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-card);
  padding: 48px 40px;
  transition: background .25s;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: #191e28; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--service-color, var(--orange));
  transition: width .3s;
}
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .1em;
  margin-bottom: 24px;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--service-color, var(--orange));
}
.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.005em;
}
.service-desc {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, .02);
  padding: 5px 10px;
  border: 1px solid var(--border);
  letter-spacing: .03em;
}

/* ===== CASI STUDIO ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.case-card:hover { border-color: var(--border-hot); transform: translateY(-2px); }
.case-image {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(247, 146, 28, .08), rgba(26, 117, 190, .08)),
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(31, 38, 50, .4) 12px, rgba(31, 38, 50, .4) 13px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.case-image-placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.case-image-placeholder::before {
  content: '⌖';
  display: block;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 8px;
  opacity: .6;
}
.case-body { padding: 28px 28px 32px; }
.case-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.case-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ===== CONTATTI ===== */
.contatti { background: linear-gradient(180deg, #080a0e 0%, var(--bg) 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block { margin-bottom: 36px; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-value a { color: var(--text); text-decoration: none; transition: color .2s; }
.contact-value a:hover { color: var(--orange); }
.contact-extra {
  font-size: 14px;
  color: var(--text-dim);
}

.form-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: border-color .2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--orange); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--red); }
.form-field-error {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .03em;
  margin-top: 6px;
}
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-submit {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: var(--orange);
  color: #0a0c10;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.form-submit:hover { background: #ffa838; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-submit.is-success { background: var(--blue); }
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  letter-spacing: .03em;
}
.form-status {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}
.form-status.is-error { color: var(--red); border-color: var(--red); }
.form-status.is-success { color: var(--blue); border-color: var(--blue); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img { height: 28px; opacity: .8; }
.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.footer-meta span { color: var(--orange); }
.footer-privacy-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-privacy-link:hover { color: var(--orange); }

/* ===== NAV RIGHT (lang switch + CTA) ===== */
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}
.lang-opt {
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 6px;
  transition: color .2s;
}
.lang-opt:hover { color: var(--text); }
.lang-opt.is-active { color: var(--orange); font-weight: 600; }
.lang-sep { color: var(--border-hot); user-select: none; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: rgba(10, 12, 16, .96);
  border: 1px solid var(--border-hot);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  max-width: 880px;
  margin: 0 auto;
  animation: cookieIn .35s ease-out;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner.is-leaving { opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .3s; }
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px 24px;
}
.cookie-banner-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
  margin-bottom: 6px;
}
.cookie-banner-msg {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 180px;
}
.cookie-banner-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--orange);
  color: #0a0c10;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cookie-banner-btn:hover { background: #ffa838; }
.cookie-banner-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--border-hot);
  padding-bottom: 2px;
  text-align: center;
  transition: color .2s, border-color .2s;
}
.cookie-banner-link:hover { color: var(--orange); border-color: var(--orange); }

/* ===== CASE CARD (link) ===== */
a.case-card { text-decoration: none; color: inherit; cursor: pointer; }

/* ===== CASE STUDY PAGE ===== */
.case-study-page { padding: 160px 32px 120px; }
.case-study-inner { max-width: 880px; }
.case-study-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.case-study-excerpt {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.case-study-cover { margin-bottom: 40px; }
.case-study-cover img { width: 100%; height: auto; border: 1px solid var(--border); display: block; }
.case-study-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
}
.case-study-body p { margin-bottom: 18px; }
.case-study-body h2, .case-study-body h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 32px 0 14px;
}
.case-study-body h2 { font-size: 26px; }
.case-study-body h3 { font-size: 20px; }
.case-study-body strong { color: var(--text); font-weight: 500; }
.case-study-body a { color: var(--orange); text-decoration: none; }
.case-study-body a:hover { border-bottom: 1px solid var(--orange); }
.case-study-body ul, .case-study-body ol { margin: 0 0 18px 22px; }
.case-study-body li { margin-bottom: 6px; }

/* ===== CASE STUDY GALLERY (frontend) ===== */
.case-study-gallery {
  margin: 56px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.case-gallery-figure {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-gallery-figure a { display: block; line-height: 0; }
.case-gallery-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity .2s;
  background: #000;
}
.case-gallery-figure:hover img { opacity: .92; }
.case-gallery-caption {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
}

/* ===== PRIVACY PAGE ===== */
.privacy-page { padding: 160px 32px 120px; }
.privacy-inner { max-width: 880px; }
.privacy-title { font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.privacy-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .08em;
  margin-bottom: 32px;
}
.privacy-intro {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.privacy-sections { display: flex; flex-direction: column; gap: 40px; }
.privacy-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.005em;
}
.privacy-section-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}
.privacy-section-body p { margin-bottom: 14px; }
.privacy-section-body p:last-child { margin-bottom: 0; }
.privacy-section-body strong { color: var(--text); font-weight: 500; }
.privacy-section-body a { color: var(--orange); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.privacy-section-body a:hover { border-color: var(--orange); }
.privacy-section-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(255, 255, 255, .04);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--text);
}
.privacy-back { margin-top: 56px; }
.privacy-back .btn-ghost { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 12, 16, .98);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat { padding: 0; }
  section { padding: 80px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 16px 20px; }
  .nav-right .nav-cta { display: none; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 16px; padding: 18px 18px; }
  .cookie-banner-actions { min-width: 0; flex-direction: row; }
  .cookie-banner-link, .cookie-banner-btn { flex: 1; }
  .privacy-page { padding: 120px 24px 80px; }
  .case-study-page { padding: 120px 24px 80px; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

::selection { background: var(--orange); color: #0a0c10; }
