:root {
  --bg: #07090f;
  --bg-card: #12141f;
  --bg-elevated: #1b1e2e;
  --text: #f6f3ff;
  --muted: #9aa3c2;
  --green: #3dff6a;
  --fuchsia: #ff2d95;
  --yellow: #ffe14a;
  --lime: #c8ff3d;
  --accent: var(--green);
  --cyan: #5cf0ff;
  --gold: var(--yellow);
  --violet: #c084fc;
  --ok: var(--green);
  --warn: var(--yellow);
  --err: #ff5c7a;
  --line: rgba(255,255,255,.1);
  --radius: 22px;
  --shadow: 0 28px 80px rgba(0,0,0,.42);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: var(--font);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(61,255,106,.16), transparent 55%),
    radial-gradient(800px 420px at 92% 0%, rgba(255,45,149,.18), transparent 50%),
    radial-gradient(700px 380px at 50% 110%, rgba(255,225,74,.1), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--yellow); }
button, input, textarea, select { font: inherit; color: inherit; }
.wrap { width: min(100% - 3rem, var(--max)); margin-inline: auto; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  min-height: 92px;
  display: flex; align-items: center;
  justify-content: center;
  padding-inline: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(7,9,15,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.growth-jump {
  scroll-margin-top: 7.5rem;
}
.growth-loop-card h2 { margin-bottom: .4rem; }
.growth-loop {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
}
.growth-loop li {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem .9rem;
  background: rgba(10, 16, 22, .55);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  position: relative;
}
.growth-loop li span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3dff6a, #5cf0ff);
  color: #07120c;
  font-weight: 800;
  font-size: .85rem;
}
.growth-loop li small { color: var(--muted); }
.growth-loop li + li::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: 1.35rem;
  width: .55rem;
  height: 2px;
  background: linear-gradient(90deg, #3dff6a, #5cf0ff);
}
.growth-charts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.growth-charts figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem;
  background: rgba(7, 12, 16, .4);
}
.growth-charts figcaption {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .6rem;
}
.growth-charts svg { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .growth-loop,
  .growth-charts { grid-template-columns: 1fr; }
  .growth-loop li + li::before { display: none; }
}
.topbar > .wrap {
  width: min(100%, 1600px);
}
.top-inner {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(1rem, 3vw, 3rem);
  row-gap: 1rem;
  width: 100%;
  min-height: 92px;
}
.topbar .brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-weight: 770;
  margin-left: 0;
  flex-shrink: 0;
}
.footer-grid .brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  font-weight: 770;
  margin-left: 0;
}
.brand-mark { width: 48px; height: 48px; flex-shrink: 0; }
.brand-name {
  font-size: 1.12rem;
  letter-spacing: .06em;
  line-height: 1;
}
.brand-name.brand-wordmark {
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  letter-spacing: .14em;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffe14a;
}
@media (min-width: 1281px) {
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .brand-name.brand-wordmark {
      background: linear-gradient(90deg, var(--green), var(--yellow) 45%, var(--fuchsia));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }
}
.brand-name em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green), var(--yellow) 45%, var(--fuchsia));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav {
  justify-self: center;
  display: flex;
  gap: .85rem;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}
.nav a { white-space: nowrap; }
.nav-drop {
  position: relative;
}
.nav-drop > summary {
  list-style: none;
  cursor: pointer;
  color: var(--green);
  font: inherit;
  white-space: nowrap;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after {
  content: " ▾";
  font-size: .75em;
  opacity: .7;
}
.nav-drop-panel {
  position: absolute;
  top: calc(100% + .45rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 14rem;
  display: grid;
  gap: .15rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d1018;
  z-index: 120;
}
.nav-drop-panel a {
  display: block;
  padding: .45rem .65rem;
  border-radius: 10px;
}
.nav-drop-panel a:hover { background: rgba(255,255,255,.06); }
.nav-close { display: none; }
.nav-a11y { display: none; }
.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 46px;
  height: 46px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #12141f;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.top-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-right: 0;
  flex-shrink: 0;
  min-width: 0;
}
.top-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; cursor: pointer;
  padding: .92rem 1.45rem; border-radius: 999px; font-weight: 750;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary,
.btn-cta,
.btn-gold {
  background: linear-gradient(90deg, #c8ff3d 0%, #3dff6a 48%, #5cf0ff 100%);
  color: #04140a;
  border-radius: 999px;
  box-shadow:
    0 0 0 4px rgba(61,255,106,.16),
    0 14px 40px rgba(61,255,106,.35);
}
.btn-header {
  background: var(--fuchsia);
  color: #fff;
  border-radius: 999px;
  padding: .52rem 1.15rem;
  min-height: 40px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255,45,149,.28);
}
.btn-header:hover { color: #fff; background: #ff4eaa; }
.account-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  max-width: 220px;
  min-height: 40px;
  padding: .15rem .7rem .15rem .18rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}
.account-chip:hover { background: rgba(255,255,255,.1); color: var(--text); }
.user-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,.16);
}
.user-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3d8bfd, #ff2d95);
  color: #fff;
  font-weight: 750;
  font-size: .72rem;
  letter-spacing: .04em;
}
.account-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.account-meta strong {
  font-size: .82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.account-meta small {
  color: var(--muted);
  font-size: .68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-hello, .profile-hero, .post-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.profile-hero { margin: 0 0 1.4rem; }
.profile-hero .user-photo { width: 88px; height: 88px; font-size: 1.4rem; }
.google-ok-banner {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 0 0 1.4rem;
  padding: 1rem 1.15rem;
  border-color: rgba(66,133,244,.45);
}
.google-ok-banner .google-mark { width: 22px; height: 22px; flex-shrink: 0; margin-top: .15rem; }
.google-ok-line {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: .35rem 0 0;
  color: var(--muted);
}
.google-mark { display: inline-block; vertical-align: -3px; }
.dash-hello .google-mark { width: 20px; height: 20px; }
.dash-hello .user-photo { width: 48px; height: 48px; }
.post-author { margin: 0 0 .6rem; }
.post-author .user-photo { width: 28px; height: 28px; font-size: .62rem; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-gold { /* allineato a .btn-primary */ }
.btn-danger { background: #7f1d1d; color: #fecaca; }
.btn-cta {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  padding: 1.05rem 1.9rem;
}

.hero { padding: 7rem 0 5rem; }
.kicker {
  color: var(--yellow);
  font-size: .86rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: 1.1rem;
}
h1, .display {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.14;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 14ch;
}
.lede {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 42ch;
  margin: 1.7rem auto 2.2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.grid { display: grid; gap: 1.85rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.card p, .muted { color: var(--muted); }
.icon { font-size: 1.55rem; margin-bottom: .4rem; }
.grid-4 .card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grid-4 .icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  font-size: 1.85rem;
}

.prof {
  display: flex; flex-direction: column; gap: .45rem;
  padding: 1.15rem; border-radius: 16px;
  background: var(--bg-elevated); border: 1px solid var(--line);
  color: var(--text); cursor: pointer; text-align: left;
}
.prof input {
  accent-color: var(--green);
}
.prof:has(input:checked) {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.prof-picker { margin: 1rem 0 1.2rem; }
.prof-bar { min-height: 0; margin: 0 0 .7rem; }
.prof-picker.is-picked .prof:not(:has(input:checked)) {
  display: none;
}
.prof-picker.is-picked .prof-grid {
  grid-template-columns: minmax(0, 22rem);
}
.prof-picker.is-picked .prof:has(input:checked) {
  max-width: 22rem;
}
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.chat-actions .btn-primary { margin-left: auto; }

.lab-section h2 {
  text-align: center;
  margin-inline: auto;
  max-width: none;
}
.lab-card {
  padding-top: 1.7rem;
}
.lab-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  margin: 0 auto .9rem;
  box-shadow:
    0 0 0 3px var(--acc, rgba(255,255,255,.14)),
    0 14px 32px rgba(0,0,0,.38);
}
.lab-avatar-icon {
  display: grid;
  place-items: center;
  font-size: 2.55rem;
  line-height: 1;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.28), transparent 46%),
    linear-gradient(145deg, var(--acc, #14532d), var(--acc2, #0e7490));
}
.section { padding: 6.5rem 0; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 1.3rem;
  max-width: 18ch;
  line-height: 1.2;
}

.flash { list-style: none; margin: 1.2rem auto; width: min(100% - 3rem, var(--max)); }
.flash li { padding: 1rem 1.2rem; border-radius: 14px; margin-bottom: .6rem; }
.flash .success { background: rgba(61,255,106,.12); color: #b7ffc9; }
.flash .error { background: rgba(255,45,149,.12); color: #ffc1e0; }
.flash .warning { background: rgba(255,225,74,.14); color: #fff3b0; }
.flash .info { background: rgba(92,240,255,.12); color: #c9fbff; }

.form { display: grid; gap: 1rem; max-width: 440px; }
label { font-size: .88rem; color: var(--muted); display: grid; gap: .4rem; }
input, textarea, select {
  background: #0d1018; border: 1px solid var(--line); border-radius: 14px;
  padding: .9rem 1rem; outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--fuchsia); }
.auth-card { max-width: 480px; margin: 5.5rem auto; }

.app-shell { display: grid; grid-template-columns: 260px minmax(0, 1fr); min-height: calc(100vh - 92px); }
.side {
  border-right: 1px solid var(--line);
  background: rgba(12,14,24,.78);
  padding: 1.6rem 1.1rem;
}
.side-label {
  margin: 1.05rem 0 .35rem;
  padding: 0 .9rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .85;
}
.side-label:first-child { margin-top: 0; }
.side a {
  display: flex; gap: .6rem; align-items: center;
  padding: .8rem .9rem; border-radius: 14px; color: var(--muted); margin-bottom: .3rem;
}
.side a:hover, .side a.is-on { background: var(--bg-elevated); color: var(--text); }
.ops-board .ops-group-title {
  margin: 1.1rem 0 .4rem;
  font-size: .95rem;
}
.ops-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.ops-list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  padding: .45rem .55rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.ops-list li.is-ok { border-color: rgba(11, 110, 79, .28); }
.ops-list li.is-ko { border-color: rgba(180, 60, 50, .28); }
.ops-mark { min-width: 1.1rem; }
.ops-missing {
  margin: .7rem 0 0;
  padding: .65rem .8rem;
  border-radius: 10px;
  background: rgba(180, 60, 50, .08);
  border: 1px solid rgba(180, 60, 50, .25);
}
.main { padding: 2.4rem 2rem 4rem; min-width: 0; }
.page-title { font-family: var(--display); font-size: 2.1rem; margin-bottom: .45rem; }

.chat {
  display: grid; grid-template-rows: 1fr auto; height: min(72vh, calc(100dvh - 220px));
  min-height: 280px; background: #eeeeee; border: 1px solid #d4d4d4; border-radius: 22px;
  color: #111111;
  overflow: hidden;
}
.chat-log { overflow: auto; padding: 1.5rem; display: grid; gap: 1rem; }
.bubble { max-width: 70ch; padding: 1rem 1.15rem; border-radius: 18px; white-space: pre-wrap; }
.bubble.assistant { background: #e5e5e5; color: #111111; }
.bubble.user { background: #dbe7ff; color: #111111; margin-left: auto; }
.chat-compose {
  border-top: 1px solid #d4d4d4;
  overflow: auto;
  max-height: min(58vh, 640px);
}
.chat-form { display: flex; flex-direction: column; gap: .75rem; padding: 1.1rem; border-top: none; }
.chat-form textarea {
  flex: 1; min-height: 72px; resize: vertical;
  background: #f7f7f7; color: #111111; border: 1px solid #cfcfcf;
}
.chat-hint { margin: 0; padding: 0 1.1rem .75rem; font-size: .88rem; }
.chat-generate {
  padding: .75rem 1.1rem 1rem;
  position: sticky;
  bottom: 0;
  z-index: 3;
  background: #eeeeee;
  border-top: 1px solid #d4d4d4;
}
.chat-generate .btn-block { width: 100%; justify-content: center; font-size: 1.05rem; padding: .95rem 1.2rem; }
.refine-chips {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding: 0 1.1rem 1rem;
}
.refine-panel .refine-chips { padding: 0; margin-top: .85rem; }
.refine-chips-lead {
  flex: 1 0 100%;
  margin: 0 0 .15rem;
  color: var(--muted);
  font-size: .88rem;
}
.refine-panel { margin: 0 0 1.4rem; padding: 1.6rem 1.5rem; }
.refine-panel h2 { font-size: 1.25rem; margin: 0 0 .45rem; }
.refine-form {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
.brief-logo {
  display: grid; place-items: center;
  padding: .6rem; margin-bottom: .4rem;
  background: #fff; border-radius: 14px; border: 1px solid var(--line);
}
.brief-logo img { width: 100%; max-width: 240px; height: auto; }

.brief { display: grid; gap: .55rem; font-size: .9rem; }
.brief b { color: var(--yellow); font-weight: 700; }

.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { text-align: left; padding: .9rem .5rem; border-bottom: 1px solid var(--line); }
.badge {
  display: inline-flex; padding: .2rem .65rem; border-radius: 999px;
  font-size: .75rem; background: var(--bg-elevated); color: var(--muted);
}
.badge.ready { color: #b7ffc9; background: rgba(61,255,106,.12); }
.chip {
  font-size: .78rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem .75rem;
}
.wizard-choices {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .65rem;
}
.wizard-choices .chip,
.wizard-chip {
  cursor: pointer;
  background: transparent;
  color: inherit;
  font: inherit;
  display: inline-flex;
}
.wizard-chip.is-on,
.wp-theme-toolbar .chip.is-on {
  border-color: var(--yellow, #e8c547);
  color: var(--text);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wp-theme-browser {
  margin-top: 1rem;
  padding-top: .4rem;
}
.wp-theme-browser-lead {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 .75rem;
  line-height: 1.45;
}
.wp-theme-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  margin-bottom: .85rem;
}
.wp-theme-search {
  flex: 1 1 12rem;
}
.wp-theme-search input {
  width: 100%;
  min-height: 40px;
  font: inherit;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elevated, transparent);
  color: inherit;
}
.wp-theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
}
.wp-theme-card {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: left;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elevated, transparent);
  color: inherit;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
}
.wp-theme-card:hover,
.wp-theme-card:focus-visible {
  border-color: var(--yellow, #e8c547);
}
.wp-theme-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1a1a1a;
}
.wp-theme-card strong {
  display: block;
  padding: 0 .65rem;
  font-size: .82rem;
}
.wp-theme-card span {
  display: block;
  padding: 0 .65rem .65rem;
  font-size: .72rem;
  color: var(--muted);
}
.wp-theme-card .wp-theme-links {
  display: flex;
  gap: .5rem;
  padding: 0 .65rem .7rem;
}
.wp-theme-card .wp-theme-links a {
  font-size: .72rem;
  color: inherit;
}
.wp-theme-badge {
  margin: 0 .65rem;
  font-size: .68rem;
  color: #e8c547;
}
.wp-theme-pager {
  display: flex;
  gap: .5rem;
  margin-top: .8rem;
}
.stack-picker {
  margin: .75rem 1.1rem 0;
  max-height: min(42vh, 420px);
  overflow: auto;
  padding-bottom: .4rem;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: .65rem;
}
.stack-card {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  text-align: left;
  padding: .9rem .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elevated, transparent);
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.stack-card:hover,
.stack-card:focus-visible {
  border-color: var(--yellow, #e8c547);
}
.stack-logos {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.stack-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
  padding: 3px;
}
.stack-badge-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
  padding: 2px;
}
.stack-card strong {
  font-size: .92rem;
}
.stack-card span:last-child {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.4;
}
.wp-theme-empty {
  color: var(--muted);
  font-size: .9rem;
  padding: .6rem 0;
}

.preview-frame {
  width: 100%; min-height: 70vh; border: 1px solid var(--line); border-radius: 20px; background: #fff;
}
.preview-frame-lg { min-height: 82vh; background: #fff; }
.access-cards { margin: 0 0 1.6rem; }
.access-cards .card {
  text-align: center;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.access-cards b { color: var(--yellow); word-break: break-all; }
.access-cards .btn { width: min(100%, 14rem); margin-top: auto; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 4.8rem 0 2.4rem;
  margin-top: 2rem;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.8rem;
}
@media (min-width: 960px) {
  footer.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 3rem !important;
  }
}
.footer-grid h3 { color: var(--text); margin: .4rem 0 1rem; font-size: 1rem; }
.footer-grid a { display: block; color: var(--muted); margin: .4rem 0; }
.footer-a11y {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--muted);
  margin: .4rem 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.footer-a11y:hover { color: var(--yellow); }
.footer-grid p { margin-top: 1rem; max-width: 36ch; }
.footer-creator {
  margin-top: 1.15rem !important;
  color: var(--text);
}
.footer-creator strong { font-weight: 700; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  margin-top: .85rem;
}
.footer-social a,
.footer-grid .footer-social a,
.home-close-cta .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: auto;
  min-height: 42px;
  padding: 0 .85rem;
  margin: 0;
  border-radius: 12px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 650;
}
.footer-social a:hover,
.footer-grid .footer-social a:hover,
.home-close-cta .footer-social a:hover {
  color: #04140a;
  background: linear-gradient(90deg, #c8ff3d 0%, #3dff6a 48%, #5cf0ff 100%);
  border-color: transparent;
}
.home-close-cta .footer-social {
  justify-content: center;
  margin-top: 1.4rem;
}
.footer-copy { border-top: 1px solid var(--line); padding-top: 1.4rem; font-size: .88rem; }

.hero-stage {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(61,255,106,.14), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(255,45,149,.16), transparent 38%),
    radial-gradient(circle at 50% 90%, rgba(255,225,74,.1), transparent 42%),
    #07090f;
}
.hero-stage-inner {
  position: relative;
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-lede { margin-inline: auto; }
.hero-stage h1 {
  margin-inline: auto;
  max-width: 18ch;
}

.punch-band {
  padding: 4.2rem 0 4.8rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,225,74,.08), transparent 42%),
    #0a0c12;
  border-top: 1px solid rgba(255,225,74,.18);
  border-bottom: 1px solid rgba(255,45,149,.16);
}
.punch-inner { max-width: 48rem; }
.punch-band h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1.15rem;
  color: #fff;
}
.punch-band .punch-h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.25;
  max-width: 28ch;
  margin: 1.6rem auto .55rem;
  color: #fff;
}
.punch-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: rgba(255,255,255,.84);
  margin: 0 auto 1.35rem;
  max-width: 44ch;
}
.punch-lead-tight {
  margin-bottom: .4rem;
  max-width: 42ch;
}
.punch-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1rem;
  margin: 0 auto 1.5rem;
  max-width: 48rem;
}
.punch-seo-links a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: .95rem;
}
.punch-ia {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: var(--yellow, #ffe14a);
  margin: 0 auto 1.6rem;
  letter-spacing: .02em;
}
.hero-tech {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1rem;
  margin: 1.35rem auto 1.5rem;
  max-width: 42rem;
  padding: 0;
}
.hero-tech li {
  animation: heroTechFloat 3.4s ease-in-out infinite;
}
.hero-tech li:nth-child(2) { animation-delay: .15s; }
.hero-tech li:nth-child(3) { animation-delay: .3s; }
.hero-tech li:nth-child(4) { animation-delay: .45s; }
.hero-tech li:nth-child(5) { animation-delay: .6s; }
.hero-tech li:nth-child(6) { animation-delay: .75s; }
.hero-tech li:nth-child(7) { animation-delay: .9s; }
.hero-tech li:nth-child(8) { animation-delay: 1.05s; }
.hero-tech li:nth-child(9) { animation-delay: 1.2s; }
.hero-tech li:nth-child(10) { animation-delay: 1.35s; }
.hero-tech li:nth-child(11) { animation-delay: 1.5s; }
.hero-tech img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 4px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.hero-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  max-width: 40rem;
  margin: .2rem auto 1.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease;
  border: 1px solid rgba(61,255,106,.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.55), rgba(12,18,14,.72)),
    #07090f;
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(61,255,106,.08);
}
.hero-sec-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 16px;
  background: #000;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 18px rgba(61,255,106,.28));
}
.hero-sec-copy p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: .01em;
  color: #f4fff6;
}
.hero-sec-kicker {
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
  color: var(--green) !important;
  margin-bottom: .28rem !important;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
html.js-motion.page-landing .hero-stage-inner > * {
  opacity: 0;
  animation: heroIn .8s ease forwards;
}
html.js-motion.page-landing .hero-stage-inner > :nth-child(1) { animation-delay: .05s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(2) { animation-delay: .16s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(3) { animation-delay: .28s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(4) { animation-delay: .4s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(5) { animation-delay: .52s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(6) { animation-delay: .64s; }
html.js-motion.page-landing .hero-stage-inner > :nth-child(7) { animation-delay: .76s; }
.scroll-vine {
  position: fixed;
  left: 0;
  top: 0;
  width: 52px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: .5;
}
.scroll-vine-path {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
}
html.js-motion.page-landing [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i, 1) * 55ms);
}
html.js-motion.page-landing [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  html.js-motion.page-landing [data-reveal],
  html.js-motion.page-landing [data-reveal].is-visible,
  html.js-motion.page-landing .hero-stage-inner > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .scroll-vine { display: none; }
}
.front-music {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
}
.front-music button {
  border: 1px solid rgba(61,255,106,.45);
  background: #0b1220;
  color: #f6f3ff;
  font: 700 .82rem var(--font);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.front-music.is-on button {
  background: #12331c;
  border-color: var(--green);
  color: var(--green);
}
.front-music:not(.is-on) button {
  animation: musicPulse 1.4s ease-in-out infinite;
}
@keyframes musicPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(0,0,0,.4); }
  50% { box-shadow: 0 0 0 6px rgba(61,255,106,.18), 0 12px 30px rgba(0,0,0,.4); }
}
@keyframes heroTechFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tech li { animation: none; }
  html.js-motion.page-landing .hero-stage-inner > *,
  html.js-motion.page-landing [data-reveal],
  .seo-path,
  .seo-leaf,
  .front-music:not(.is-on) button {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.scarcity { color: var(--fuchsia); font-size: .95rem; margin-top: 1.2rem; font-weight: 650; }
.proof { display: flex; gap: 1.4rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 3.2rem; }
.avatars { display: flex; align-items: center; }
.avatars span,
.avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #07090f;
  margin-left: -10px;
  background: #14532d;
  flex-shrink: 0;
  box-sizing: border-box;
}
.avatars span {
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 800;
}
.avatars img {
  display: block;
  object-fit: cover;
  object-position: center 22%;
  aspect-ratio: 1 / 1;
}
.avatars span:nth-child(2) { background: #9d174d; }
.avatars span:nth-child(3) { background: #a16207; }
.avatars span:nth-child(4) { background: #0e7490; }
.avatars span:nth-child(5) { background: #6d28d9; }
.stars { color: var(--yellow); letter-spacing: .16em; font-size: 1.05rem; }
.quote { font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-top: .35rem; }

.section-intro { margin: 0 0 2rem; max-width: 58ch; }
.method-note { margin-top: 2.2rem; font-style: italic; max-width: 62ch; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.15rem; margin-top: 2.6rem; }
.pillars article:nth-child(1) .p-n { color: var(--green); }
.pillars article:nth-child(2) .p-n { color: var(--yellow); }
.pillars article:nth-child(3) .p-n { color: var(--cyan); }
.pillars article:nth-child(4) .p-n { color: var(--fuchsia); }
.pillars article {
  background: #141722;
  border-top: 4px solid var(--green);
  padding: 2.15rem 1.65rem 2.35rem;
  border-radius: 6px 6px 22px 22px;
  min-height: 260px;
}
.pillars article:nth-child(2) { border-top-color: var(--yellow); }
.pillars article:nth-child(3) { border-top-color: var(--cyan); }
.pillars article:nth-child(4) { border-top-color: var(--fuchsia); }
.p-n { font-weight: 800; letter-spacing: .14em; display: block; margin-bottom: 1.05rem; font-size: .92rem; }
.pillars h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 750;
}
.pillars p { line-height: 1.75; }

.flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin: 2rem 0 0;
}
.public-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  justify-items: stretch;
  gap: 1.85rem;
  max-width: 1280px;
  width: 100%;
  margin: 2.6rem auto 0;
}
.flow li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.7rem 1.4rem 1.8rem;
  display: grid;
  gap: .7rem;
  min-height: 176px;
  text-align: center;
  justify-items: center;
  align-content: center;
}
.public-flow li {
  min-height: 230px;
  padding: 2.25rem 1.8rem 2.35rem;
  text-align: center;
  place-content: center;
}
.public-flow .flow-n { display: none; }
.flow li strong { font-size: 1.35rem; font-weight: 750; line-height: 1.25; }
.piano-page {
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
}
.piano-wrap {
  text-align: center;
}
.piano-copy {
  max-width: 58ch;
  margin-inline: auto;
  text-align: center;
}
.piano-copy h2 {
  max-width: none;
  margin: 3.4rem auto 1.05rem;
  text-align: center;
}
.piano-copy h2:first-child {
  margin-top: 0;
}
.piano-copy p {
  margin: 0 auto;
  line-height: 1.85;
}
.piano-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 46ch;
  display: grid;
  gap: 1.05rem;
  text-align: center;
}
.piano-wrap > .piano-copy:last-of-type {
  margin-top: 3rem;
}
.piano-wrap .flow-n { display: none; }
.piano-wrap .numbered-flow {
  margin: 2.8rem auto 0;
  gap: 2.2rem;
}
.piano-wrap .numbered-flow li {
  place-content: center;
  padding: 2.4rem 1.8rem;
}
.numbered-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.85rem;
  max-width: 1280px;
  width: 100%;
  margin: 2.4rem auto 1.6rem;
}
.numbered-flow li {
  min-height: 230px;
  padding: 2.15rem 1.7rem 2.25rem;
  text-align: center;
  place-content: start center;
  justify-items: center;
}
.flow-n {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ff4ec8;
  letter-spacing: .12em;
  text-shadow:
    0 0 8px rgba(255,46,185,.95),
    0 0 22px rgba(255,45,149,.75),
    0 0 40px rgba(255,45,149,.4);
}
.flow small { color: var(--muted); }
[hidden] { display: none !important; }

.mini-flow li {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
}
.flow-step {
  width: 100%;
  min-height: 132px;
  padding: 1.35rem 1.15rem 1.45rem;
  display: grid;
  gap: .7rem;
  place-content: center;
  justify-items: center;
  text-align: center;
  font: inherit;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  cursor: pointer;
}
.flow-step:hover,
.flow-step:focus-visible {
  border-color: var(--fuchsia);
  outline: none;
}
.flow-step.is-on {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.flow-step.is-done:not(.is-on) {
  border-color: color-mix(in srgb, var(--green) 45%, var(--line));
}
.flow li.is-on { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.mini-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem 1.5rem;
  margin: 1.8rem 0 2.4rem;
}
.mini-flow .flow-n {
  display: block;
  width: 100%;
  text-align: center;
}
.mini-flow strong {
  font-size: 1.02rem;
  display: block;
  overflow: visible;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  pointer-events: none;
}
.mini-flow .flow-n { pointer-events: none; }
.interview-progress {
  margin: -0.5rem 0 1.4rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--green) 6%, var(--card));
}
.interview-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
.interview-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.interview-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 0.25s ease;
}
.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1.6rem;
  margin-top: 1.4rem;
  align-items: stretch;
}
.wizard-layout .brief { gap: .7rem; padding: 1.8rem 1.5rem; }
.support-cards {
  gap: 2rem;
  margin-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.support-cards .card {
  text-align: center;
  padding: 2.8rem 2rem 2.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  min-height: 280px;
}
.support-cards h3 { margin: 0; font-size: 1.55rem; }
.support-cards p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.65;
}
.support-cards .btn { width: min(100%, 16.5rem); margin-top: auto; }
.how-page { text-align: center; padding-top: 5.5rem; padding-bottom: 6.5rem; }
.how-page .kicker { margin-bottom: 1.6rem; }
.how-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  max-width: 18ch;
  line-height: 1.12;
  margin-inline: auto;
  text-align: center;
}
.how-sub {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  color: var(--text);
  width: fit-content;
  max-width: min(36ch, 100%);
  line-height: 1.35;
  margin: 1.4rem auto 1.2rem;
  text-align: center;
}
.how-cta {
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.how-page .public-flow { margin-top: 2.4rem; }
.how-section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 3.2rem auto .6rem;
  max-width: 22ch;
}
.how-section-lead {
  margin: 0 auto 1.4rem;
  max-width: 42ch;
  color: var(--muted, #5a6472);
}
.how-ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  text-align: left;
  max-width: 52rem;
  margin: 0 auto;
}
.how-ba {
  padding: 1.15rem 1.25rem 1.25rem;
  border: 1px solid var(--line, #d8dee8);
  border-radius: 12px;
}
.how-ba h3 {
  margin: 0 0 .75rem;
  font-size: 1.15rem;
}
.how-ba ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .45rem;
  line-height: 1.45;
}
.how-ba-before {
  background: color-mix(in srgb, #94a3b8 8%, transparent);
}
.how-ba-after {
  border-color: color-mix(in srgb, var(--accent, #0d9488) 45%, var(--line, #d8dee8));
  background: color-mix(in srgb, var(--accent, #0d9488) 7%, transparent);
}
.how-ba-note {
  margin: 1.2rem auto 0;
  max-width: 48ch;
  color: var(--muted, #5a6472);
  font-size: .95rem;
}
.how-link-list {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 1.1rem;
  max-width: 48rem;
}
.how-link-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.how-price-note {
  margin: 2.4rem auto 0;
  max-width: 70ch;
}
@media (max-width: 720px) {
  .how-ba-grid { grid-template-columns: 1fr; }
}
.seo-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  margin: 0 auto .7rem;
  max-width: none;
  text-align: center;
}
.seo-lead {
  max-width: 44ch;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.seo-branch {
  margin-top: 4.4rem;
  padding: 2.6rem 1.2rem 2.2rem;
  border-top: 0;
  text-align: center;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61,255,106,.12), transparent 46%),
    radial-gradient(ellipse at 80% 80%, rgba(255,45,149,.1), transparent 42%),
    linear-gradient(180deg, rgba(18,22,34,.92), rgba(8,10,16,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 24px 60px rgba(0,0,0,.28);
}
.seo-tree { position: relative; }
.seo-tree-svg {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: auto;
  margin: 0 auto -1.35rem;
}
.seo-path {
  fill: none;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 9 11;
  animation: seoDash 16s linear infinite;
}
.seo-twig {
  fill: none;
  stroke: rgba(92,240,255,.42);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.seo-dot { fill: #3dff6a; }
.seo-dot-mid { fill: #5cf0ff; }
.seo-leaf { fill: #ff2d95; }
@keyframes seoDash {
  to { stroke-dashoffset: -240; }
}
.seo-branch.is-visible .seo-leaf {
  animation: seoPulse 2.2s ease-in-out infinite;
}
@keyframes seoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
.seo-branch .grid-3 {
  max-width: 1280px;
  margin-inline: auto;
  gap: 1.4rem;
}
.seo-card {
  text-align: center;
  padding: 2.1rem 1.6rem 1.8rem;
  min-height: 210px;
  border: 1px solid rgba(92,240,255,.16);
  background: linear-gradient(180deg, rgba(22,26,40,.95), #0d111a);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.seo-node {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: .85rem;
  border-radius: 50%;
  border: 1px solid rgba(61,255,106,.45);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.seo-card h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: .7rem;
}
.pricing .card .btn { margin-top: 1.1rem; width: 100%; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.pricing-card .plain { flex: 1; }
.pricing-card.is-launch {
  border: 2px solid var(--yellow, #f5c542);
  box-shadow: 0 0 0 1px rgba(245, 197, 66, .25);
}
.pay-flex {
  margin: 1rem 0 .4rem;
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 650;
}
.klarna-pay {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: .35rem 0 0;
  font-size: .88rem;
}
.klarna-pay img {
  display: block;
  height: 24px;
  width: auto;
}
.pay-flex-wa { margin-top: .55rem !important; }
.pricing-not-in li { color: var(--muted); }

.dash-plan-card { margin: 0 0 1.2rem; }
body.dash-plan-avvio .dash-plan-card { border-color: #c9a227; }
body.dash-plan-normale .dash-plan-card { border-color: #3d8bfd; }
body.dash-plan-pro .dash-plan-card { border-color: #7c5cbf; }
body.dash-plan-completo .dash-plan-card { border-color: #1db954; }
body.dash-plan-avvio .kicker { color: #a8861a; }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; margin: 2rem 0 2.2rem; }
.metric { background: #16101f; padding: 1.6rem 1.4rem; border-radius: 20px; border: 1px solid rgba(255,45,149,.2); }
.metric b { display: block; font-size: 2.1rem; font-family: var(--display); color: var(--yellow); margin-bottom: .35rem; }
.proof-case { background: linear-gradient(180deg, rgba(255,45,149,.08), transparent); }

.faq-block { background: #f7f1ff; color: #1a1f2b; padding: 6.5rem 0; }
.faq-block .muted, .faq-block h2 { color: #1a1f2b; }
.faq-wrap { max-width: 74ch; }
.faq-block details { border-bottom: 1px solid #e4d7f5; padding: 1.35rem 0; }
.faq-block summary { cursor: pointer; font-weight: 750; font-size: 1.22rem; }
.faq-block details p { margin-top: .75rem; color: #3b4454; line-height: 1.75; }

.studio { display: grid; grid-template-columns: 270px 1fr; gap: 1.3rem; min-height: 62vh; }
.studio-tree { overflow: auto; background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; padding: .7rem; }
.file-btn {
  display: block; width: 100%; text-align: left; background: transparent; border: 0;
  color: var(--muted); padding: .5rem .55rem; border-radius: 10px; cursor: pointer; font-size: .78rem;
}
.file-btn.is-on, .file-btn:hover { background: var(--bg-elevated); color: var(--text); }
.studio-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; gap: .6rem; }
.plain { padding-left: 1.2rem; margin: .8rem 0 1.4rem; }
.plain li { margin: .45rem 0; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 1.2rem; margin: 1.4rem 0 2rem; }
.stat { background: var(--bg-card); border-radius: 18px; padding: 1.3rem 1.2rem; border: 1px solid var(--line); }
.stat b { display: block; font-size: 1.8rem; font-family: var(--display); color: var(--green); }

@media (max-width: 1399px) {
  .topbar { padding-inline: 1rem; }
  .topbar > .wrap { width: min(100%, 1600px); }
  .top-inner { column-gap: .7rem; }
}
@media (max-width: 1280px) {
  .topbar { position: sticky; min-height: 72px; padding-inline: 1rem; z-index: 260; }
  .topbar > .wrap { width: min(100%, 1600px); }
  .top-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    min-height: 72px;
    gap: .5rem;
    min-width: 0;
  }
  .brand { margin-left: 0; min-width: 0; flex: 1 1 auto; }
  .brand-name,
  .brand-name.brand-wordmark {
    display: inline-block;
    font-size: clamp(1.05rem, 4.4vw, 1.28rem);
    letter-spacing: .12em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(16rem, 58vw);
    color: #ffe14a;
    background: none;
    -webkit-text-fill-color: #ffe14a;
    font-weight: 800;
    text-shadow: 0 0 22px rgba(255, 225, 74, .45);
  }
  .brand-mark { width: 40px; height: 40px; }
  .top-cta {
    margin-right: 0;
    gap: .35rem;
    flex: 0 0 auto;
    min-width: 0;
    flex-wrap: nowrap;
  }
  .top-cta .btn-header { display: none; }
  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 120;
    isolation: isolate;
  }
  .nav-toggle.is-open {
    background: #1b1e2e;
    border-color: rgba(61, 255, 106, .55);
  }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.menu-open .top-cta > :not(.nav-toggle) {
    visibility: hidden;
    pointer-events: none;
  }
  body.menu-open .nav-toggle {
    visibility: visible;
    pointer-events: auto;
    z-index: 120;
  }
  .chip { display: none; }
  .account-meta small { display: none; }
  .account-chip { max-width: 140px; padding-right: .55rem; }
  .wizard-choices .chip,
  .wizard-chip,
  .refine-chips .chip { display: inline-flex; }
  .btn-header { padding: .5rem 1rem; min-height: 44px; font-size: .75rem; letter-spacing: .04em; }
  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 5.5rem;
    margin: 0 0 1.1rem;
    padding: .55rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
  }
  .nav-close:hover { border-color: var(--green); color: var(--green); }
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: .2rem;
    background:
      radial-gradient(circle at 20% 0%, rgba(61,255,106,.16), transparent 40%),
      radial-gradient(circle at 85% 100%, rgba(255,45,149,.2), transparent 42%),
      #07090f;
    padding: 6.5rem 1.4rem max(2.4rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 250;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s;
  }
  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    display: block;
    width: min(100%, 22rem);
    padding: 1.05rem .5rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
    font-weight: 560;
    color: var(--text);
    text-align: center;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav.is-open a {
    opacity: 1;
    transform: none;
  }
  .nav.is-open a:nth-child(1) { transition-delay: .12s; }
  .nav.is-open a:nth-child(2) { transition-delay: .2s; }
  .nav.is-open a:nth-child(3) { transition-delay: .28s; }
  .nav.is-open a:nth-child(4) { transition-delay: .36s; }
  .nav.is-open a:nth-child(5) { transition-delay: .44s; }
  .nav.is-open a:nth-child(6) { transition-delay: .52s; }
  .nav-drop {
    width: min(100%, 22rem);
    text-align: center;
  }
  .nav-drop > summary {
    display: block;
    padding: 1.05rem .5rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
    font-weight: 560;
    color: var(--text);
  }
  .nav-drop-panel {
    position: static;
    transform: none;
    left: auto;
    width: 100%;
    min-width: 0;
    padding: .2rem 0 .8rem;
    border: 0;
    background: transparent;
  }
  .nav-drop-panel a {
    font-size: clamp(1.05rem, 4vw, 1.35rem) !important;
    width: 100%;
  }
  .nav-a11y {
    display: block;
    width: min(100%, 22rem);
    padding: 1.05rem .5rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--display);
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
    font-weight: 560;
    color: var(--text);
    text-align: center;
    cursor: pointer;
  }
  .nav.is-open .nav-a11y { opacity: 1; }
  body.menu-open { overflow: hidden; }
  .app-shell { grid-template-columns: 1fr; min-height: calc(100dvh - 72px); }
  .side {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .4rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 72px;
    z-index: 30;
    background: rgba(7, 9, 15, .94);
    backdrop-filter: blur(16px);
    padding: .5rem .75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .side > * { flex: 0 0 auto; }
  .side-label,
  .side-live-empty { display: none !important; }
  .side a {
    white-space: nowrap;
    margin-bottom: 0;
    margin-top: 0;
    min-height: 44px;
    padding: .45rem .85rem;
    border-radius: 999px;
    flex-shrink: 0;
  }
  .side a.side-live,
  .side a.side-wa { margin-top: 0; }
  .bubble { max-width: 100%; }
  .wizard-layout { grid-template-columns: 1fr; }
  .mini-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .wrap { width: min(100% - 1.6rem, var(--max)); }
  body.is-app .top-cta .btn-wa,
  body.is-app .top-cta .btn-live,
  body.is-app .top-hide-narrow { display: none !important; }
  .live-fab {
    display: inline-flex !important;
    position: fixed;
    left: max(.7rem, env(safe-area-inset-left));
    bottom: max(.7rem, env(safe-area-inset-bottom));
    z-index: 75;
    min-height: 44px;
    min-width: 44px;
    padding: .65rem 1.05rem;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 28px rgba(225, 29, 72, .42);
  }
  body.menu-open .live-fab { visibility: hidden; pointer-events: none; }
  body.is-app .main {
    padding: 1.35rem 1.1rem 5.8rem;
    overflow-x: hidden;
  }
  body.is-app .page-title {
    font-size: clamp(1.45rem, 4.6vw, 2rem);
    max-width: none;
  }
  body.is-app .card { padding: 1.25rem 1.1rem; }
  body.is-app .form { max-width: none; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr)); }
  .people-avatar { width: 88px; height: 88px; }
  .people-grid-compact { grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr)); }
  .people-grid-compact .people-avatar { width: 72px; height: 72px; }
  .account-meta { display: none; }
  .account-chip { max-width: 44px; padding: .12rem; gap: 0; }
  .account-chip .user-photo { width: 36px; height: 36px; }
  body.is-app .grid-2,
  body.is-app .grid-3,
  body.is-app .grid-4 { grid-template-columns: 1fr; }
  body.is-app .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .studio { grid-template-columns: 1fr; min-height: 0; }
  .help-actions { gap: .55rem; }
  .help-actions .btn { min-height: 44px; }
  .table-wrap .table { min-width: 32rem; }
  .brand-name.brand-wordmark { font-size: 1rem; letter-spacing: .1em; }
}

@media (max-width: 700px) {
  .top-cta .share-wrap { display: none; }
}

@media (max-width: 480px) {
  .brand-name,
  .brand-name.brand-wordmark {
    display: inline-block !important;
    font-size: .92rem;
    max-width: min(13rem, 62vw);
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .top-cta .share-wrap { display: none; }
  .btn-header { padding: .5rem .85rem; }
  .people-grid,
  .people-grid-compact { grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr)); }
}

@media (max-width: 900px) {
  h1 { max-width: none; }
  .mini-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-cards { grid-template-columns: 1fr; }
  .public-flow, .numbered-flow { grid-template-columns: 1fr; max-width: none; }
  .wrap { width: min(100% - 1.5rem, var(--max)); }
  footer.site-footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    gap: 1.8rem !important;
  }
  footer.site-footer .footer-grid > div {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
  }
  .footer-copy {
    line-height: 1.75;
  }
  .proof-case,
  .proof-case .wrap,
  .mini-site {
    text-align: center;
  }
  .proof-case h2 {
    max-width: 18ch;
    margin-inline: auto;
  }
  .proof-case .muted {
    margin-inline: auto;
    max-width: 36ch;
  }
  .metrics { justify-items: center; }
  .metric { width: 100%; text-align: center; }

  /* Landing mobile: card in colonna, titoli centrati */
  .pillars {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .pillars article {
    text-align: center;
    min-height: auto;
    padding: 1.6rem 1.3rem 1.7rem;
  }
  .pillars .p-n,
  .pillars h3,
  .pillars p {
    text-align: center;
  }
  .section .wrap > .kicker,
  .section .wrap > h2,
  .section .wrap > .section-intro,
  .section .wrap > .method-note {
    text-align: center;
    margin-inline: auto;
  }
  .section .wrap > h2 {
    max-width: none;
  }
  .grid-4,
  .lab-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .grid-4 .card {
    text-align: center;
    padding: 1.6rem 1.3rem;
  }
  .section-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }
  .seo-branch .grid-3 {
    grid-template-columns: 1fr;
  }
  .seo-branch h2.seo-title {
    text-align: center;
    margin-inline: auto;
  }
  .seo-tree-svg { display: none; }
  .hero-sec {
    flex-direction: column;
    text-align: center;
  }
  .scroll-vine { width: 22px; opacity: .28; }
  .faq-wrap h2,
  .faq-wrap > .muted {
    text-align: center;
    margin-inline: auto;
  }
  .showcase-band h2,
  .showcase-band .section-intro,
  .showcase-band .kicker {
    text-align: center;
    margin-inline: auto;
  }
}
@media (max-width: 1280px) and (min-width: 901px) {
  .public-flow, .numbered-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .support-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.showcase-band {
  padding-top: 3rem;
  text-align: center;
}
.showcase-band > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-band h2,
.showcase-band .section-intro,
.showcase-band .kicker {
  margin-inline: auto;
  text-align: center;
}
.showcase-toolbar {
  display: flex;
  gap: .5rem;
  margin: 0 auto 1rem;
  justify-content: center;
}
.showcase-track { width: 100%; }
.showcase-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .4rem .2rem 1.4rem;
  -webkit-overflow-scrolling: touch;
}
.showcase-track:focus { outline: 2px solid var(--cyan, #22d3ee); outline-offset: 4px; }
.showcase-slide {
  flex: 0 0 400px;
  width: 400px;
  height: 400px;
  scroll-snap-align: start;
  border-radius: 18px;
  background: #f4f7f6;
  color: #121826;
  padding: 14px 16px 12px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.06);
}
.ss-nav { display: flex; justify-content: space-between; font-size: .78rem; }
.ss-hero { display: grid; grid-template-columns: 1.2fr .9fr; gap: 10px; align-items: center; }
.ss-copy h3 { font-size: 1.05rem; line-height: 1.2; margin: 0 0 .5rem; color: #121826; }
.ss-cta {
  display: inline-block;
  background: var(--acc, #66bfa2);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem .7rem;
  border-radius: 999px;
}
.ss-slot {
  background: #d4ddd8;
  border: 1px dashed #8aa196;
  border-radius: 12px;
  min-height: 110px;
  display: grid;
  place-items: center;
  color: #4a5c54;
  font-size: .75rem;
  font-weight: 650;
  overflow: hidden;
}
.ss-slot.has-photo {
  padding: 0;
  border-style: solid;
  border-color: rgba(0,0,0,.06);
  background: #cfd8d3;
}
.ss-slot img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  display: block;
}
.ss-slot.sm { min-height: 72px; }
.ss-slot.sm img { min-height: 72px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.2rem;
  margin: 1.6rem auto 2.2rem;
  width: 100%;
  max-width: 720px;
}
.review-card { text-align: left; }
.review-head { display: flex; gap: .9rem; align-items: center; margin-bottom: .8rem; }
.review-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  flex-shrink: 0;
  background: #14532d;
  display: block;
  aspect-ratio: 1 / 1;
}
.review-photo.initials {
  display: grid; place-items: center;
  font-weight: 800; font-size: .85rem;
}
.review-form {
  width: min(100%, 520px);
  margin-inline: auto;
  display: grid;
  gap: .9rem;
  text-align: left;
}
.reviews-band .kicker,
.reviews-band h1,
.reviews-band h2,
.reviews-band .section-intro {
  text-align: center;
  margin-inline: auto;
}
.reviews-band .section-intro { max-width: 42ch; }
.review-consent {
  display: flex; gap: .55rem; align-items: flex-start;
}
.review-consent input { width: auto; margin-top: .2rem; }
.flash-inline {
  padding: .9rem 1rem;
  border-radius: 14px;
  margin: 0 auto 1.4rem;
  max-width: 520px;
  text-align: center;
}
.flash-inline.success { background: rgba(61,255,106,.12); color: #b7ffc9; }
@media (max-width: 720px) {
  .reviews-band .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .review-grid,
  .review-form,
  .flash-inline {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }
  .review-card { width: 100%; }
  .review-head { justify-content: center; text-align: center; flex-direction: column; }
}

.videos-band .kicker,
.videos-band h2,
.videos-band .section-intro {
  text-align: center;
  margin-inline: auto;
}
.videos-band .section-intro { max-width: 52ch; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.4rem;
  margin: 1.8rem auto 1.6rem;
  width: 100%;
  max-width: 960px;
}
.video-card { text-align: left; }
.video-card-wide {
  grid-column: 1 / -1;
  text-align: left;
}
.video-card h3, .video-card-wide h3 { margin: .85rem 0 .25rem; font-size: 1.05rem; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-next {
  max-width: 70ch;
  margin: 0 auto;
  text-align: left;
}
.is-app .videos-band {
  padding: 0;
}
.is-app .videos-band .wrap {
  padding: 0;
  max-width: none;
}
.course-guide-video {
  margin: 0 0 1.4rem;
}
.course-guide-video .video-frame {
  margin-top: 0;
}
.course-video-grid {
  margin: 1.1rem 0 0;
  max-width: none;
}
.ss-row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: center; }
.ss-lines {
  height: 10px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #d8e0dc 0 40%, transparent 40% 48%);
}
.ss-tag { font-size: .72rem; color: #4b5563; }
.kind-professionista { background: #f3faf7; }
.kind-agenzia { background: #f5f8ff; }
.kind-ristorante { background: #fff7f2; }
.kind-wireframe { background: #f7f7f7; }
@media (max-width: 520px) {
  .showcase-slide { flex-basis: 320px; width: 320px; height: 360px; }
}

.share-wrap { position: relative; display: inline-flex; align-items: center; }
.share-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; border: 1px solid var(--line); color: var(--text);
  border-radius: 999px; padding: .55rem .9rem; cursor: pointer; font: inherit;
}
.share-btn:hover { border-color: var(--green); color: var(--green); }
.share-menu {
  position: absolute; top: calc(100% + .4rem); right: 0; z-index: 50;
  min-width: 11rem; padding: .4rem;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow);
}
.share-item {
  display: block; width: 100%; text-align: left;
  background: transparent; border: 0; color: var(--muted);
  padding: .55rem .7rem; border-radius: 10px; cursor: pointer; font: inherit;
}
.share-item:hover { background: var(--bg-elevated); color: var(--text); }
.footer-grid .share-wrap { margin-top: 1rem; }
.support-chat { margin-top: 1.2rem; }
.help-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin: 1rem 0 1.4rem; }
.help-banner { margin: 1.2rem 0 1.6rem; }
.btn-wa {
  background: #25d366;
  color: #06210f;
  border: 0;
}
.btn-wa:hover { filter: brightness(1.08); color: #06210f; }
.btn-live {
  background: #e11d48;
  color: #fff;
  gap: .45rem;
  white-space: nowrap;
  overflow: hidden;
}
.btn-live::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.75);
  animation: live-pulse 1.5s ease-out infinite;
}
.btn-live:hover { color: #fff; background: #be123c; }
.live-fab {
  display: none;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  100% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.nav a.nav-live { color: #ff5c7a; font-weight: 700; }
.side a.side-live {
  background: rgba(225, 29, 72, .16);
  color: #ff8aa0;
  margin-top: .4rem;
}
.side-live-empty {
  display: block;
  margin-top: .4rem;
  padding: .55rem .75rem;
  font-size: .82rem;
  color: var(--muted);
  border: 1px dashed rgba(255, 138, 160, .35);
  border-radius: 10px;
}
.side a.side-wa {
  background: rgba(37, 211, 102, .16);
  color: #7dffb0;
  margin-top: .4rem;
}
.help-flag {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
}
.help-flag input { width: auto; margin-top: .2rem; }
.help-dock {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
}
.help-nudge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .45rem;
  max-width: min(100vw - 2rem, 300px);
}
.help-nudge-bubble {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem 2rem .75rem .85rem;
  box-shadow: var(--shadow);
  font-size: .88rem;
  line-height: 1.45;
}
.help-nudge-close {
  position: absolute;
  top: .35rem;
  right: .45rem;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.help-nudge-open {
  background: transparent;
  border: 1px solid var(--fuchsia);
  color: var(--fuchsia);
  border-radius: 999px;
  padding: .35rem .75rem;
  font: inherit;
  font-size: .82rem;
  cursor: pointer;
}
.help-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  background: var(--fuchsia);
  color: #fff;
}
.help-panel {
  width: min(100vw - 1.6rem, 360px);
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: .9rem;
  gap: .6rem;
}
.help-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
}
.help-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.help-panel-intro, .help-panel-links { font-size: .85rem; }
.help-log { min-height: 140px; max-height: 220px; overflow: auto; }
.help-form { display: grid; gap: .55rem; }
.bubble.admin {
  border-color: color-mix(in srgb, var(--fuchsia) 45%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--fuchsia) 25%, transparent);
}
.admin-reply-form {
  display: grid;
  gap: .4rem;
  min-width: 180px;
}
.admin-reply-form textarea {
  width: 100%;
  min-height: 56px;
  font: inherit;
}

.comm-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.comm-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}
.comm-forum-full { margin-bottom: 1.2rem; }
.comm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .9fr);
  gap: 1.2rem;
  align-items: start;
}
.comm-panel {
  margin-top: 1.4rem;
  max-width: 52rem;
  margin-inline: auto;
}
.comm-panel-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .7rem;
}
.comm-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.forum-custom-rooms {
  margin: 1rem 0 1.1rem;
  padding: .85rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--green) 4%, transparent);
}
.forum-custom-title {
  font-size: .95rem;
  margin: 0 0 .55rem;
  color: var(--muted);
  font-weight: 650;
}
.forum-rooms-custom .forum-room-custom.is-on {
  border-color: var(--cyan);
  color: var(--cyan);
}
.app-install-steps {
  margin: 1rem 0;
  padding-left: 1.2rem;
  line-height: 1.75;
}
.app-install-steps a { word-break: break-all; }
.forum-room-chat {
  margin: 1.2rem 0 1.4rem;
  padding: 1rem 1.1rem;
}
.forum-room-chat-head h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.forum-room-log { min-height: 180px; max-height: 320px; }
.forum-posts-title {
  margin: 1.2rem 0 .75rem;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 650;
}
.comm-chat-body a { color: var(--cyan); word-break: break-word; }
.comm-chat { position: sticky; top: 1rem; }
.comm-chat-top { margin-bottom: .7rem; }
.comm-online { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.comm-person {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  padding: .35rem .7rem;
  cursor: pointer;
  font: inherit;
}
.comm-person.is-on { border-color: var(--green); color: var(--green); }
.comm-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
}
.comm-log {
  min-height: 220px;
  max-height: 360px;
  overflow: auto;
  display: grid;
  gap: .6rem;
  margin-bottom: .8rem;
}
.comm-bubble {
  background: var(--bg-elevated);
  border-radius: 14px;
  padding: .7rem .85rem;
}
.comm-bubble.is-mine { border: 1px solid rgba(61, 255, 106, .25); }
.comm-media {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: .5rem;
}
.forum-media {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: .55rem;
}
.forum-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1rem;
}
.forum-room-wrap {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
}
.forum-room {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(255,255,255,.12));
  color: inherit;
  text-decoration: none;
  font-size: .85rem;
}
.forum-room.is-on {
  background: rgba(61, 255, 106, .16);
  border-color: rgba(61, 255, 106, .4);
}
.forum-room-del {
  margin-left: -.2rem;
  border: 1px solid var(--line, rgba(255,255,255,.12));
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: .35rem .55rem;
  font-size: 1rem;
  line-height: 1;
}
.forum-room-wrap .forum-room { border-radius: 999px 0 0 999px; }
.forum-room-wrap:not(:has(.forum-room-del)) .forum-room { border-radius: 999px; }
.forum-new-room {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: end;
  margin: 0 0 1.1rem;
}
.forum-new-room label { flex: 1; min-width: 180px; margin: 0; }
.forum-body { margin: .4rem 0 .2rem; }
.forum-links {
  margin: .45rem 0 0;
  padding-left: 1.1rem;
}
.forum-links a { word-break: break-word; }
.forum-file {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .55rem;
  padding: .55rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(61, 255, 106, .35);
  background: rgba(61, 255, 106, .08);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-top: .85rem;
}
.post-actions form { margin: 0; }
@media (min-width: 801px) {
  .forum-media {
    width: auto;
    max-width: 360px;
    max-height: 220px;
    object-fit: contain;
    background: #111111;
  }
}
.comm-compose { display: grid; gap: .55rem; }
.comm-file, .comm-check { font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) {
  .share-btn span { display: none; }
  .top-cta .share-btn { padding: .65rem; }
  .comm-layout { grid-template-columns: 1fr; }
  .comm-chat { position: static; }
  .help-dock { right: .7rem; bottom: .7rem; }
}

.coming-band {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 5.5rem 0 6rem;
  text-align: center;
}
.coming-mosaic {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.35fr .75fr 1.15fr;
  grid-template-rows: 1.1fr .9fr;
  gap: 4px;
  overflow: hidden;
}
.coming-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: comingKen 22s ease-in-out infinite alternate;
}
.coming-mosaic img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; animation-delay: 0s; }
.coming-mosaic img:nth-child(2) { grid-column: 2; grid-row: 1; object-position: center 18%; animation-delay: -4s; }
.coming-mosaic img:nth-child(3) { grid-column: 3; grid-row: 1; animation-delay: -8s; }
.coming-mosaic img:nth-child(4) { grid-column: 2 / 4; grid-row: 2; animation-delay: -11s; }
@keyframes comingKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.coming-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,9,15,.18) 0%, rgba(7,9,15,.42) 26%, rgba(7,9,15,.78) 48%, rgba(7,9,15,.88) 100%),
    linear-gradient(180deg, rgba(7,9,15,.2) 0%, rgba(7,9,15,.55) 100%),
    radial-gradient(circle at 62% 42%, rgba(255,225,74,.18), transparent 42%);
}
.coming-wip {
  position: absolute;
  z-index: 3;
  left: 1.1rem;
  top: 1.1rem;
  transform: rotate(-4deg);
  margin: 0;
  padding: .28rem .55rem;
  border: 1px solid rgba(255, 225, 74, .45);
  border-radius: 999px;
  background: rgba(7, 9, 15, .42);
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(.68rem, 1.15vw, .82rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  pointer-events: none;
  white-space: nowrap;
}
.coming-inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}
.coming-support {
  color: #fff6d2;
  font-size: clamp(1.22rem, 2.5vw, 1.85rem);
  font-weight: 650;
  letter-spacing: .02em;
  margin: 0 auto 1.25rem;
  max-width: 28ch;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.coming-band h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  line-height: 1.12;
  max-width: 20ch;
  margin: 0 auto 1.2rem;
  color: #fff;
  text-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.coming-gold {
  color: var(--yellow);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  margin: 0 auto .85rem;
  max-width: 36ch;
  line-height: 1.45;
}
.coming-define {
  color: #fff6d2;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 650;
  line-height: 1.45;
  margin: 0 auto 1rem;
  max-width: 38ch;
  text-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.coming-pay {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.45;
  margin: 0 auto .8rem;
  max-width: 40ch;
}
.coming-inner .klarna-pay {
  justify-content: center;
  color: #fff6d2;
  margin-bottom: 1rem;
}
.coming-copy {
  color: #d7d4e8;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 auto 1.1rem;
  max-width: 44ch;
}
.coming-limit {
  color: var(--fuchsia);
  font-weight: 750;
  letter-spacing: .04em;
  margin: 0 auto 1.6rem;
}
.coming-cta {
  min-width: min(100%, 18rem);
}
@media (max-width: 900px) {
  .coming-band {
    min-height: auto;
    place-items: start center;
    padding: 0 0 6.2rem;
  }
  .coming-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 34vh 18vh;
  }
  .coming-mosaic img:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .coming-mosaic img:nth-child(2) { grid-column: 1; grid-row: 2; }
  .coming-mosaic img:nth-child(3) { display: none; }
  .coming-mosaic img:nth-child(4) { grid-column: 2; grid-row: 2; }
  .coming-wip {
    left: .7rem;
    top: .7rem;
    transform: rotate(-3deg);
    font-size: .62rem;
    letter-spacing: .1em;
  }
  .coming-inner {
    padding: 3.4rem 1.1rem 0;
    max-width: 36rem;
  }
  .coming-support {
    font-size: 1.08rem;
    max-width: 22ch;
    margin-bottom: 1rem;
  }
  .coming-cta {
    min-width: 0;
    width: min(100%, 18rem);
  }
}
@media (max-width: 520px) {
  .coming-wip {
    left: .55rem;
    top: .55rem;
    font-size: .58rem;
    transform: rotate(-2deg);
  }
  .coming-inner { padding-top: 2.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .coming-tile { animation: none; }
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 440px);
  gap: 2.8rem;
  align-items: start;
}
.inquiry-copy h1 { max-width: 16ch; }
.inquiry-points { margin: 1.2rem 0 1.4rem 1.1rem; }
.inquiry-card h2 { max-width: none; margin-bottom: 1rem; font-size: 1.35rem; }
.inquiry-pref {
  border: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.course-composer {
  margin-bottom: 1.8rem;
  max-width: 720px;
}
.course-composer .form { max-width: none; }
.course-feed {
  display: grid;
  gap: 1.2rem;
  max-width: 720px;
  margin-bottom: 2rem;
}
.course-post-head {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: .85rem;
}
.course-post-head h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}
.course-feed-frame {
  margin: .2rem 0 .85rem;
}
.course-loop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  margin: .2rem 0 .85rem;
}
.course-loop iframe,
.course-loop .course-loop-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.course-drive-note { margin: -.4rem 0 .85rem; font-size: .82rem; }
.course-book { margin: 0 0 1.1rem; }
.course-book-title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 .55rem;
}
.course-reader {
  position: relative;
  width: 100%;
  min-height: 70vh;
  height: min(78vh, 820px);
  overflow: hidden;
  border-radius: 16px;
  background: #111;
  border: 1px solid var(--line);
}
.course-reader iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.course-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .7rem 0 .35rem;
}
.course-filter-stack {
  display: grid;
  gap: .75rem;
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.course-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0;
}
.course-filters .chip,
.course-filters .wizard-chip {
  line-height: 1.2;
  padding: .42rem .8rem;
}
.course-filters-topic { margin-top: 0; }
.course-cat-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
}
.course-cat-icon-sm {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.course-cat-chip,
.course-playlist-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.course-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  color: var(--text);
}
.course-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .55rem;
  margin-top: .35rem;
}
.course-playlist-kicker {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.course-cat-field { margin: .15rem 0 .2rem; }
.course-cat-legend {
  margin: 0 0 .5rem;
  font-weight: 600;
}
.course-cat-pick {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.course-cat-option {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: .4rem .8rem .4rem .45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  cursor: pointer;
  font-weight: 600;
}
.course-cat-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.course-cat-option:has(input:checked),
.course-cat-option:has(input:focus-visible) {
  border-color: rgba(61, 255, 106, .55);
  background: rgba(61, 255, 106, .14);
  box-shadow: 0 0 0 2px rgba(61, 255, 106, .18);
}
.course-playlists {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.15rem;
}
.course-playlist-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  background: var(--bg-card);
  font-weight: 600;
}
.course-playlist-chip span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.course-playlist-chip.is-on {
  border-color: rgba(61, 255, 106, .5);
  background: rgba(61, 255, 106, .14);
}
.course-playlist-new {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem .7rem;
  align-items: flex-end;
  margin: 0 0 1.4rem;
  max-width: 720px;
}
.course-playlist-new label { margin: 0; min-width: 160px; flex: 1; }
.course-playlist-new .course-cat-field {
  flex: 1 1 100%;
  margin: .15rem 0 0;
}
.course-playlist-new .btn { margin: 0; }
.course-playlist-head { margin-bottom: 1.2rem; max-width: 720px; }
.course-ep {
  color: var(--green);
  font-size: .9rem;
  margin-right: .15rem;
}
.course-next {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  margin: .35rem 0 .95rem;
}
.course-order {
  max-width: 720px;
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
}
.course-order-help { margin: .15rem 0 .85rem; }
.course-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.course-order-item {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: .55rem .65rem;
  align-items: center;
  padding: .45rem .55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elevated, #141824);
}
.course-order-item.is-dragging {
  opacity: .55;
}
.course-order-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.6rem;
  min-height: 2.5rem;
  margin: 0;
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(61, 255, 106, .12);
  color: var(--text);
  cursor: grab;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  touch-action: none;
  user-select: none;
}
.course-order-handle:active,
.course-order-handle.is-hold { cursor: grabbing; }
.course-order-num { margin: 0; }
.course-order-input {
  width: 3.8rem;
  min-height: 2.4rem;
  padding: .35rem .2rem;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
}
.course-order-title {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.course-order-title:hover { color: var(--green, #3dff6a); }
.course-order-move {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
}
.course-order-move .btn {
  min-height: 2.4rem;
  padding: .35rem .75rem;
  margin: 0;
}
@media (max-width: 640px) {
  .course-order-item {
    grid-template-columns: auto auto minmax(0, 1fr);
  }
  .course-order-move {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}
.course-playlist-pick {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem 1rem;
  display: grid;
  gap: .45rem;
}
.course-playlist-pick legend { padding: 0 .3rem; }
.course-feed-media {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #000;
  border-radius: 14px;
  margin: .2rem 0 .85rem;
}
.course-post-body { margin: .35rem 0 .5rem; }
.course-code {
  margin: .7rem 0;
  padding: .85rem 1rem;
  overflow-x: auto;
  border-radius: 12px;
  background: #0b0d14;
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .85rem;
  line-height: 1.5;
  white-space: pre;
}
.course-code code { font: inherit; color: var(--lime, #c8ff3d); }
.course-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  margin: .85rem 0 .4rem;
}
.course-social form { margin: 0; }
.course-like {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  border-radius: 999px;
  padding: .35rem .8rem;
  cursor: pointer;
}
.course-like.is-on {
  border-color: rgba(255, 45, 149, .55);
  background: rgba(255, 45, 149, .16);
  color: #ffd0e8;
}
.course-comments {
  display: grid;
  gap: .75rem;
  margin-top: .7rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}
.course-comment {
  padding: .65rem .75rem;
  border-radius: 14px;
  background: var(--bg-elevated, #1b1e2e);
}
.course-reply {
  margin: .55rem 0 0 1rem;
  background: rgba(255,255,255,.03);
}
.course-reply-form { margin-top: .55rem; }
.course-reply-wrap { margin-top: .45rem; }
.course-reply-wrap summary {
  cursor: pointer;
  color: var(--muted);
  font-size: .9rem;
}
.course-more {
  margin: 1.5rem 0 2rem;
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: .4rem 1rem 1rem;
  background: var(--bg-card);
}
.course-more summary {
  cursor: pointer;
  font-weight: 600;
  padding: .75rem 0;
  list-style: none;
}
.course-more summary::-webkit-details-marker { display: none; }
.course-more summary::before {
  content: "▸ ";
  color: var(--green);
}
.course-more[open] summary::before { content: "▾ "; }
.course-catalog-title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: .2rem 0 .5rem;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: .85rem;
}
.course-card {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: left;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
  color: inherit;
  text-decoration: none;
}
a.course-card:hover,
a.course-card:focus-visible {
  border-color: var(--green, #3dff6a);
}
.course-card-meta {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.course-card strong {
  font-size: 1.05rem;
  line-height: 1.3;
}
.course-card span:not(.course-card-meta):not(.course-card-go) {
  color: var(--muted);
  font-size: .92rem;
}
.course-card-go {
  margin-top: auto;
  font-size: .85rem;
  color: var(--green, #3dff6a);
}
.course-suggest {
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
}
.course-suggest h3 { font-size: 1rem; margin-bottom: .2rem; }
.course-mini {
  display: block;
  color: var(--text);
  text-decoration: none;
  padding: .35rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.course-mini:hover { color: var(--green, #3dff6a); }
.guide-toc ol {
  columns: 2;
  gap: 1.2rem;
  margin: .4rem 0 0;
  padding-left: 1.2rem;
}
.guide-toc a { text-decoration: none; }
.guide-toc a:hover { color: var(--green, #3dff6a); }
.guide-engines { margin: 1.4rem 0 1.6rem; }
.guide-chapter h2 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin: .2rem 0 .4rem;
}
.guide-body { margin: .7rem 0 0; line-height: 1.55; }
.guide-links { margin: .8rem 0 0; padding-left: 1.1rem; }
@media (max-width: 700px) {
  .guide-toc ol { columns: 1; }
}
@media (max-width: 900px) {
  .inquiry-layout { grid-template-columns: 1fr; gap: 1.6rem; }
}

html { overflow-x: hidden; }
body.is-app {
  padding-bottom: env(safe-area-inset-bottom, 0);
}
body.is-app button,
body.is-app .btn,
body.is-app a.btn {
  touch-action: manipulation;
}
body.is-app input,
body.is-app select,
body.is-app textarea {
  font-size: 16px;
  max-width: 100%;
}
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0 1.6rem;
}
.table-wrap .table { min-width: 36rem; }
.guide-chapter,
.guide-toc { scroll-margin-top: 6.5rem; }
.guide-body,
.guide-links a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.guide-toc a {
  display: inline-block;
  min-height: 44px;
  padding: .35rem 0;
}
.studio-editor {
  height: 62vh;
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .chat-form {
    flex-direction: column;
    align-items: stretch;
  }
  .chat-form .btn { width: 100%; min-height: 48px; }
  .chat-form textarea { min-height: 5.5rem; }
  .preview-frame,
  .preview-frame-lg { min-height: 58vh; }
  .studio { grid-template-columns: 200px 1fr; }
  .studio-tree { max-height: min(70vh, 36rem); }
  .help-dock {
    right: max(.7rem, env(safe-area-inset-right));
    bottom: max(.7rem, env(safe-area-inset-bottom));
  }
  .help-panel {
    width: min(100vw - 1.2rem, 360px);
    max-height: min(68dvh, 520px);
  }
  .comm-head .btn { width: 100%; }
  .forum-new-room { width: 100%; }
  .forum-new-room input { min-height: 44px; }
  .dash-hello, .profile-hero { flex-wrap: wrap; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  body.is-app .main { padding: 1.5rem 1.45rem 5rem; }
  body.is-app .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.is-app .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.is-app .comm-layout { grid-template-columns: 1fr; }
  .studio-editor { height: 58vh; }
}

@media (max-width: 768px) {
  body.is-app .grid-2,
  body.is-app .grid-3,
  body.is-app .grid-4 { grid-template-columns: 1fr; }
  body.is-app .stats { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .stat { padding: 1rem .85rem; }
  .studio { grid-template-columns: 1fr; min-height: 0; }
  .studio-tree {
    max-height: 28vh;
    display: flex;
    gap: .35rem;
    overflow: auto;
  }
  .studio-tree .file-btn { width: auto; flex-shrink: 0; white-space: nowrap; }
  .studio-editor { height: 46vh; }
  .chat {
    height: auto;
    min-height: 0;
  }
  .chat-log { max-height: min(48dvh, 360px); }
  .help-toggle { font-size: .85rem; }
  .a11y-dock { max-width: min(16rem, calc(100vw - 5.5rem)); }
}

.sec-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem 2rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto 2.4rem;
}
.sec-hero img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 0 28px rgba(61,255,106,.22);
}
.sec-hero h1 { margin: 0; max-width: 16ch; }
.sec-grid { margin-top: 1.8rem; }
.sec-card h3 { font-size: 1.25rem; margin-bottom: .55rem; }
a.hero-sec:hover {
  border-color: rgba(61,255,106,.55);
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .sec-hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .sec-hero h1 { max-width: none; }
}

/* —— Demo automazione homepage —— */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  align-items: center;
  justify-content: center;
  margin: 1.4rem auto 1.2rem;
}
.demo-auto {
  padding-top: clamp(3.2rem, 6vw, 5rem);
  padding-bottom: clamp(3.2rem, 6vw, 5.2rem);
  text-align: center;
}
.demo-auto > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.demo-auto h2,
.demo-auto .kicker,
.demo-auto .section-intro {
  margin-inline: auto;
  text-align: center;
}
.demo-auto-shell {
  margin-top: 2rem;
  display: grid;
  gap: 1.6rem;
  width: 100%;
  justify-items: center;
}
.demo-auto-controls {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.55rem;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.demo-auto-label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .85rem;
  font-weight: 700;
}
.demo-auto-picks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-bottom: 1.15rem;
}
.demo-pick {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  padding: .65rem 1.05rem;
  cursor: pointer;
  font-weight: 650;
  transition: border-color .2s, background .2s, transform .2s;
}
.demo-pick:hover { border-color: rgba(92,240,255,.45); }
.demo-pick.is-active {
  border-color: var(--green);
  background: rgba(61,255,106,.12);
  box-shadow: 0 0 0 1px rgba(61,255,106,.25);
}
.demo-auto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  justify-content: center;
}
.demo-auto-hint { margin-top: .95rem; font-size: .95rem; max-width: 62ch; margin-inline: auto; }
.demo-auto-stage {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
  gap: 1.35rem;
  align-items: stretch;
  width: 100%;
  text-align: left;
}
.demo-auto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.demo-auto-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  row-gap: .15rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem 1rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.demo-auto-steps li .demo-step-n {
  grid-row: 1 / span 2;
  align-self: center;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted);
  font-size: .85rem;
}
.demo-auto-steps li strong { font-size: 1.02rem; }
.demo-auto-steps li small { color: var(--muted); font-size: .88rem; }
.demo-auto-steps li.is-active {
  border-color: rgba(61,255,106,.55);
  background: rgba(61,255,106,.08);
  transform: translateX(4px);
}
.demo-auto-steps li.is-active .demo-step-n { color: var(--green); }
.demo-auto-steps li.is-done {
  border-color: rgba(92,240,255,.28);
  opacity: .88;
}
.demo-auto-steps li.is-done .demo-step-n { color: var(--cyan); }
.demo-auto-panel {
  background:
    linear-gradient(160deg, rgba(61,255,106,.07), transparent 42%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.4rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.demo-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.demo-panel-kicker {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 750;
}
.demo-panel-status {
  font-size: .88rem;
  font-weight: 700;
  color: var(--yellow);
}
.demo-panel-body { flex: 1; }
.demo-idle { color: var(--muted); max-width: 42ch; }
.demo-dl {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: .45rem .9rem;
  margin: 0;
}
.demo-dl dt { color: var(--muted); font-size: .9rem; }
.demo-dl dd { font-weight: 650; margin: 0; }
.demo-line { margin: 0 0 .75rem; line-height: 1.65; }
.demo-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .4rem 0 0;
  padding: 0;
}
.demo-tags li {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .9rem;
  font-weight: 650;
}
.demo-tags.seo li { border-color: rgba(92,240,255,.35); color: var(--cyan); }
.demo-tags.benefit li { border-color: rgba(61,255,106,.35); color: var(--green); }
.demo-zip {
  margin: .35rem 0 0;
  padding: .9rem 1rem;
  background: #05070c;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  line-height: 1.55;
  color: #c8ffd8;
  overflow-x: auto;
}
.demo-result { color: var(--green); font-weight: 650; margin-top: .9rem; }
.demo-panel-benefit {
  border-top: 1px solid var(--line);
  padding-top: .9rem;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.65;
}
.demo-panel-cta {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: .9rem;
}
.demo-auto-foot { margin-top: 1.4rem; max-width: 62ch; font-size: .92rem; margin-inline: auto; text-align: center; }
.demo-next-hint { margin-top: .55rem; }
.demo-video-gate {
  margin-top: .4rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow);
  width: 100%;
}
.demo-video-title {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 0 0 1rem;
  max-width: 28ch;
}
.demo-video-frame {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
}
.demo-video-frame.is-mp4 {
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  max-height: 70vh;
}
.demo-video-frame iframe,
.demo-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.demo-redirect {
  margin: 1rem 0 1.1rem;
  font-size: .95rem;
  max-width: 48ch;
}
.demo-video-gate .demo-auto-actions { margin-top: .2rem; }

@media (max-width: 980px) {
  .demo-auto-stage { grid-template-columns: 1fr; }
  .demo-auto-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .demo-auto-steps { grid-template-columns: 1fr; }
  .demo-dl { grid-template-columns: 1fr; }
  .demo-auto-steps li.is-active { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .demo-auto-steps li,
  .demo-pick { transition: none; }
  .demo-auto-steps li.is-active { transform: none; }
}

/* Landing SEO commerciali (Sprint A+) */
.seo-landing .seo-wrap {
  max-width: 46rem;
}
.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  align-items: center;
  font-size: .88rem;
  margin: 0 0 1.2rem;
  color: var(--muted, #5a6472);
}
.seo-breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-lede {
  max-width: 42rem;
  margin-bottom: 1.4rem;
}
.seo-cta {
  margin: 0 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.seo-block {
  margin: 0 0 2.2rem;
  padding-top: .2rem;
}
.seo-block h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  margin: 0 0 .75rem;
  max-width: 28ch;
}
.seo-block > p {
  margin: 0;
  line-height: 1.65;
  color: var(--text, #1a1f2a);
}
.seo-block > p + p { margin-top: .9rem; }
.seo-toc {
  margin: 0 0 1.6rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}
.seo-toc ol {
  margin: .55rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .35rem;
}
.seo-toc a { text-underline-offset: 2px; }
.seo-bullets {
  margin: .9rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: .4rem;
  line-height: 1.55;
}
.seo-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}
.seo-steps li {
  display: grid;
  gap: .25rem;
  padding: .95rem 1.05rem;
  border-left: 3px solid var(--accent, #0d9488);
  background: color-mix(in srgb, var(--accent, #0d9488) 6%, transparent);
}
.seo-steps strong { font-size: 1.02rem; }
.seo-steps span {
  color: var(--muted, #5a6472);
  line-height: 1.5;
  font-size: .95rem;
}
.seo-faq {
  display: grid;
  gap: .55rem;
  margin-top: .9rem;
}
/* Contrasto fisso: card chiara + testo scuro (niente bianco-su-bianco / chiaro-su-chiaro) */
.seo-faq details {
  border: 1px solid rgba(20, 24, 32, 0.14);
  border-radius: 12px;
  padding: .85rem 1.05rem;
  background: #f4f2ec !important;
  color: #141820 !important;
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #141820 !important;
  list-style-position: outside;
}
.seo-faq summary::-webkit-details-marker {
  color: #5a6478;
}
.seo-faq details[open] summary { margin-bottom: .55rem; }
.seo-faq details p {
  margin: 0;
  line-height: 1.55;
  color: #3a4254 !important;
}

/* FAQ home: testo sempre scuro sullo sfondo chiaro */
.faq-block details,
.faq-block summary,
.faq-block details p {
  color: inherit;
}
.faq-block summary {
  color: #1a1f2b !important;
}
.faq-block details p {
  color: #3b4454 !important;
}
.seo-related-list {
  margin: .6rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
}
.seo-related-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Corso Web fondamentali + quiz */
.course-web-promo {
  max-width: 720px;
  margin: 0 0 1.4rem;
  border-color: rgba(11, 110, 79, .28);
  background:
    linear-gradient(135deg, rgba(11, 110, 79, .08), transparent 55%),
    var(--bg-card);
}
.quiz-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.2rem;
}
.quiz-form {
  max-width: 720px;
  display: grid;
  gap: 1rem;
}
.quiz-q {
  margin: 0;
  padding: 1rem 1.1rem 1.05rem;
}
.quiz-q legend {
  float: left;
  width: 100%;
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.35;
}
.quiz-topic {
  display: block;
  margin: 0 0 .35rem;
  font-family: var(--sans, inherit);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.quiz-choice {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: .35rem 0;
  padding: .55rem .65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.quiz-choice:has(input:checked) {
  border-color: rgba(11, 110, 79, .45);
  background: rgba(11, 110, 79, .08);
}
.quiz-choice input { margin-top: .2rem; }
.quiz-result {
  max-width: 720px;
  margin: 0 0 1.2rem;
}
.quiz-result.is-pass {
  border-color: rgba(11, 110, 79, .4);
  background: rgba(11, 110, 79, .1);
}
.quiz-result.is-fail {
  border-color: rgba(180, 60, 50, .35);
  background: rgba(180, 60, 50, .08);
}
.quiz-score {
  margin: .2rem 0 .4rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.quiz-review {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
  max-width: 720px;
}
.quiz-item h3 {
  margin: .15rem 0 .45rem;
  font-size: 1.05rem;
}
.quiz-item.is-ok { border-color: rgba(11, 110, 79, .28); }
.quiz-item.is-ko { border-color: rgba(180, 60, 50, .28); }
.quiz-why {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.people-board { margin-top: .4rem; }
.people-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin: 0 0 1.1rem;
}
.people-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.2rem;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.6rem, 1fr));
  gap: 1rem;
}
.people-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(7.2rem, 1fr));
  margin: 0 0 1.8rem;
}
.people-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .28rem;
  padding: .85rem .6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-elevated, rgba(255,255,255,.04));
  color: inherit;
  text-decoration: none;
}
a.people-card:hover { border-color: var(--green); color: inherit; }
.people-card h3 {
  margin: .35rem 0 0;
  font-size: .95rem;
  font-weight: 650;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.people-name, .people-mail, .people-since { font-size: .72rem; margin: 0; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.people-plan { margin: 0; font-size: .78rem; color: var(--yellow); }
.people-status { margin: 0; font-size: .78rem; color: var(--muted); }
.people-card.is-online .people-status { color: var(--green); }
.people-admin {
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--yellow);
}
.people-avatar {
  position: relative;
  width: 112px;
  height: 112px;
}
.people-grid-compact .people-avatar { width: 88px; height: 88px; }
.people-avatar img,
.people-avatar .user-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.people-live {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5a5a5a;
  box-shadow: 0 0 0 3px var(--bg, #111);
}
.people-card.is-online .people-live { background: var(--green); }
.people-card.is-online .people-avatar img,
.people-card.is-online .people-avatar .user-photo {
  box-shadow: 0 0 0 3px var(--green);
}
.people-card.is-off { opacity: .55; }
.admin-user-cell {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.people-live-inline {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a5a5a;
  margin-left: .35rem;
  vertical-align: middle;
}
.people-live-inline.is-on { background: var(--green); }

.wa-fab {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 8px 24px rgba(0,0,0,.28);
  animation: waFabPulse 2.4s ease-in-out 1.4s infinite;
}
.wa-fab:hover { color: #fff; filter: brightness(1.06); }
.wa-fab-icon {
  display: grid;
  place-items: center;
  line-height: 0;
}
.wa-fab-pop {
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #25d366;
  color: #06210f;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .72rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
  pointer-events: none;
  animation: waPopIn .55s cubic-bezier(.22, 1.35, .36, 1) .45s both;
}
.wa-fab-pop::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #25d366;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}
@keyframes waPopIn {
  from { opacity: 0; transform: translateY(-50%) translateX(14px) scale(.86); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes waFabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .42), 0 8px 24px rgba(0,0,0,.28); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, .18), 0 10px 28px rgba(37, 211, 102, .42); }
}
.front-music {
  right: 5.6rem;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .85rem;
  padding: 0;
  margin: 1.2rem auto 0;
  max-width: 46rem;
}
.trust-row li {
  font-size: .88rem;
  color: var(--muted);
  border: 1px solid var(--line, rgba(255,255,255,.12));
  border-radius: 999px;
  padding: .35rem .7rem;
}
.hero-time { margin-top: 1rem; max-width: 46rem; margin-inline: auto; text-align: center; }
.price { white-space: nowrap; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .wa-fab {
    left: auto;
    right: .85rem;
    bottom: .85rem;
  }
  .wa-fab-pop {
    right: 0;
    top: auto;
    bottom: calc(100% + .7rem);
    transform: none;
    animation-name: waPopUp;
  }
  .wa-fab-pop::after {
    right: 22px;
    top: auto;
    bottom: -6px;
    transform: rotate(45deg);
  }
  .front-music {
    right: auto;
    left: .85rem;
    bottom: .85rem;
  }
}
@keyframes waPopUp {
  from { opacity: 0; transform: translateY(10px) scale(.9); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab,
  .wa-fab-pop {
    animation: none;
  }
}

.works-band { text-align: center; }
.works-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2rem;
  margin-bottom: 1.6rem;
  text-align: left;
}
.works-who {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  max-width: 48rem;
}
.works-fabio {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(61,255,106,.35), 0 12px 28px rgba(0,0,0,.35);
}
.works-who h2 { margin: 0 0 .6rem; max-width: 18ch; }
.works-who .section-intro { margin: 0; }
.works-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 0 0 1rem;
}
.works-filter {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-weight: 650;
  cursor: pointer;
}
.works-filter.is-on {
  border-color: var(--green);
  background: rgba(61,255,106,.12);
}
.works-toolbar {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin: 0 0 1rem;
}
.works-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .3rem .2rem 1.2rem;
  -webkit-overflow-scrolling: touch;
}
.works-card {
  flex: 0 0 240px;
  width: 240px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
}
.works-card:hover { border-color: rgba(61,255,106,.45); }
.works-shot {
  display: block;
  aspect-ratio: 16 / 10;
  background: #12141f;
  overflow: hidden;
}
.works-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works-meta {
  display: grid;
  gap: .2rem;
  padding: .85rem 1rem 1rem;
}
.works-meta strong { font-size: 1.02rem; }
.works-meta small { color: var(--muted); }
.works-note { margin-top: .4rem; }
.chi-sono-wrap {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 52rem;
}
.chi-sono-foto {
  width: 200px;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.article-body { max-width: 46rem; }
.article-body p { margin: 0 0 1.1rem; line-height: 1.75; }
.article-videos { margin: 1.4rem 0 2.2rem; display: grid; gap: 1.25rem; }
.article-videos h2 { margin: 0 0 .4rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.article-video {
  position: relative;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background-color: #111;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.article-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}
.article-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0 1rem; }
.articoli-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.articles-band { text-align: center; }
.articles-band .card { text-align: left; }
@media (max-width: 700px) {
  .works-head { justify-content: center; text-align: center; }
  .works-who { flex-direction: column; text-align: center; }
  .works-who h2 { margin-inline: auto; }
  .chi-sono-wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

.preview-pages {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}
.preview-page summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  gap: .25rem;
}
.preview-page summary::-webkit-details-marker { display: none; }
.preview-page summary strong {
  font-size: 1.2rem;
}
.preview-page[open] {
  border-color: rgba(255, 225, 74, .45);
}
.preview-lock-note { margin-top: .8rem; }
.preview-locked {
  padding: 1.2rem 1.4rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.home-close-cta {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(61,255,106,.14), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(255,45,149,.16), transparent 46%),
    #0a0c14;
  border-top: 1px solid var(--line);
}
.home-close-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-close-cta h2 {
  max-width: 22ch;
  margin-inline: auto;
}
.home-close-cta .lede {
  max-width: 62ch;
  margin-inline: auto;
}
.home-close-cta-row { justify-content: center; }


