:root {
  --bg: #0f1419;
  --bg-elevated: #161c24;
  --ink: #fffff0;
  --ink-muted: rgba(255, 255, 240, 0.62);
  --ink-faint: rgba(255, 255, 240, 0.38);
  --accent: #e8a54b;
  --accent-hot: #ca0147;
  --line: rgba(255, 255, 240, 0.1);
  --font: "Exo 2", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-gated {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

.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;
}

/* Gate / stub */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(202, 1, 71, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(232, 165, 75, 0.14), transparent 55%),
    var(--bg);
}

.gate.is-leaving {
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.gate-inner {
  width: min(100%, 420px);
  text-align: center;
}

.gate-brand {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  line-height: 0.95;
  background: linear-gradient(115deg, #f3ec78 0%, #e8a54b 45%, #ca0147 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gate-title {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink);
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gate-input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--ink);
  background: rgba(22, 28, 36, 0.85);
  border: 1px solid var(--line);
  outline: none;
  transition: border-color 0.25s ease;
}

.gate-input:focus {
  border-color: var(--accent);
}

.gate-input.is-wrong {
  border-color: var(--accent-hot);
  animation: gate-shake 0.35s var(--ease);
}

.gate-submit {
  width: 100%;
}

.gate-error {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--accent-hot);
}

@keyframes gate-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}


a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 2.5rem);
  background: linear-gradient(to bottom, rgba(15, 20, 25, 0.92), rgba(15, 20, 25, 0));
  backdrop-filter: blur(8px);
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink-muted);
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--ink) !important;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: rgba(232, 165, 75, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(202, 1, 71, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 165, 75, 0.12), transparent 55%),
    var(--bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-node {
  --a: 0deg;
  --r: min(46vw, 400px);
  --dur: 40s;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-faint);
  animation: orbit var(--dur) linear infinite;
  transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1));
}

.orbit-node.soon {
  opacity: 0.45;
}

@keyframes orbit {
  from {
    transform: rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1));
  }
  to {
    transform: rotate(calc(var(--a) + 360deg)) translateX(var(--r)) rotate(calc((var(--a) + 360deg) * -1));
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.brand-mark {
  margin: 0 0 1.2rem;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  background: linear-gradient(115deg, #f3ec78 0%, #e8a54b 45%, #ca0147 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-in 1.1s var(--ease) both;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.6vw, 2.15rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ink);
  animation: rise 1s var(--ease) 0.15s both;
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--ink-muted);
  animation: rise 1s var(--ease) 0.28s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: rise 1s var(--ease) 0.4s both;
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--ink-faint);
  border-radius: 12px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
  z-index: 2;
}

.scroll-hint span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scroll-pulse 1.6s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-hot));
  color: #0f1419;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Hub */
.ecosystem {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.ecosystem .section-head {
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}

.hub {
  --orbit-r: clamp(210px, 32vw, 270px);
  position: relative;
  width: min(760px, 96vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(96px, 16%, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(243, 236, 120, 0.25), transparent 50%),
    linear-gradient(145deg, #1a222c, #0c1015);
  border: 1px solid rgba(232, 165, 75, 0.35);
  box-shadow: 0 0 60px rgba(202, 1, 71, 0.2);
  z-index: 3;
  animation: core-pulse 4.5s ease-in-out infinite;
}

.hub-core span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
}

@keyframes core-pulse {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(202, 1, 71, 0.15);
  }
  50% {
    box-shadow: 0 0 70px rgba(232, 165, 75, 0.28);
  }
}

.hub-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hub-ring {
  stroke: rgba(255, 255, 240, 0.12);
  stroke-width: 0.35;
  stroke-dasharray: 2 2;
}

.hub-ray {
  stroke: rgba(232, 165, 75, 0.35);
  stroke-width: 0.35;
  transition: stroke 0.35s ease, stroke-width 0.35s ease;
}

.hub-ray--dim {
  stroke: rgba(255, 255, 240, 0.12);
}

.hub:has(.hub-node:hover) .hub-ray {
  stroke: rgba(232, 165, 75, 0.7);
  stroke-width: 0.5;
}

.hub-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 158px;
  padding: 0.85rem 0.7rem;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--angle) * -1));
  text-align: center;
  background: rgba(22, 28, 36, 0.92);
  border: 1px solid var(--line);
  z-index: 2;
  transition: border-color 0.3s ease, transform 0.35s var(--ease), background 0.3s ease;
}

.hub-node:hover,
.hub-node:focus-visible {
  border-color: var(--accent);
  background: rgba(30, 38, 48, 0.98);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(var(--angle) * -1)) scale(1.04);
  outline: none;
}

.hub-node strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hub-node span {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.hub-node em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.hub-node--soon {
  opacity: 0.55;
  pointer-events: none;
}

/* Products */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.product--flip .product-visual {
  order: 2;
}

.product--flip .product-copy {
  order: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.product-copy p {
  margin: 0 0 1.6rem;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 32rem;
}

.product-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.viz {
  width: min(100%, 340px);
  aspect-ratio: 1.2;
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(232, 165, 75, 0.08), transparent 40%),
    var(--bg-elevated);
  overflow: hidden;
}

.viz-stream {
  display: grid;
  place-items: center;
}

.viz-wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(202, 1, 71, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 3s ease-out infinite;
}

.viz-wave:nth-child(2) {
  animation-delay: 1s;
}

.viz-wave:nth-child(3) {
  animation-delay: 2s;
}

@keyframes ripple {
  from {
    width: 18%;
    opacity: 0.9;
  }
  to {
    width: 90%;
    opacity: 0;
  }
}

.viz-live {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-hot);
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(202, 1, 71, 0.5);
  background: rgba(15, 20, 25, 0.7);
}

.viz-bukh {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.7rem;
  padding: 2rem 1.5rem 1.5rem;
}

.viz-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--accent-hot), var(--accent));
  opacity: 0.85;
  transform-origin: bottom;
  animation: bar-grow 2.8s var(--ease) infinite alternate;
}

.viz-bar:nth-child(2) {
  animation-delay: 0.2s;
}
.viz-bar:nth-child(3) {
  animation-delay: 0.4s;
}
.viz-bar:nth-child(4) {
  animation-delay: 0.1s;
}
.viz-bar:nth-child(5) {
  animation-delay: 0.35s;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0.7);
    opacity: 0.55;
  }
  to {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

.viz-swot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  padding: 0;
}

.viz-swot span {
  display: grid;
  place-items: center;
  background: var(--bg-elevated);
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  transition: color 0.3s ease, background 0.3s ease;
}

.viz-swot span:nth-child(1) {
  color: var(--accent);
}
.viz-swot span:nth-child(4) {
  color: var(--accent-hot);
}

/* Cycle */
.cycle {
  border-top: 1px solid var(--line);
  max-width: var(--max);
}

.cycle-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.cycle-steps li {
  padding-top: 1rem;
  border-top: 2px solid rgba(232, 165, 75, 0.45);
}

.step-num {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.cycle-steps strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cycle-steps p {
  margin: 0;
  font-weight: 300;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Start */
.start {
  border-top: 1px solid var(--line);
  max-width: var(--max);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.start-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 140px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(232, 165, 75, 0.06), transparent 55%);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), background 0.3s ease;
}

.start-link:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: linear-gradient(160deg, rgba(232, 165, 75, 0.12), transparent 55%);
}

.start-link strong {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.start-link span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.start-link--muted {
  opacity: 0.7;
}

.start-link--muted span {
  color: var(--ink-faint);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1.2rem, 4vw, 2.5rem) 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-brand p,
.footer-contact a {
  margin: 0;
  color: var(--ink-muted);
  font-weight: 300;
}

.footer-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-map ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-map a,
.footer-map span {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-muted);
}

.footer-map a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive — scale desktop composition, don't replace it */
@media (max-width: 900px) {
  .nav {
    gap: 0.85rem;
    font-size: 0.78rem;
  }

  .orbit-node {
    --r: min(44vw, 320px);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hub {
    width: min(92vw, 560px);
    --orbit-r: clamp(140px, 36vw, 210px);
  }

  .hub-core {
    width: clamp(72px, 18%, 96px);
  }

  .hub-core span {
    font-size: 0.68rem;
  }

  .hub-node {
    width: 118px;
    padding: 0.55rem 0.4rem;
  }

  .hub-node strong {
    font-size: 0.72rem;
  }

  .hub-node span {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .hub-node em {
    font-size: 0.55rem;
  }

  .product,
  .product--flip {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .product-visual {
    min-height: 180px;
  }

  .product-copy h2 {
    font-size: clamp(1.2rem, 3.2vw, 1.7rem);
  }

  .product-copy p {
    font-size: 0.92rem;
    margin-bottom: 1.1rem;
  }

  .cycle-steps {
    grid-template-columns: 1fr 1fr;
  }

  .start-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .start-link {
    min-height: 120px;
    padding: 1rem 0.75rem;
  }

  .start-link strong {
    font-size: 0.95rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .nav {
    gap: 0.55rem;
    font-size: 0.65rem;
  }

  .nav-cta {
    padding: 0.35rem 0.6rem;
  }

  .hero {
    padding: 5rem 1rem 3.5rem;
  }

  .orbit-node {
    --r: min(46vw, 48vh);
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    margin-bottom: 0.85rem;
    letter-spacing: 0.04em;
  }

  .hero-title {
    letter-spacing: 0.05em;
  }

  .hero-lead {
    margin-bottom: 1.5rem;
    max-width: 22rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }

  .hub {
    width: min(96vw, 420px);
    --orbit-r: clamp(118px, 34vw, 160px);
  }

  .hub-node {
    width: 96px;
    padding: 0.45rem 0.3rem;
  }

  .hub-node span {
    display: none;
  }

  .hub-node strong {
    font-size: 0.68rem;
    margin-bottom: 0.15rem;
  }

  .hub-node em {
    font-size: 0.5rem;
  }

  .product,
  .product--flip {
    grid-template-columns: 1fr;
  }

  .product--flip .product-visual {
    order: -1;
  }

  .product-visual {
    min-height: 200px;
  }

  .cycle-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 400px) {
  .orbit-node {
    --r: min(48vw, 42vh);
    font-size: 0.48rem;
  }

  .hub {
    --orbit-r: clamp(108px, 32vw, 140px);
  }

  .hub-node {
    width: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}