/* ============================================================
   OTENRA — Home components
   Build beyond the known.
   ------------------------------------------------------------
   Loaded only by the homepage. Tokens, reset, header, buttons and
   footer live in main.css; this file adds the composed sections:

     01  Hero
     02  Intelligence Orbit
     03  Principles strip
     04  Ecosystem / product cards
     05  Product artwork
     06  Why OTENRA
     07  Vision panel
     08  Motion + responsive

   House rules: no inline styles anywhere (the site CSP forbids them),
   animation is transform/opacity only, and every motion respects
   prefers-reduced-motion at the end of this file.
   ============================================================ */

/* Gradient library: present in the DOM, absent from the layout. */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================================
   01 — Hero
   ============================================================ */

.home-hero {
  position: relative;
  padding: clamp(56px, 9vh, 112px) 0 clamp(64px, 9vh, 104px);
}

/* The homepage runs wider than the document pages: the hero has to hold a
   display headline and an orbit side by side without crushing either. */
.wrap--wide {
  width: min(100% - 2 * var(--gutter), 1340px);
  margin-inline: auto;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-eyebrow {
  margin: 0;
}

.hero-title {
  margin: var(--space-6) 0 var(--space-6);
  font-size: var(--text-display);
  font-weight: 460;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  /* Two lines, broken where the copy says — never where the box says. */
  white-space: nowrap;
  text-wrap: nowrap;
}

/* The gold sits on one word, so it reads as emphasis and not decoration. */
.hero-title .accent {
  color: var(--gold);
}

.hero-lede {
  max-width: 46ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--text-body-lg);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: clamp(32px, 4vw, 48px);
}

/* The primary action is the one place gold becomes a surface. */
.button--gold {
  background: linear-gradient(160deg, #d8b984, var(--gold) 55%, #b9955f);
  color: #17130c;
  font-weight: 560;
  box-shadow: var(--glow-gold-tight);
}

.button--gold:hover {
  background: linear-gradient(160deg, #e3c795, #d0b083 55%, #c39f6b);
  box-shadow: 0 0 34px rgba(200, 167, 116, 0.34);
}

/* ============================================================
   02 — Intelligence Orbit
   ============================================================ */

.orbit {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
  aspect-ratio: 1;
  color: var(--gold);
}

.orbit-stage {
  position: absolute;
  inset: 0;
}

.orbit-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-ring {
  fill: none;
  stroke: currentColor;
  transform-origin: 260px 260px;
}

.orbit-ring--outer {
  stroke-width: 0.5;
  opacity: 0.16;
}

.orbit-ring--mid {
  stroke-width: 0.75;
  opacity: 0.3;
}

.orbit-ring--inner {
  stroke-width: 1;
  opacity: 0.5;
}

.orbit-axis {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.75;
  opacity: 0.2;
}

/* Dashed ring travelling slowly is what sells "system", not speed. */
.orbit-track {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-dasharray: 2 14;
  opacity: 0.4;
  transform-origin: 260px 260px;
  animation: orbit-spin 140s linear infinite;
}

.orbit-track--reverse {
  stroke-dasharray: 1 22;
  opacity: 0.26;
  animation: orbit-spin 200s linear infinite reverse;
}

.orbit-dust circle {
  fill: currentColor;
  transform-origin: 260px 260px;
}

.orbit-dust--a {
  animation: orbit-spin 90s linear infinite;
  opacity: 0.5;
}

.orbit-dust--b {
  animation: orbit-spin 150s linear infinite reverse;
  opacity: 0.35;
}

.orbit-core-glow {
  fill: url(#orbit-core-gradient);
  animation: orbit-breathe 7s ease-in-out infinite;
  transform-origin: 260px 260px;
}

.orbit-core-mark {
  fill: currentColor;
}

.orbit-core-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.9;
  opacity: 0.55;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

/* --- capability nodes ------------------------------------- */

.orbit-node {
  position: absolute;
  width: max-content;
  max-width: 178px;
  transition: transform var(--t-base);
}

.orbit-node-dot {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 167, 116, 0.1), var(--glow-gold-tight);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.orbit-node-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.orbit-node-desc {
  margin: 3px 0 0;
  font-size: var(--text-caption);
  line-height: 1.45;
  color: var(--text-muted);
  transition: color var(--t-base);
}

.orbit-node:hover .orbit-node-dot,
.orbit-node:focus-within .orbit-node-dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 6px rgba(200, 167, 116, 0.14), 0 0 26px rgba(200, 167, 116, 0.5);
}

.orbit-node:hover .orbit-node-desc,
.orbit-node:focus-within .orbit-node-desc {
  color: var(--text-secondary);
}

/* Four fixed anchor points — the ring is the layout grid. */
.orbit-node--n {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.orbit-node--n .orbit-node-dot {
  top: auto;
  bottom: -22px;
  left: 50%;
  margin: 0 0 0 -3.5px;
}

.orbit-node--e {
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  padding-left: 20px;
  text-align: left;
}

.orbit-node--e .orbit-node-dot {
  left: 0;
}

.orbit-node--s {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.orbit-node--s .orbit-node-dot {
  top: -22px;
  left: 50%;
  margin: 0 0 0 -3.5px;
}

.orbit-node--w {
  top: 50%;
  left: -4%;
  transform: translateY(-50%);
  padding-right: 20px;
  text-align: right;
}

.orbit-node--w .orbit-node-dot {
  right: 0;
  left: auto;
}

.orbit-node--n:hover,
.orbit-node--s:hover {
  transform: translateX(-50%) translateY(-2px);
}

.orbit-node--e:hover,
.orbit-node--w:hover {
  transform: translateY(-50%) translateY(-2px);
}

/* ============================================================
   03 — Principles strip
   ============================================================ */

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strip-item {
  position: relative;
  padding: clamp(28px, 3.4vw, 44px) clamp(20px, 2.6vw, 40px);
}

.strip-item + .strip-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--border);
}

.strip-item:first-child {
  padding-left: 0;
}

.strip-item:last-child {
  padding-right: 0;
}

.strip-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strip-title {
  margin: var(--space-4) 0 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.strip-desc {
  margin: 0;
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* ============================================================
   04 — Ecosystem
   ============================================================ */

.ecosystem-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.ecosystem-head h2 {
  margin-top: var(--space-5);
  font-size: var(--text-h2);
  line-height: 1.04;
  max-width: 12ch;
}

.ecosystem-aside {
  padding-bottom: 6px;
}

.ecosystem-aside p {
  max-width: 44ch;
  margin: 0 0 var(--space-5);
  color: var(--text-secondary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-highlight);
  padding-bottom: 4px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--border-gold);
}

.text-link .arrow {
  transition: transform var(--t-fast);
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), border-color var(--t-base),
    box-shadow var(--t-base);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

/* A hairline of light crossing the top edge on hover. */
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 167, 116, 0.75),
    transparent
  );
  opacity: 0;
  transition: opacity var(--t-base);
}

.product-card:hover::after {
  opacity: 1;
}

/* The lead product takes the full row and turns horizontal: hierarchy
   stated by area, not by a badge. */
.product-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  /* The lead card is short on copy; without a floor the row collapses to
     text height and the artwork reads as a letterbox strip. */
  min-height: clamp(300px, 26vw, 380px);
}

.product-card--featured .product-visual {
  flex: 1 1 54%;
  aspect-ratio: auto;
  border-bottom: 0;
  border-right: 1px solid var(--border);
}

.product-card--featured .product-body {
  flex: 1 1 46%;
  justify-content: center;
  padding: clamp(28px, 3.4vw, 52px);
}

.product-card--featured .product-name {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
}

.product-card--featured .product-desc {
  font-size: 1.02rem;
  margin-bottom: var(--space-6);
}

/* Centred block: the action follows the copy instead of being pushed to
   the floor by the grid card's margin-top:auto. */
.product-card--featured .product-action {
  margin-top: 0;
}

.product-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #08080a;
  border-bottom: 1px solid var(--border);
}

.product-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow);
}

.product-card:hover .product-art {
  transform: scale(1.035);
}

.product-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(11, 11, 13, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: border-color var(--t-base);
}

.product-card:hover .product-icon {
  border-color: var(--border-gold);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-4);
}

.product-category {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Status is stated on the card itself — nothing here is shipping yet. */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
}

.product-name {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.product-desc {
  margin: 0 0 var(--space-6);
  max-width: 40ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: var(--text-caption);
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.product-card:hover .product-action {
  color: var(--gold);
}

.product-action .arrow {
  transition: transform var(--t-base);
}

.product-card:hover .product-action .arrow {
  transform: translateX(5px);
}

/* Whole-card link target without nesting interactive elements. */
.product-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ============================================================
   05 — Product artwork (generated, no photography)
   ============================================================ */

.art-bg {
  fill: #08080a;
}

.art-line {
  fill: none;
  stroke: rgba(200, 167, 116, 0.34);
  stroke-width: 0.7;
}

.art-line--faint {
  stroke: rgba(200, 167, 116, 0.16);
}

.art-line--ivory {
  stroke: rgba(243, 241, 235, 0.2);
}

.art-line--strong {
  stroke: rgba(216, 185, 132, 0.85);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-fill-gold {
  fill: rgba(200, 167, 116, 0.5);
}

.art-eclipse-disc {
  fill: #08080a;
}

/* The lit edge of the eclipse — one crisp line does the work a wide
   glow cannot: it gives the disc an actual edge. */
.art-rim {
  fill: none;
  stroke: rgba(230, 205, 160, 0.72);
  stroke-width: 1.1;
}

.art-star {
  fill: rgba(238, 219, 183, 0.92);
}

.art-halo {
  fill: url(#art-halo-gradient);
}

.art-horizon {
  fill: url(#art-horizon-gradient);
}

.art-sunrise {
  fill: url(#art-sunrise-gradient);
}

.art-sun-core {
  fill: rgba(246, 232, 205, 0.9);
}

.art-layer {
  fill: rgba(243, 241, 235, 0.055);
  stroke: rgba(200, 167, 116, 0.42);
  stroke-width: 0.7;
}

.art-globe-fill {
  fill: url(#art-globe-gradient);
}

.art-node {
  fill: rgba(200, 167, 116, 0.85);
}

.art-vignette {
  fill: url(#art-vignette-gradient);
}

/* ============================================================
   06 — Why OTENRA
   ============================================================ */

.why-head {
  max-width: 62ch;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.why-head h2 {
  margin: var(--space-5) 0 var(--space-5);
  font-size: var(--text-h2);
  line-height: 1.05;
  max-width: 16ch;
}

.why-head p {
  margin: 0;
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: var(--text-body-lg);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-item {
  position: relative;
  padding: clamp(30px, 3vw, 42px) clamp(20px, 2.4vw, 36px)
    clamp(34px, 3.4vw, 48px);
}

.why-item + .why-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--border);
}

.why-item:first-child {
  padding-left: 0;
}

.why-item:last-child {
  padding-right: 0;
}

/* The gold line only lights up on the item you are reading. */
.why-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
  transition: width var(--t-slow);
}

.why-item:hover::after {
  width: 100%;
}

.why-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: 1.12rem;
  font-weight: 520;
  letter-spacing: -0.02em;
}

.why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

/* ============================================================
   07 — Vision panel
   ============================================================ */

.vision-section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.vision-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 5.6vw, 88px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #0d0d10, #08080a 60%);
  box-shadow: var(--shadow-panel);
}

.vision-copy {
  position: relative;
  z-index: 2;
}

.vision-copy h2 {
  margin: var(--space-5) 0 var(--space-5);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  max-width: 13ch;
}

.vision-copy p {
  margin: 0 0 clamp(28px, 3.4vw, 44px);
  max-width: 46ch;
  color: var(--text-secondary);
  font-size: var(--text-body-lg);
  line-height: 1.6;
}

.vision-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 5 / 4;
  /* No frame: the atmosphere dissolves into the panel rather than
     ending on a rectangle. */
  mask-image: radial-gradient(
    ellipse 76% 78% at 50% 46%,
    #000 45%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 76% 78% at 50% 46%,
    #000 45%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );
}

.vision-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vis-space {
  fill: url(#vision-space-gradient);
}

.vis-planet {
  fill: #060608;
}

.vis-limb {
  fill: none;
  stroke: rgba(233, 208, 165, 0.75);
  stroke-width: 1.2;
}

.vis-limb--haze {
  stroke: rgba(200, 167, 116, 0.16);
  stroke-width: 10;
}

.vis-sun {
  fill: url(#vision-sun-gradient);
  animation: sun-breathe 9s ease-in-out infinite;
  transform-origin: 300px 300px;
}

.vis-arc {
  fill: none;
  stroke: rgba(200, 167, 116, 0.55);
  stroke-width: 1;
}

.vis-arc--soft {
  stroke: rgba(200, 167, 116, 0.16);
  stroke-width: 0.7;
}

.vis-star {
  fill: rgba(243, 241, 235, 0.55);
}

@keyframes sun-breathe {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.vision-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--border);
  grid-column: 1 / -1;
}

.vision-stat b {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold);
}

.vision-stat span {
  display: block;
  margin-top: 10px;
  max-width: 22ch;
  font-size: var(--text-caption);
  line-height: 1.5;
  color: var(--text-muted);
}

/* ============================================================
   08 — Motion + responsive
   ============================================================ */

/* Sections rise once, then stay put. */
.rise {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}

.rise.is-visible {
  opacity: 1;
  transform: none;
}

.rise[data-delay="1"] {
  transition-delay: 0.09s;
}

.rise[data-delay="2"] {
  transition-delay: 0.18s;
}

.rise[data-delay="3"] {
  transition-delay: 0.27s;
}

.no-js .rise {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .orbit {
    width: min(100%, 460px);
  }

  .orbit-node {
    max-width: 150px;
  }
}

@media (max-width: 1024px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(56px, 8vw, 88px);
  }

  .hero-title {
    max-width: 14ch;
  }

  .orbit {
    width: min(100%, 520px);
  }

  .ecosystem-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-6);
  }

  .ecosystem-head h2 {
    max-width: 16ch;
  }

  .strip-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* On two columns the vertical rules would cut the wrong seams. */
  .strip-item + .strip-item::before,
  .why-item + .why-item::before {
    display: none;
  }

  .strip-item,
  .why-item {
    padding-left: 0;
    padding-right: clamp(16px, 3vw, 32px);
  }

  .strip-item:nth-child(n + 3),
  .why-item:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .vision-panel {
    grid-template-columns: 1fr;
  }

  .vision-visual {
    order: -1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 860px) {
  /* Side-by-side stops working once the visual drops under ~380px wide. */
  .product-card--featured {
    flex-direction: column;
  }

  .product-card--featured .product-visual {
    flex: none;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .product-card--featured .product-body {
    flex: none;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .strip-item:nth-child(n + 2),
  .why-item:nth-child(n + 2) {
    border-top: 1px solid var(--border);
  }

  .strip-item,
  .why-item {
    padding-right: 0;
  }

  .vision-stats {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .vision-stat {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: var(--space-4);
    align-items: baseline;
  }

  .vision-stat span {
    margin-top: 0;
    max-width: none;
  }
}

/* Below ~600px the orbit labels stop fitting around the ring; they
   become an honest 2×2 list underneath it instead of shrinking to
   unreadable type. */
@media (max-width: 600px) {
  .orbit {
    width: min(100%, 340px);
    /* The nodes leave the ring and stack below it, so the container is no
       longer a square and the stage must stop being an overlay — otherwise
       the rings paint straight through the list. */
    aspect-ratio: auto;
  }

  .orbit-stage {
    position: static;
    aspect-ratio: 1;
  }

  .orbit-node {
    position: static;
    max-width: none;
    transform: none;
    text-align: left;
    padding: 0;
  }

  .orbit-node--n,
  .orbit-node--s,
  .orbit-node--e,
  .orbit-node--w {
    transform: none;
    text-align: left;
  }

  .orbit-nodes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5) var(--space-4);
    margin-top: var(--space-7);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
  }

  .orbit-node-dot {
    position: static;
    display: block;
    margin: 0 0 10px;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .hero-cta .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 380px) {
  .orbit-nodes {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-track,
  .orbit-track--reverse,
  .orbit-dust--a,
  .orbit-dust--b,
  .orbit-core-glow,
  .vis-sun {
    animation: none;
  }

  .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-card:hover,
  .orbit-node:hover {
    transform: none;
  }

  .product-card:hover .product-art {
    transform: none;
  }
}
