:root {

    /* Typography */
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --lh: 1.6;

  /* Fluid type scale (uniformità tra FHD, 2K e scaling OS) */
  --fs-body: clamp(0.98rem, 0.94rem + 0.22vw, 1.06rem);
  --fs-h1: clamp(2.15rem, 1.55rem + 2.35vw, 3.15rem);
  --fs-h2: clamp(1.55rem, 1.25rem + 1.15vw, 2.10rem);
  --fs-h3: clamp(1.20rem, 1.05rem + 0.55vw, 1.55rem);

  /* Palette */
  --bg: #050b16;
  --accent-cyan: #00bcd4;
  --accent-blue: #1e88e5;
  --accent-teal: #00aeef;
  --text: #f3f6ff;
  --text-muted: #b8c3d6;
/* Validazione custom (UI) */
.field-error{
  margin: 8px 0 0 0;
  font-size: 12.5px;
  line-height: 1.2;
  color: rgba(255,255,255,0.78);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.form-row.is-invalid .field-error,
.form-consent.is-invalid .field-error{
  opacity: 1;
  transform: translateY(0);
}

.form-row.is-invalid input,
.form-row.is-invalid textarea{
  border-color: rgba(0, 220, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 220, 255, 0.12);
}

.form-consent.is-invalid label{
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 12px rgba(0, 220, 255, 0.25);
}

/* Messaggio generale già presente come .form-status */
.form-status.error{
  color: rgba(255,255,255,0.92);
}
.form-status.ok{
  color: rgba(255,255,255,0.92);
}

  /* Gradient */
  --grad-main: linear-gradient(38deg, #050b16 0%, #1e88e5 45%, #00bcd4 100%);
  --grad-cta: linear-gradient(42deg, #1e88e5 0%, #00aeef 55%, #00bcd4 100%);

  /* Surfaces */
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.12);
  --card-border-strong: rgba(255, 255, 255, 0.18);
  

  /* Shadows */
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --glow-cyan: 0 0 0 1px rgba(0, 188, 212, 0.22), 0 18px 60px rgba(0, 188, 212, 0.12);

  /* Typography */
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --lh: 1.6;

  /* Layout */
  --max: 1240px;
  --pad-mobile: 22px;
  --pad-desktop: 36px;

  /* Spacing */
  --sec-pad-mobile: 72px;
  --sec-pad-desktop: 104px;

  /* Radius */
  --r: 18px;
  --r2: 22px;

  /* Transitions */
  --t: 180ms ease;
  --t2: 260ms ease;

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}


@media (min-width: 900px) {
  html {
    scroll-padding-top: 65px;
  }

  section[id] {
    scroll-margin-top: 65px;
  }
}


body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1 { font-size: var(--fs-h1); line-height: 1.05; }
h2 { font-size: var(--fs-h2); line-height: 1.15; }
h3 { font-size: var(--fs-h3); line-height: 1.20; }

.hero h1 { font-size: var(--fs-h1); }

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform var(--t);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--glow-cyan);
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

#particle-canvas,
#bg {
  contain: strict;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
}

.bg-fallback {
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0.25;
  filter: blur(0px);
}

/* Container + grid */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-mobile);
  padding-right: var(--pad-mobile);
}

@media (min-width: 900px) {
  .container {
    padding-left: var(--pad-desktop);
    padding-right: var(--pad-desktop);
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.col {
  grid-column: span 12;
}

@media (min-width: 900px) {
  .col-7 {
    grid-column: span 7;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-4 {
    grid-column: span 4;
  }
}

/* Header */
.site-header{
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  padding: 0;
}


.header-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10, 12, 50, 0.50);
  backdrop-filter: blur(5px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--accent-cyan);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
}

.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 99px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}
.nav-toggle-icon::before {
  top: -6px;
}
.nav-toggle-icon::after {
  top: 6px;
}

.nav-menu {
  position: absolute;
  right: var(--pad-mobile);
  top: 76px;
  width: min(420px, calc(100vw - (var(--pad-mobile) * 2)));
  padding: 14px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 14, 28, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 8px;
  
}

.brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background-color: transparent;
}


.nav-menu.is-open {
  display: flex;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-muted);
  transition: background var(--t), color var(--t);
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    width: auto;
    padding: 2px;
    border-radius: 999px;
border: 0;
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;

    box-shadow: none;
  }


  .nav-link {
    padding: 10px 10px;
    font-size: 14px;
  }

.nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 38px;          /* deve stare COMODO nella navbar */
  padding: 0 14px;       /* niente padding verticale */

  line-height: 1;        /* elimina l’offset fantasma */
  border-radius: 999px;
}

  .header-cta {
    display: inline-flex;
  }
}

/* Sections */
.section {
padding-top: calc(var(--sec-pad-mobile) / 3);
padding-bottom: calc(var(--sec-pad-mobile) / 3);
}

#chi-siamo {
  padding-top: calc(var(--sec-pad-mobile) - 90px);
}

@media (min-width: 768px) {
  #chi-siamo {
    padding-top: calc(var(--sec-pad-desktop) - 100px);
  }
}


@media (min-width: 900px) {
  .section {
padding-top: calc(var(--sec-pad-desktop) / 3);
padding-bottom: calc(var(--sec-pad-desktop) / 3);
  }
}

.section:not(.hero) {
  content-visibility: auto;
  contain: layout paint;
  contain-intrinsic-size: 800px;
}


.section-head {
  margin-bottom: 22px;
  max-width: 820px;
}

.section-sub {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.section-title { font-size: var(--fs-h2); }




/* Typography */
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0.2px;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .lead {
    font-size: 18px;
  }
}

.muted {
  color: var(--text-muted);
}

.eyebrow {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 13px;
}

/* Hero */
.hero {
  padding-top: calc(var(--sec-pad-mobile) + 18px);
}

@media (min-width: 800px) {
  .hero {
    padding-top: calc(var(--sec-pad-desktop) + 1px);
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.microcopy {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/*.badges { 
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--text);
} */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-note {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

/* Cards */
.card {
  border-radius: var(--r2);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
backdrop-filter: none;
-webkit-backdrop-filter: none;

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 18px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  contain: paint;
  transform: translateZ(0);

}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 188, 212, 0.22);
  box-shadow: var(--shadow-soft), var(--glow-cyan);
}

.card.subtle {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.10);
}

.cards-3,
.cards-5,
.pricing {
  gap: 16px;
}

/* Panel inside hero */
.panel-card {
  padding: 0;
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.panel-body {
  padding: 18px;
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
}

.panel-text {
  margin-top: 10px;
  color: var(--text-muted);
}

.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.10);
}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.meta-pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 13px;
}

/* Lists */
.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}
.bullets li {
  margin: 8px 0;
}

/* Service cards */
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 188, 212, 0.06);
  color: var(--accent-cyan);
  margin-bottom: 12px;
}
.service-card svg {
  width: 22px;
  height: 22px;
}

/* Pricing */
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.pricing-card .btn,
.pricing-card .btn-full {
  margin-top: auto;
}


.pricing-head {
  display: grid;
  gap: 6px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.feature-list li {
  padding-left: 22px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.10);
}

.feature-list.compact {
  gap: 8px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 188, 212, 0.10);
  border: 1px solid rgba(0, 188, 212, 0.20);
  color: var(--text);
  font-size: 12px;
}

.pricing-card.featured {
  border-color: rgba(0, 188, 212, 0.30);
  background: rgba(0, 188, 212, 0.06);
}

/* Timeline */
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.timeline-item {
  position: relative;
  padding: 18px;
}

.timeline-step {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 10px;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 18px;
  }
}

.security-card .security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

@media (min-width: 900px) {
  .security-card .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.security-pill {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.pill-title {
  display: block;
  font-weight: 700;
  font-size: 13px;
}

.pill-desc {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

.fineprint {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .chev {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--t2), border-color var(--t);
}

.faq-item[open] .chev {
  transform: rotate(225deg);
  border-color: var(--text);
}

.faq-content {
  margin-top: 12px;
}

/* Contact */
.contact-grid {
  align-items: stretch;
}

.contact-card {
  height: 100%;
}


.form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 13px;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
  border-color: rgba(0, 188, 212, 0.35);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 4px;
}

.form-actions {
  margin-top: 6px;
  display: grid;
  gap: 8px;
}

.form-status {
  min-height: 20px;
  font-size: 13px;
}

.contact-card .contact-links {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--t), border-color var(--t);
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 188, 212, 0.22);
}

.contact-label {
  color: var(--text-muted);
  font-size: 13px;
}

.contact-value {
  font-weight: 500;
}

.note {
  margin-top: 12px;
  padding: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  cursor: pointer;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
}

.btn-primary {
  background: var(--grad-cta);
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
  box-shadow: 0 16px 50px rgba(0, 174, 239, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0, 188, 212, 0.18);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 188, 212, 0.22);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.btn-full {
  width: 100%;
}

.btn-small {
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 22, 0.50);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-links a:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
  border-radius: 10px;
  padding: 6px 8px;
}

/* Utilities */
.center {
  text-align: center;
}

#about {
  padding-top: calc(var(--sec-pad-mobile) / 2);
}

@media (min-width: 900px) {
  #about {
    padding-top: calc(var(--sec-pad-desktop) / 2);
  }
}

#sicurezza .btn {
  margin-top: 25px;
}

.footer-premium {
  align-items: center;
  gap: 16px;
}

.footer-left {
  display: grid;
  gap: 6px;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.footer-legal {
  margin: 0;
  font-size: 13px;
}

.footer-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.footer-mail {
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background var(--t), color var(--t);
}
.footer-mail:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), color var(--t);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(0,188,212,0.22);
  box-shadow: var(--glow-cyan);
  color: var(--text);
}
.social-icon:focus-visible {
  outline: none;
  box-shadow: var(--glow-cyan);
}

@media (max-width: 900px) {
  .footer-inner.footer-premium {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    justify-content: flex-start;
    text-align: left;
  }
}

body.no-blur .card,
body.no-blur .site-header {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
