:root {
  --bg: #07070a;
  --ink: #f7f4ff;
  --muted: #b7b2c2;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-solid: #121218;
  --panel-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #9b6cff;
  --accent-2: #b995ff;
  --dark: #f7f4ff;
  --dark-muted: #d7d0e7;
  --shadow: 0 46px 170px rgba(155, 108, 255, 0.18);
  --soft-shadow: 0 24px 90px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 18%, rgba(139, 92, 255, 0.23), transparent 32%),
    radial-gradient(circle at 28% 64%, rgba(185, 149, 255, 0.1), transparent 34%),
    linear-gradient(130deg, #07070a, #0d0b14 48%, #08080b),
    var(--bg);
  background-attachment: fixed;
}

a { color: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  margin-top: 12px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 18, 24, 0.62);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(26px) saturate(1.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #17151f, #0b0c0e);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(247, 244, 255, 0.68);
  text-decoration: none;
  font-size: 0.94rem;
}
.nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.nav .nav-cta {
  color: #09090d;
  background: #fff;
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.12);
}
.nav .nav-cta:hover { color: #09090d; background: #f7f4ff; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 30px;
  align-items: stretch;
  min-height: 640px;
  padding: 70px 0 42px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.94;
  font-weight: 850;
  letter-spacing: -0.045em;
}
.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.65;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  font-weight: 820;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 22px 64px rgba(155, 108, 255, 0.16); }
.button.primary {
  border-color: rgba(155, 108, 255, 0.42);
  background: linear-gradient(135deg, #7c4dff, #b690ff);
  color: #fff;
}
.button.accent {
  border-color: rgba(185, 149, 255, 0.28);
  background: rgba(185, 149, 255, 0.12);
  color: #d3c0ff;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(17, 18, 15, 0.05), rgba(17, 18, 15, 0.72)),
    url("./zordon-hero-workshop.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.hero-panel-inner {
  padding: 22px;
  color: #fff;
}
.hero-panel-inner p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}
.section.compact { padding: 34px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.035em;
}
.section-head p, .muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 12px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px) saturate(1.08);
}
.card.dark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045));
  color: #fff;
}
.card.dark p { color: var(--dark-muted); }
.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}
.card .link-list { margin-top: 18px; }
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.dark .pill {
  color: #fff;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
}

.band {
  margin: 24px 0;
  padding: 28px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(17, 20, 16, 1), rgba(20, 43, 39, 0.98) 58%, rgba(92, 58, 35, 0.92));
  color: #fff;
}
.band p { color: var(--dark-muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: center;
}
.list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}
.dark .list li { border-color: rgba(255,255,255,0.14); color: var(--dark-muted); }

.page-hero {
  padding: 78px 0 42px;
}
.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}
.page-hero .lead { max-width: 780px; }

.catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.catalog-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px) saturate(1.08);
}
.catalog-item strong { display: block; font-size: 1.08rem; }
.catalog-item span { color: var(--muted); line-height: 1.5; }
.catalog-item a { color: var(--accent); font-weight: 760; text-decoration: none; }

.tool-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(168, 116, 255, 0.2);
  border-radius: 999px;
  color: #7f53d8 !important;
  background: rgba(238, 232, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-status.product {
  color: var(--ink) !important;
  background: rgba(255,255,255,0.82);
}

.tool-status.decision {
  color: var(--muted) !important;
  background: rgba(255,255,255,0.62);
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.home-page .zordon-page-context {
  display: none;
}

.home-showcase {
  position: relative;
  margin-top: -76px;
  padding: 82px 0 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(230, 239, 231, 0.88), rgba(248, 247, 243, 0.98) 42%, rgba(247, 230, 212, 0.62)),
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.98), rgba(255,255,255,0) 48%),
    var(--bg);
}

.showcase-shell {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.showcase-card {
  position: relative;
  min-height: clamp(560px, 68vh, 680px);
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.showcase-card.is-active {
  display: flex;
}

.showcase-slide.is-active .showcase-copy,
.showcase-slide.is-active .showcase-visual {
  animation: showcaseIn 360ms ease both;
}

.showcase-slide.is-active .showcase-visual {
  animation-delay: 70ms;
}

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

.showcase-copy {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 64px));
  margin: auto;
  transform: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.showcase-copy h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.35rem, 3.8vw, 3.9rem);
  line-height: 0.98;
  font-weight: 650;
}

.showcase-copy .lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.12rem);
}

.showcase-copy .eyebrow {
  color: #8f62dc;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-product-mock {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.hero-product-mock div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  box-shadow: var(--soft-shadow);
}

.hero-product-mock strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-product-mock span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.9rem;
}

.showcase-actions .button {
  box-shadow: none;
}

.showcase-actions .button.primary {
  border-color: var(--dark);
  color: #fff;
  background: var(--dark);
}

.showcase-actions .button:not(.primary) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.showcase-visual {
  display: none;
  min-height: clamp(360px, 45vw, 560px);
  display: none;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 39, 54, 0.02), rgba(7, 39, 54, 0.22)),
    url("./zordon-hero-workshop.png") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.showcase-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: inherit;
}

.showcase-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.9), rgba(248, 247, 243, 0.6) 44%, rgba(248, 247, 243, 0.12) 76%),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.34));
}

.visual-whiteos {
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(16, 18, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 15, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(122, 55, 181, 0.22), rgba(122, 55, 181, 0) 42%),
    rgba(255, 255, 255, 0.72);
  background-size: 20px 20px, 20px 20px, auto, auto;
  box-shadow: 0 28px 90px rgba(84, 45, 118, 0.13);
}

.showcase-bg.visual-whiteos {
  background-size: 22px 22px, 22px 22px, auto, auto;
}

.visual-school {
  background:
    linear-gradient(180deg, rgba(248, 247, 243, 0.08), rgba(17, 20, 16, 0.28)),
    url("./zordon-hero-workshop.png") center / cover no-repeat;
}

.showcase-bg.visual-school::after {
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.9), rgba(248, 247, 243, 0.5) 44%, rgba(248, 247, 243, 0.08) 78%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.2));
}

.visual-tools {
  background:
    radial-gradient(circle at 25% 28%, rgba(168, 116, 255, 0.22), rgba(168, 116, 255, 0) 34%),
    linear-gradient(135deg, rgba(17, 20, 16, 0.95), rgba(42, 22, 68, 0.94)),
    var(--dark);
}

.showcase-bg.visual-tools::after {
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.94), rgba(248, 247, 243, 0.66) 48%, rgba(248, 247, 243, 0.34) 82%),
    radial-gradient(circle at 78% 30%, rgba(168, 116, 255, 0.12), rgba(168, 116, 255, 0) 38%);
}

.visual-glass {
  width: min(360px, calc(100% - 40px));
  margin: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(8, 31, 45, 0.72);
  backdrop-filter: blur(20px);
}

.visual-whiteos .visual-glass {
  width: min(620px, calc(100% - 48px));
  margin: 24px;
  text-align: center;
  border-color: rgba(122, 55, 181, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 90px rgba(84, 45, 118, 0.13);
}

.visual-whiteos .visual-glass span {
  color: rgba(82, 51, 104, 0.62);
}

.visual-whiteos .visual-glass strong {
  color: #241332;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
}

.visual-whiteos .visual-glass p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(36, 19, 50, 0.64);
}

.visual-glass span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-glass strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.visual-glass p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.carousel-control {
  position: absolute;
  top: 53%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--dark);
  font-size: 2rem;
  line-height: 1;
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.showcase-dots {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: flex;
  gap: 7px;
}

.showcase-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 18, 15, 0.18);
  cursor: pointer;
}

.showcase-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.path-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 86px);
  padding: 54px 0 44px;
}

.overview-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
  color: var(--ink);
  text-decoration: none;
}

.overview-mark {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(168, 116, 255, 0.2);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 790;
}

.overview-card strong {
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1;
}

.overview-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.overview-link {
  color: var(--ink);
  font-weight: 790;
}

.overview-link::after {
  content: " ->";
  color: var(--accent);
}

.content-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.content-rail a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 760;
  text-decoration: none;
}

.article-page .zordon-page-context {
  display: none;
}

.article-shell {
  padding-top: clamp(42px, 7vw, 86px);
}

.article-hero {
  max-width: 980px;
  padding: clamp(34px, 6vw, 72px) 0 clamp(26px, 4vw, 48px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.article-back::before {
  content: "<- ";
  color: var(--accent);
}

.article-hero h1 {
  max-width: 940px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 0.98;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.article-sidebar strong {
  color: var(--ink);
}

.article-sidebar nav {
  display: grid;
  gap: 10px;
}

.article-sidebar a:not(.button) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
  text-decoration: none;
}

.article-sidebar a:not(.button):hover {
  color: var(--ink);
}

.article-body {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px);
}

.article-body h1,
.article-body h2,
.article-body h3 {
  margin: 1.25em 0 0.45em;
  color: var(--ink);
  line-height: 1.04;
}

.article-body h1:first-child,
.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.article-body h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.article-body h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.article-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.article-body p,
.article-body li {
  color: #343a34;
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-body p {
  margin: 0 0 1.05em;
}

.article-body ul {
  margin: 0 0 1.35em;
  padding-left: 1.2em;
}

.article-body li + li {
  margin-top: 0.45em;
}

.article-body strong {
  color: var(--ink);
}

.article-next {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, rgba(17, 20, 16, 0.98), rgba(95, 60, 150, 0.68));
  box-shadow: var(--shadow);
}

.article-next h2,
.article-next .eyebrow {
  color: #fff;
}

.article-next p:not(.eyebrow) {
  max-width: 560px;
  color: var(--dark-muted);
  line-height: 1.62;
}

.home-hero {
  min-height: clamp(680px, 88vh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 9vw, 112px) 0 clamp(34px, 6vw, 70px);
}

.home-hero-copy {
  max-width: 880px;
}

.home-hero h1 {
  max-width: 960px;
  font-size: clamp(3.6rem, 8.4vw, 7.8rem);
  line-height: 0.88;
}

.home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(30px, 5vw, 52px);
}

.path-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(16, 18, 15, 0.08);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 80px rgba(28, 31, 25, 0.08);
  text-decoration: none;
  backdrop-filter: blur(26px) saturate(1.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 18, 15, 0.18);
  box-shadow: 0 34px 100px rgba(28, 31, 25, 0.13);
}

.path-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  line-height: 0.92;
}

.path-card span:last-child {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.55;
}

.path-kicker {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-tools {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 20, 16, 0.98), rgba(21, 55, 49, 0.95)),
    var(--dark);
}

.path-tools strong,
.path-tools .path-kicker {
  color: #fff;
}

.path-tools span:last-child {
  color: rgba(235, 241, 232, 0.78);
}

.home-orbit {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 250, 247, 0.24), rgba(17, 20, 16, 0.78)),
    url("./zordon-hero-workshop.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.home-orbit::before,
.home-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.home-orbit::before {
  inset: 28px;
}

.home-orbit::after {
  inset: 92px;
}

.orbit-core,
.orbit-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(16, 18, 15, 0.54);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.1);
}

.orbit-core {
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
}

.orbit-core span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-weight: 790;
}

.orbit-core strong {
  display: block;
  max-width: 120px;
  color: #fff;
  line-height: 1.05;
}

.orbit-panel {
  width: min(260px, calc(100% - 48px));
  padding: 18px;
  border-radius: 24px;
}

.orbit-panel:first-child {
  top: 34px;
  left: 34px;
}

.orbit-panel:nth-child(2) {
  right: 34px;
  bottom: 34px;
}

.orbit-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.orbit-panel strong {
  color: #fff;
  line-height: 1.12;
}

.home-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.home-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(16, 18, 15, 0.08);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  font-weight: 700;
}

.path-detail-grid,
.home-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.path-detail {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px) saturate(1.08);
}

.path-detail h3 {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 0.96;
}

.path-detail p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
}

.path-detail.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(17, 20, 16, 0.98), rgba(24, 45, 39, 0.98)),
    var(--dark);
}

.path-detail.featured h3,
.path-detail.featured .eyebrow {
  color: #fff !important;
}

.path-detail.featured p:not(.eyebrow) {
  color: var(--dark-muted);
}

.path-detail.featured .pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-system {
  align-items: end;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(24px);
}

.system-copy h2 {
  max-width: 720px;
}

.system-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.system-list {
  display: grid;
  gap: 8px;
}

.system-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 18, 15, 0.08);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.system-list a:hover {
  background: rgba(255, 255, 255, 0.86);
}

.system-list strong {
  color: var(--ink);
  white-space: nowrap;
}

.system-list span {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.45;
}

.home-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 20, 16, 0.98), rgba(95, 60, 150, 0.68)),
    var(--dark);
  box-shadow: var(--shadow);
}

.home-cta h2,
.home-cta .eyebrow {
  color: #fff !important;
}

.home-cta p:not(.eyebrow) {
  max-width: 560px;
  color: var(--dark-muted);
  line-height: 1.62;
}

@media (max-width: 940px) {
  .topbar { position: static; align-items: flex-start; }
  .hero, .home-hero, .showcase-card, .path-overview, .article-grid, .section-head, .split, .grid-2, .grid-3, .grid-4, .catalog, .path-detail-grid, .home-system {
    grid-template-columns: 1fr;
  }
  .home-showcase { margin-top: 0; padding-top: 0; }
  .showcase-card { min-height: 560px; }
  .showcase-card.is-active { display: flex; }
  .showcase-copy { margin: auto 24px 64px; width: calc(100% - 48px); padding: 0; transform: none; }
  .showcase-visual { min-height: 360px; }
  .carousel-control { display: none; }
  .showcase-dots { bottom: 24px; justify-content: center; }
  .hero { min-height: auto; padding-top: 46px; }
  .home-hero { min-height: auto; padding-top: 52px; }
  .hero-panel { min-height: 360px; }
  .home-orbit { min-height: 480px; }
  .home-cta { align-items: flex-start; flex-direction: column; }
  .article-sidebar { position: static; }
  .article-next { align-items: flex-start; flex-direction: column; }
  .content-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 1180px); }
  .topbar { padding: 12px; }
  .brand { width: 100%; }
  .nav { width: 100%; gap: 2px; }
  .nav a { padding: 8px 9px; font-size: 0.9rem; }
  .hero-copy { padding-right: 0; }
  h1 { font-size: clamp(2.65rem, 14vw, 3.8rem); }
  .showcase-copy h1 { font-size: clamp(2.15rem, 9.8vw, 3rem); }
  .showcase-copy .lead { font-size: 1rem; }
  .hero-product-mock { grid-template-columns: 1fr; }
  .hero-product-mock div { min-height: 72px; }
  .showcase-card { min-height: 540px; border-radius: 0; }
  .showcase-copy { border-radius: 0; }
  .showcase-bg::after {
    background:
      linear-gradient(180deg, rgba(248, 247, 243, 0.18), rgba(248, 247, 243, 0.9) 56%, rgba(248, 247, 243, 0.98));
  }
  .showcase-visual { min-height: 300px; }
  .path-overview { grid-template-columns: 1fr; gap: 24px; padding: 34px 0 30px; }
  .overview-card { grid-template-columns: 38px minmax(0, 1fr); }
  .overview-mark { width: 38px; height: 38px; }
  .overview-card strong { font-size: clamp(1.65rem, 9vw, 2.4rem); }
  .content-rail { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: clamp(2.05rem, 9.8vw, 3rem); }
  .article-body { padding: 22px; border-radius: 24px; }
  .article-body p, .article-body li { font-size: 1rem; line-height: 1.68; }
  .home-hero h1 { font-size: clamp(3.05rem, 16vw, 4.6rem); }
  .home-actions { grid-template-columns: 1fr; }
  .path-card { min-height: 190px; border-radius: 24px; }
  .path-card strong { font-size: clamp(2.1rem, 12vw, 3.25rem); }
  .home-orbit { min-height: 430px; border-radius: 28px; }
  .home-orbit::before { inset: 22px; }
  .home-orbit::after { inset: 72px; }
  .orbit-core { width: 150px; height: 150px; }
  .orbit-panel { padding: 14px; border-radius: 20px; }
  .orbit-panel:first-child { top: 20px; left: 20px; }
  .orbit-panel:nth-child(2) { right: 20px; bottom: 20px; }
  .path-detail { min-height: auto; border-radius: 26px; }
  .path-detail h3 { font-size: clamp(2rem, 12vw, 3.4rem); }
  .home-system, .home-cta { border-radius: 26px; }
  .system-list a { align-items: flex-start; flex-direction: column; gap: 8px; }
  .system-list strong { white-space: normal; }
  .page-hero h1 { font-size: clamp(2.55rem, 13vw, 3.65rem); }
  .card, .catalog-item { min-height: auto; }
}
