    :root {
      --black:      #F2F6FA;
      --cream:      #0B0F14;
      --off-white:  #11161D;
      --charcoal:   #C5CED8;
      --muted:      #7A8593;
      --sand:       rgba(255,255,255,0.07);
      --light-sand: #161C25;
      --orange:     #8CD34F;
      --blue:       #00AEEF;
      --grad:       linear-gradient(90deg,#8CD34F 0%,#00AEEF 100%);
      --green-ok:   #4ade80;
      --green-bg:   rgba(74,222,128,0.12);
      --font-hero:  'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
      --font-ui:    'Inter', Helvetica, Arial, sans-serif;
      --max:        1280px;
      --cx-canvas:  #0B0F14;
      --cx-deep:    #070A0E;
      --cx-surface: #11161D;
      --cx-surface-2: #161C25;
      --cx-surface-3: #1C2330;
      --cx-border: rgba(255,255,255,0.07);
      --cx-border-strong: rgba(141,211,79,0.24);
      --cx-text: #F2F6FA;
      --cx-text-soft: #C5CED8;
      --cx-muted: #7A8593;
      --cx-green: #8CD34F;
      --cx-blue: #00AEEF;
      --cx-grad: linear-gradient(90deg,#8CD34F 0%,#00AEEF 100%);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--orange) var(--light-sand);
    }
    body {
      margin: 0;
      background: var(--cream);
      color: var(--black);
      font-family: var(--font-ui);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -webkit-text-size-adjust: 100%;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }
    ::-webkit-scrollbar { width: 12px; height: 12px; }
    ::-webkit-scrollbar-track { background: var(--light-sand); }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--orange) 0%, var(--blue) 100%);
      border: 2px solid var(--light-sand);
      border-radius: 999px;
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--orange); }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--black);
      color: var(--cream);
      padding: 10px 14px;
      border-radius: 6px;
      z-index: 100;
      font: 600 14px var(--font-ui);
    }
    .skip-link:focus {
      left: 16px;
      top: 16px;
    }

    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
    .section { padding: 88px 0; }
    .eyebrow {
      display: inline-block;
      font: 600 12px var(--font-ui);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .sec-title {
      font-family: var(--font-hero);
      font-weight: 600;
      font-size: clamp(26px, 3.6vw, 40px);
      line-height: 1.08;
      letter-spacing: -0.8px;
      color: var(--black);
      margin: 10px 0 0;
    }
    .sec-lead {
      font-size: clamp(15px, 1.6vw, 18px);
      line-height: 1.55;
      color: var(--charcoal);
      margin: 16px 0 0;
      max-width: 620px;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font: 600 15px var(--font-ui); cursor: pointer;
      padding: 12px 22px; border-radius: 4px; border: 1px solid transparent;
      transition: transform .12s, opacity .15s, background .15s, color .15s, border-color .15s;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--grad); color: #0B0F14; border-color: transparent; }
    .btn-primary:hover { opacity: .9; color: var(--cream); }
    .btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); border-radius: 6px; }
    .btn-dark:hover { background: var(--charcoal); color: var(--cream); }
    .btn-ghost { background: var(--light-sand); color: var(--charcoal); border-color: var(--sand); border-radius: 6px; }
    .btn-ghost:hover { background: var(--sand); color: var(--black); }
    .btn-lg { padding: 14px 26px; font-size: 16px; }
    .btn-compact { padding: 8px 16px; font-size: 14px; }
    .btn-cta-small { padding: 10px 18px; font-size: 14px; }
    .section--off-white { background: var(--off-white); }
    .hero-actions--center { justify-content: center; margin-bottom: 0; }

    /* Navbar */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(11,15,20,.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--sand);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
    }
    .brand { display: flex; align-items: center; gap: 10px; }
    .brand img { width: 30px; height: 30px; border-radius: 6px; }
    .brand span { font: 600 17px var(--font-hero); color: var(--black); letter-spacing: -0.3px; }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
    .nav-links a {
      font: 500 14px var(--font-ui); color: var(--charcoal);
      padding: 8px 12px; border-radius: 6px;
      transition: background .15s, color .15s;
    }
    .nav-links a:hover { background: var(--light-sand); color: var(--black); }
    .nav-links a.is-active,
    .nav-dropdown-panel a.is-active,
    .nav-mobile a.is-active {
      background: var(--light-sand);
      color: var(--black);
    }
    .nav-item-dropdown { position: relative; }
    .nav-dropdown-trigger {
      background: none;
      border: none;
      padding: 8px 12px;
      font: 500 14px var(--font-ui);
      color: var(--charcoal);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      border-radius: 6px;
    }
    .nav-dropdown-trigger:hover,
    .nav-item-dropdown.is-open .nav-dropdown-trigger {
      background: var(--light-sand);
      color: var(--black);
    }
    .nav-dropdown-panel {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 240px;
      background: var(--cream);
      border: 1px solid var(--sand);
      border-radius: 10px;
      padding: 6px;
      list-style: none;
      margin: 6px 0 0;
      display: none;
      z-index: 60;
    }
    .nav-item-dropdown.is-open .nav-dropdown-panel { display: block; }
    .nav-dropdown-panel li { margin: 0; }
    .nav-dropdown-panel a {
      display: block;
      padding: 10px 12px;
      border-radius: 6px;
      font: 500 14px var(--font-ui);
      color: var(--charcoal);
    }
    .nav-dropdown-panel a:hover { background: var(--light-sand); color: var(--black); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-login {
      font: 600 14px var(--font-ui); color: var(--charcoal);
      padding: 8px 14px; border-radius: 6px;
    }
    .nav-login:hover { background: var(--light-sand); color: var(--black); }
    .nav-toggle {
      display: none;
      background: none; border: 1px solid var(--sand); border-radius: 6px;
      padding: 6px 10px; cursor: pointer;
    }
    .nav-toggle span {
      display: block; width: 20px; height: 2px; background: var(--black);
      margin: 4px 0; border-radius: 2px; transition: .2s;
    }
    .nav-mobile {
      display: none;
      flex-direction: column;
      padding: 10px 24px 20px;
      border-top: 1px solid var(--sand);
      background: var(--cream);
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      padding: 12px 4px; font: 500 15px var(--font-ui); color: var(--charcoal);
      border-bottom: 1px solid var(--light-sand);
    }
    .nav-mobile a:last-child { border-bottom: none; color: var(--orange); font-weight: 600; }

    /* Hero */
    .hero { padding: 64px 0 34px; background: var(--cream); position: relative; overflow: hidden; }
    .hero::before {
      content: '';
      position: absolute; inset: -40px 0 auto 0; height: 420px;
      background: radial-gradient(ellipse 900px 360px at 50% 0%, rgba(255,79,0,.06), transparent 65%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 44px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,79,0,.08);
      border: 1px solid rgba(255,79,0,.24);
      color: var(--orange);
      border-radius: 999px; padding: 5px 14px;
      font: 600 12px var(--font-ui); letter-spacing: .6px; text-transform: uppercase;
      margin-bottom: 22px;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
    .hero h1 {
      font-family: var(--font-hero); font-weight: 600;
      font-size: clamp(34px, 4.8vw, 54px); line-height: 0.98;
      letter-spacing: -1.4px; color: var(--black); margin: 0 0 16px;
    }
    .hero h1 em { font-style: normal; color: var(--orange); }
    .hero-sub {
      font-size: clamp(15px, 1.45vw, 17px); line-height: 1.5;
      color: var(--charcoal); margin: 0 0 22px; max-width: 480px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 12px 18px;
      font: 500 12px var(--font-ui); color: var(--charcoal);
      max-width: 520px;
    }
    .hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
    .hero-meta span::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--orange); flex-shrink: 0;
    }

    .hero-collage {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 12px;
    }
    .hero-collage::before {
      content: '';
      position: absolute;
      top: -18px;
      right: -18px;
      width: 58%;
      height: 46%;
      border: 1px solid rgba(255,79,0,.22);
      border-radius: 18px;
      z-index: -2;
    }
    .hero-collage::after {
      content: '';
      position: absolute;
      left: -28px;
      bottom: -24px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(255,79,0,.18) 0%, rgba(255,79,0,0) 72%);
      z-index: -2;
      pointer-events: none;
    }
    .hero-collage figure {
      position: relative;
      margin: 0;
      border: 1px solid var(--sand);
      border-radius: 12px;
      overflow: hidden;
      background: var(--light-sand);
      transition: transform .24s ease, border-color .24s ease;
    }
    .hero-collage figure::after {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 8px;
      pointer-events: none;
    }
    .hero-collage figure:hover {
      border-color: rgba(255,79,0,.45);
    }
    .hero-collage img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 3;
      filter: saturate(1.04) contrast(1.02);
      transition: transform .3s ease;
    }
    .hero-collage figure:hover img { transform: scale(1.02); }
    .hero-collage .tall {
      grid-row: span 2;
      aspect-ratio: auto;
      transform: translateY(16px);
    }
    .hero-collage .tall img { aspect-ratio: 3 / 5; }
    .hero-collage figure:nth-child(2) { transform: translateX(8px); }
    .hero-collage figure:nth-child(3) { transform: translate(-10px, -6px); }

    /* Summary block */
    .strip {
      padding: 0 0 6px;
      background: var(--cream);
    }
    .strip-shell {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }
    .strip-inner {
      border: 1px solid var(--sand);
      border-radius: 14px;
      background: var(--off-white);
      padding: 24px;
      display: grid;
      grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.6fr);
      gap: 24px 28px;
      align-items: start;
    }
    .strip-lead {
      display: grid;
      gap: 10px;
      align-content: start;
      max-width: 320px;
    }
    .strip-label {
      font: 600 11px var(--font-ui); letter-spacing: .8px;
      text-transform: uppercase; color: var(--muted);
    }
    .strip-title {
      margin: 0;
      font-family: var(--font-hero);
      font-weight: 600;
      font-size: clamp(20px, 2.1vw, 28px);
      line-height: 1.05;
      letter-spacing: -0.6px;
      color: var(--black);
    }
    .strip-copy {
      margin: 0;
      font: 400 14px var(--font-ui);
      line-height: 1.5;
      color: var(--charcoal);
    }
    .strip-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .strip-item {
      min-height: 84px;
      padding: 14px;
      border: 1px solid var(--sand);
      border-radius: 10px;
      background: var(--cream);
      display: grid;
      gap: 4px;
      align-content: start;
    }
    .strip-item strong {
      font: 600 14px var(--font-ui);
      letter-spacing: -0.1px;
      color: var(--black);
    }
    .strip-item small {
      font: 400 12px var(--font-ui);
      line-height: 1.45;
      color: var(--muted);
    }

    /* Sections shared header */
    .sec-head { margin-bottom: 48px; max-width: 720px; }

    /* Steps */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .step {
      background: var(--cream);
      border: 1px solid var(--sand);
      border-radius: 8px;
      overflow: hidden;
      display: flex; flex-direction: column;
    }
    .step-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--light-sand); }
    .step-img img { width: 100%; height: 100%; object-fit: cover; }
    .step-body { padding: 22px 22px 26px; }
    .step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 30px; height: 30px; border-radius: 6px;
      background: rgba(255,79,0,.1);
      color: var(--orange);
      font: 700 13px var(--font-ui);
      margin-bottom: 14px;
    }
    .step h3 {
      font: 600 18px var(--font-ui); color: var(--black);
      margin: 0 0 8px; letter-spacing: -0.2px;
    }
    .step p {
      font: 400 15px var(--font-ui); color: var(--charcoal);
      line-height: 1.55; margin: 0;
    }

    /* Surfaces */
    .surfaces {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .surface {
      background: var(--cream);
      border: 1px solid var(--sand);
      border-radius: 10px;
      padding: 28px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .surface-role {
      font: 600 11px var(--font-ui); letter-spacing: .8px;
      text-transform: uppercase; color: var(--muted);
    }
    .surface h3 {
      font-family: var(--font-hero); font-weight: 600;
      font-size: 24px; letter-spacing: -0.4px; color: var(--black);
      margin: 0;
    }
    .surface p {
      font: 400 15px var(--font-ui); color: var(--charcoal);
      margin: 0; line-height: 1.55;
    }
    .surface ul {
      list-style: none; padding: 0; margin: 4px 0 0;
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
    }
    .surface li {
      font: 500 13px var(--font-ui); color: var(--charcoal);
      padding-left: 18px; position: relative;
    }
    .surface li::before {
      content: ''; position: absolute; left: 0; top: 7px;
      width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
    }
    .surface-path {
      font: 500 12px ui-monospace, Menlo, Consolas, monospace;
      color: var(--muted);
      margin-top: auto;
      padding-top: 12px; border-top: 1px dashed var(--sand);
    }
    .surface-cta {
      margin-top: 2px;
      align-self: flex-start;
    }
    .surface--door {
      cursor: default;
      position: relative;
    }
    .surface--door .surface-cta {
      align-self: flex-start;
      margin-top: 4px;
    }

    /* Mercado entre recicladoras feature block */
    .mercado {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
      gap: clamp(28px, 4vw, 54px);
      align-items: center;
      padding: clamp(28px, 4vw, 48px);
      border: 1px solid var(--cx-border-strong);
      border-radius: 28px;
      background:
        radial-gradient(circle at 78% 16%, rgba(0,174,239,.20), transparent 30rem),
        radial-gradient(circle at 14% 82%, rgba(141,211,79,.13), transparent 28rem),
        linear-gradient(135deg, rgba(17,22,29,.98), rgba(7,10,14,.96));
      color: var(--cx-text);
    }
    .mercado-copy {
      display: flex; flex-direction: column; justify-content: center; gap: 18px;
      min-width: 0;
    }
    .mercado-copy .eyebrow { color: var(--cx-green); }
    .mercado-copy h2 {
      font-family: var(--font-hero); font-weight: 600;
      font-size: clamp(32px, 4vw, 54px); line-height: 1.02; letter-spacing: 0;
      color: var(--cx-text); margin: 0;
      text-wrap: balance;
    }
    .mercado-copy p {
      max-width: 620px;
      font: 400 17px var(--font-ui); color: var(--cx-text-soft);
      line-height: 1.6; margin: 0;
    }
    .mercado-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .mercado-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 12px;
      border: 1px solid rgba(141,211,79,.22);
      border-radius: 999px;
      background: rgba(141,211,79,.08);
      color: var(--cx-text);
      font: 700 12px var(--font-ui);
    }
    .mercado-flow {
      counter-reset: flow;
      list-style: none;
      padding: 0;
      margin: 8px 0 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .mercado-flow li {
      min-height: 72px;
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px;
      border: 1px solid var(--cx-border);
      border-radius: 16px;
      background: rgba(255,255,255,.035);
      font: 600 13px var(--font-ui); color: var(--cx-text); line-height: 1.45;
    }
    .mercado-flow li::before {
      content: counter(flow, decimal-leading-zero);
      counter-increment: flow;
      display: inline-grid;
      place-items: center;
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: rgba(141,211,79,.12);
      font: 800 11px var(--font-ui); color: var(--cx-green); letter-spacing: .5px;
    }
    .mercado-visual {
      position: relative;
      min-width: 0;
    }
    .mercado-img {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 24px;
      background: var(--cx-surface-2);
      box-shadow: 0 28px 80px rgba(0,0,0,.34);
    }
    .mercado-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      opacity: .92;
    }
    .mercado-panel {
      position: absolute;
      z-index: 2;
      left: 22px;
      bottom: 22px;
      width: min(390px, calc(100% - 44px));
      padding: 18px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 18px;
      background: rgba(11,15,20,.86);
      backdrop-filter: blur(18px) saturate(140%);
      box-shadow: 0 22px 60px rgba(0,0,0,.30);
    }
    .mercado-panel > span {
      display: block;
      margin-bottom: 8px;
      color: var(--cx-green);
      font: 800 11px var(--font-ui);
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .mercado-panel strong {
      display: block;
      color: var(--cx-text);
      font: 800 18px/1.2 var(--font-hero);
      margin-bottom: 14px;
    }
    .mercado-panel dl {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 0;
    }
    .mercado-panel div {
      min-width: 0;
      padding-top: 10px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .mercado-panel dt {
      color: var(--cx-muted);
      font: 700 11px var(--font-ui);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .mercado-panel dd {
      margin: 4px 0 0;
      color: var(--cx-text);
      font: 700 13px/1.3 var(--font-ui);
    }

    /* Materials grid */
    .materials {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .material-card {
      border: 1px solid var(--sand);
      border-radius: 8px;
      overflow: hidden;
      background: var(--cream);
      display: flex; flex-direction: column;
    }
    .material-card figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--light-sand); }
    .material-card img { width: 100%; height: 100%; object-fit: cover; }
    .material-card figcaption {
      padding: 12px 14px;
      font: 500 13px var(--font-ui); color: var(--charcoal);
    }
    .material-card figcaption strong { display: block; color: var(--black); font-weight: 600; margin-bottom: 2px; }

    /* Capabilities */
    .caps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--sand); border-radius: 12px;
      overflow: hidden; background: var(--sand);
      gap: 1px;
    }
    .cap { background: var(--cream); padding: 32px 24px; }
    .cap h4 {
      font-family: var(--font-hero); font-weight: 600;
      font-size: 28px; letter-spacing: -0.6px;
      color: var(--black); margin: 0 0 10px;
    }
    .cap h4 span { color: var(--orange); }
    .cap p { font: 400 14px var(--font-ui); color: var(--charcoal); margin: 0; line-height: 1.5; }

    .ops-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .ops-card {
      border: 1px solid var(--sand);
      border-radius: 8px;
      background: var(--cream);
      padding: 18px 16px;
    }
    .ops-card h3 {
      margin: 0 0 8px;
      font: 600 17px var(--font-ui);
      color: var(--black);
      letter-spacing: -0.2px;
    }
    .ops-card p {
      margin: 0;
      color: var(--charcoal);
      font: 400 14px var(--font-ui);
      line-height: 1.5;
    }

    .rules-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .rule-card {
      border: 1px solid var(--sand);
      border-radius: 8px;
      padding: 18px 16px;
      background: var(--cream);
    }
    .rule-card h3 {
      margin: 0 0 8px;
      font: 600 17px var(--font-ui);
      color: var(--black);
    }
    .rule-card p {
      margin: 0;
      color: var(--charcoal);
      font: 400 14px var(--font-ui);
      line-height: 1.5;
    }

    .cross-links {
      margin-top: 20px;
      display: grid;
      gap: 8px;
    }
    .cross-links a {
      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 2px;
      font: 500 14px var(--font-ui);
    }

    /* CTA */
    .cta {
      background: var(--off-white);
      border-top: 1px solid var(--sand);
      border-bottom: 1px solid var(--sand);
      padding: 88px 24px;
      text-align: center;
    }
    .cta h2 {
      font-family: var(--font-hero); font-weight: 600;
      font-size: clamp(30px, 4.8vw, 48px); line-height: 1.02; letter-spacing: -1.2px;
      color: var(--black); margin: 14px auto 16px; max-width: 700px;
    }
    .cta p { font: 400 17px var(--font-ui); color: var(--charcoal); max-width: 520px; margin: 0 auto 32px; }
    .cta-cards {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
      max-width: 720px; margin: 0 auto;
    }
    .cta-cards.cta-cards--three {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1080px;
    }
    .cta-card {
      padding: 26px; border: 1px solid var(--sand); border-radius: 10px;
      background: var(--cream); text-align: left;
      transition: border-color .15s, transform .15s;
    }
    .cta-card:hover { border-color: var(--orange); transform: translateY(-2px); }
    .cta-card h3 {
      font: 600 17px var(--font-ui); color: var(--black);
      margin: 0 0 6px;
    }
    .cta-card p {
      font: 400 14px var(--font-ui); color: var(--muted);
      margin: 0 0 18px; line-height: 1.5;
    }
    .cta .cta-login {
      margin: 56px auto 0; font: 400 14px var(--font-ui); color: var(--muted);
    }
    .cta .cta-login a { color: var(--orange); font-weight: 600; text-decoration: underline; }

    .scroll-top {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 46;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--sand);
      border-radius: 14px;
      background: rgba(32, 21, 21, .92);
      color: var(--cream);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
      backdrop-filter: blur(10px);
    }
    .scroll-top:hover {
      background: var(--orange);
      border-color: var(--orange);
    }
    .scroll-top.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
    .scroll-top svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 2.25;
      fill: none;
    }

    /* Footer */
    .foot { background: var(--black); color: var(--cream); padding: 56px 24px 28px; }
    .foot-inner {
      max-width: var(--max); margin: 0 auto;
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(197,192,177,.15);
    }
    .foot-brand .brand img { width: 26px; height: 26px; }
    .foot-brand .brand span { color: var(--cream); font-size: 16px; }
    .foot-tag { font: 400 13px var(--font-ui); color: #939084; line-height: 1.6; margin-top: 12px; max-width: 260px; }
    .foot-col h5,
    .foot-title {
      font: 600 11px var(--font-ui); letter-spacing: .8px; text-transform: uppercase;
      color: #939084; margin: 0 0 12px;
    }
    .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
    .foot-col a { font: 400 13px var(--font-ui); color: #c5c0b1; transition: color .15s; }
    .foot-col a:hover { color: var(--cream); }
    .foot-col a.is-active { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
    .foot-text { font: 400 13px var(--font-ui); color: #939084; }
    .foot-bot {
      max-width: var(--max); margin: 24px auto 0;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
      font: 400 12px var(--font-ui); color: #939084;
    }

    /* Divider */
    .divider { height: 1px; background: var(--sand); margin: 0; }

    /* Network pattern (hero, mercado, cta) */
    .hero { position: relative; }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../img/pattern-1.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      opacity: .5;
      pointer-events: none;
      z-index: 0;
      transform: translate3d(var(--px, 0), var(--py, 0), 0);
      transition: transform .6s cubic-bezier(.2,.7,.2,1);
      will-change: transform;
    }
    .hero .wrap { position: relative; z-index: 1; }

    .mercado::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../img/pattern-1.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      opacity: .18;
      filter: invert(1) brightness(1.6);
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 0;
      animation: patternDrift 22s ease-in-out infinite;
    }
    .mercado-copy, .mercado-visual, .mercado-img { position: relative; z-index: 1; }

    .cta { position: relative; overflow: hidden; }
    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../img/pattern-1.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      opacity: .4;
      pointer-events: none;
      z-index: 0;
      animation: patternDrift 28s ease-in-out infinite;
    }
    .cta > * { position: relative; z-index: 1; }

    @keyframes patternDrift {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50%      { transform: translate3d(22px, -14px, 0) scale(1.04); }
    }

    /* Custom cursor (ring + dot, orange) */
    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      border-radius: 50%;
      opacity: 0;
      transition: opacity .25s ease, width .22s ease, height .22s ease,
                  border-color .22s ease, background .22s ease;
      will-change: transform, width, height;
    }
    .cursor-dot {
      width: 6px; height: 6px;
      background: var(--orange);
      box-shadow: 0 0 14px rgba(255,79,0,.55);
      margin: -3px 0 0 -3px;
    }
    .cursor-ring {
      width: 34px; height: 34px;
      border: 1.5px solid rgba(255,79,0,.5);
      background: rgba(255,79,0,.04);
      margin: -17px 0 0 -17px;
      backdrop-filter: blur(1px);
    }
    .cursor-dot.is-visible,
    .cursor-ring.is-visible { opacity: 1; }
    .cursor-ring.is-hover {
      width: 58px; height: 58px;
      margin: -29px 0 0 -29px;
      border-color: var(--orange);
      background: rgba(255,79,0,.1);
    }
    .cursor-ring.is-click {
      width: 22px; height: 22px;
      margin: -11px 0 0 -11px;
      background: rgba(255,79,0,.22);
    }
    @media (hover: none), (pointer: coarse) {
      .cursor-dot, .cursor-ring { display: none !important; }
    }

    /* === Animaciones === */
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroBadgePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,79,0,.35); }
      50%      { box-shadow: 0 0 0 8px rgba(255,79,0,0); }
    }
    @keyframes heroShimmer {
      0%   { background-position: -160% 0; }
      60%  { background-position: 160% 0; }
      100% { background-position: 160% 0; }
    }
    @keyframes collageFloatA {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    @keyframes collageFloatB {
      0%, 100% { transform: translate(8px, 0); }
      50%      { transform: translate(8px, -6px); }
    }
    @keyframes collageFloatC {
      0%, 100% { transform: translate(-10px, -6px); }
      50%      { transform: translate(-10px, 2px); }
    }
    @keyframes bgDrift {
      0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .6; }
      50%      { transform: translate3d(0,12px,0) scale(1.04); opacity: .9; }
    }

    /* Hero entry stagger */
    .hero h1,
    .hero-sub,
    .hero-actions,
    .hero-meta,
    .hero-collage > figure {
      opacity: 0;
      animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) forwards;
    }
    .hero h1           { animation-delay: .05s; }
    .hero-sub          { animation-delay: .20s; }
    .hero-actions      { animation-delay: .32s; }
    .hero-meta         { animation-delay: .44s; }
    .hero-collage > figure:nth-child(1) { animation-delay: .25s; }
    .hero-collage > figure:nth-child(2) { animation-delay: .40s; }
    .hero-collage > figure:nth-child(3) { animation-delay: .55s; }

    /* Shimmer en el texto naranja del hero */
    .hero h1 em {
      background-image: linear-gradient(
        100deg,
        var(--orange) 0%,
        var(--orange) 38%,
        #ffb27a 50%,
        var(--orange) 62%,
        var(--orange) 100%
      );
      background-size: 260% 100%;
      background-position: -160% 0;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: heroShimmer 3.8s ease-in-out 1.2s infinite;
    }

    /* Halo radial animado detras del hero */
    .hero::before { animation: bgDrift 14s ease-in-out infinite; }

    /* Float sutil del collage tras la entrada */
    .hero-collage .tall                 { animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) .25s forwards,
                                          collageFloatA 7s ease-in-out 1.4s infinite; }
    .hero-collage figure:nth-child(2)   { animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) .40s forwards,
                                          collageFloatB 8s ease-in-out 1.7s infinite; }
    .hero-collage figure:nth-child(3)   { animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) .55s forwards,
                                          collageFloatC 9s ease-in-out 2s infinite; }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
      will-change: opacity, transform;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .reveal[data-delay="1"].is-visible { transition-delay: .08s; }
    .reveal[data-delay="2"].is-visible { transition-delay: .16s; }
    .reveal[data-delay="3"].is-visible { transition-delay: .24s; }
    .reveal[data-delay="4"].is-visible { transition-delay: .32s; }

    /* Zoom lento on hover en imagenes de tarjetas */
    .step-img img,
    .material-card img,
    .mercado-img img {
      transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .4s ease;
    }
    .step:hover .step-img img,
    .material-card:hover img {
      transform: scale(1.05);
      filter: saturate(1.08) contrast(1.03);
    }
    .mercado:hover .mercado-img img { transform: scale(1.03); opacity: 1; }

    /* Tarjetas surface: levitan al enfocar */
    .surface {
      transition: transform .24s ease, border-color .24s ease;
    }
    .surface:hover {
      transform: translateY(-3px);
      border-color: rgba(255,79,0,.55);
    }

    /* Cap numbers pulse on reveal */
    .cap h4 span {
      background: linear-gradient(100deg, var(--orange), var(--blue) 50%, var(--orange));
      background-size: 220% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: heroShimmer 5s ease-in-out infinite;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-collage .tall img { aspect-ratio: 4 / 3; }
      .hero-collage .tall { grid-row: auto; }
      .strip-inner { grid-template-columns: 1fr; }
      .mercado { grid-template-columns: 1fr; }
      .mercado-img { min-height: 340px; }
      .surfaces { grid-template-columns: repeat(2, 1fr); }
      .caps { grid-template-columns: repeat(2, 1fr); }
      .ops-grid { grid-template-columns: repeat(2, 1fr); }
      .materials { grid-template-columns: repeat(3, 1fr); }
      .rules-grid { grid-template-columns: 1fr; }
      .cta-cards.cta-cards--three { grid-template-columns: repeat(2, 1fr); }
      .foot-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    }
    @media (max-width: 720px) {
      .section { padding: 64px 0; }
      .hero { padding: 46px 0 18px; }
      .steps { grid-template-columns: 1fr; }
      .surfaces { grid-template-columns: 1fr; }
      .materials { grid-template-columns: repeat(2, 1fr); }
      .caps { grid-template-columns: 1fr; }
      .ops-grid { grid-template-columns: 1fr; }
      .mercado {
        padding: 22px;
        border-radius: 22px;
      }
      .mercado-copy { padding: 0; }
      .mercado-copy h2 { font-size: 2.25rem; }
      .mercado-copy p { font-size: 1rem; }
      .mercado-flow { grid-template-columns: 1fr; }
      .mercado-img {
        min-height: 280px;
        border-radius: 18px;
      }
      .mercado-panel {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 16px;
      }
      .mercado-panel dl { grid-template-columns: 1fr; }
      .cta { padding: 64px 20px; }
      .cta-cards { grid-template-columns: 1fr; }
      .cta-cards.cta-cards--three { grid-template-columns: 1fr; }
      .foot-inner { grid-template-columns: 1fr; gap: 28px; }
      .foot-bot { justify-content: center; text-align: center; }
      .hero-collage::before { width: 64%; height: 40%; top: -14px; right: -10px; }
      .hero-collage::after { width: 140px; height: 140px; left: -18px; bottom: -18px; }
      .hero-collage .tall,
      .hero-collage figure:nth-child(2),
      .hero-collage figure:nth-child(3) {
        transform: none;
        animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) forwards;
      }
      .hero-collage .tall               { animation-delay: .25s; }
      .hero-collage figure:nth-child(2) { animation-delay: .40s; }
      .hero-collage figure:nth-child(3) { animation-delay: .55s; }
      .strip-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .nav-links, .nav-login { display: none; }
      .nav-toggle { display: inline-block; }
      .wrap { padding: 0 18px; }
      .hero-meta { font-size: 12px; gap: 10px 18px; }
      .surface ul { grid-template-columns: 1fr; }
      .strip-shell { padding: 0 18px; }
      .strip-inner { padding: 20px 18px; gap: 18px; }
      .strip-list { grid-template-columns: 1fr; }
      .scroll-top {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
      }
    }
    @media (max-width: 380px) {
      .hero h1 { font-size: 32px; letter-spacing: -1px; }
      .btn { padding: 11px 18px; font-size: 14px; }
      .page-recuperadores .hero-actions .btn { width: 100%; justify-content: center; }
      .materials { grid-template-columns: 1fr 1fr; gap: 8px; }
    }

    /* Circularix public landing hybrid.
       Public pages must not inherit the internal app light/dark theme tokens. */
    body.page-home,
    body.page-recuperadores,
    body.page-centros,
    body.page-empresas {
      --cx-canvas:  #0B0F14;
      --cx-deep:    #070A0E;
      --cx-surface: #11161D;
      --cx-surface-2: #161C25;
      --cx-surface-3: #1C2330;
      --cx-border: rgba(255,255,255,0.07);
      --cx-border-strong: rgba(141,211,79,0.24);
      --cx-text: #F2F6FA;
      --cx-text-soft: #C5CED8;
      --cx-muted: #7A8593;
      --cx-green: #8CD34F;
      --cx-blue: #00AEEF;
      --cx-grad: linear-gradient(90deg,#8CD34F 0%,#00AEEF 100%);
      background:
        radial-gradient(circle at 82% 12%, rgba(0,174,239,.12), transparent 34rem),
        radial-gradient(circle at 8% 28%, rgba(141,211,79,.10), transparent 30rem),
        var(--cx-canvas);
      color: var(--cx-text);
      overflow-x: hidden;
    }
    .page-home .hero,
    .page-home .marquee,
    .page-home .ciclo,
    .page-home .section,
    .page-home .stats-band,
    .page-home .cta,
    .page-home .foot {
      max-width: 100%;
      overflow-x: hidden;
    }
    .section {
      background: var(--cx-canvas);
    }
    .section--off-white {
      background: var(--cx-surface);
    }
    .wrap {
      max-width: var(--max);
      padding: 0 32px;
    }
    .page-home .wrap,
    .page-home .hero-grid,
    .page-home .hero-collage,
    .page-home .ciclo-inner,
    .page-home .ciclo-left,
    .page-home .ciclo-right,
    .page-home .control-grid,
    .page-home .control-features,
    .page-home .roles-head,
    .page-home .surfaces,
    .page-home .stats-grid,
    .page-home .cta-cards {
      min-width: 0;
      max-width: 100%;
    }
    .eyebrow,
    .section-num {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font: 700 12px var(--font-ui);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cx-green);
    }
    .section-num::before {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--cx-grad);
    }
    .section-title,
    .sec-title {
      margin: 16px 0 0;
      max-width: 760px;
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: 4rem;
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .section-sub,
    .sec-lead {
      max-width: 660px;
      margin: 18px 0 0;
      color: var(--cx-text-soft);
      font-size: 1.125rem;
      line-height: 1.6;
    }
    .gradtxt {
      background: var(--cx-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }
    .btn {
      border-radius: 10px;
      transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .btn-primary {
      background: var(--cx-grad);
      color: var(--cx-canvas);
      border-color: transparent;
      box-shadow: 0 12px 34px rgba(0,174,239,.18);
    }
    .btn-primary:hover {
      color: var(--cx-canvas);
      opacity: 1;
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(0,174,239,.24);
    }
    .btn-dark {
      background: rgba(255,255,255,.03);
      color: var(--cx-text);
      border-color: var(--cx-border);
    }
    .btn-dark:hover {
      background: var(--cx-surface-2);
      color: var(--cx-text);
      border-color: var(--cx-border-strong);
    }
    .nav {
      background: rgba(11,15,20,.78);
      border-bottom-color: var(--cx-border);
      backdrop-filter: blur(20px) saturate(140%);
    }
    .nav-inner {
      min-height: 68px;
      padding: 14px 32px;
    }
    .brand {
      min-width: 0;
    }
    .brand .brand-mark {
      width: auto;
      height: 38px;
      max-width: 174px;
      border-radius: 0;
      object-fit: contain;
    }
    .nav-links a,
    .nav-dropdown-trigger,
    .nav-login {
      color: var(--cx-text-soft);
      border-radius: 8px;
    }
    .nav-links a:hover,
    .nav-login:hover,
    .nav-dropdown-trigger:hover,
    .nav-item-dropdown.is-open .nav-dropdown-trigger {
      background: var(--cx-surface-2);
      color: var(--cx-text);
    }
    .nav-dropdown-panel {
      background: rgba(17,22,29,.96);
      border-color: var(--cx-border);
      box-shadow: 0 24px 80px rgba(0,0,0,.34);
    }
    .nav-dropdown-panel a {
      color: var(--cx-text-soft);
    }
    .nav-dropdown-panel a:hover,
    .nav-links a.is-active,
    .nav-dropdown-panel a.is-active,
    .nav-mobile a.is-active {
      background: var(--cx-surface-2);
      color: var(--cx-text);
    }
    .nav-toggle {
      border-color: var(--cx-border);
      background: rgba(255,255,255,.03);
    }
    .nav-toggle span {
      background: var(--cx-text);
    }
    .nav-mobile {
      background: rgba(11,15,20,.98);
      border-top-color: var(--cx-border);
    }
    .nav-mobile a {
      color: var(--cx-text-soft);
      border-bottom-color: var(--cx-border);
    }

    .hero {
      min-height: 0;
      padding: 84px 0 64px;
      background:
        radial-gradient(circle at 78% 18%, rgba(0,174,239,.24), transparent 34rem),
        radial-gradient(circle at 52% 42%, rgba(141,211,79,.18), transparent 30rem),
        linear-gradient(90deg, rgba(11,15,20,.98) 0%, rgba(11,15,20,.90) 48%, rgba(11,15,20,.76) 100%),
        var(--cx-canvas);
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      inset: -18% -10% auto auto;
      width: 760px;
      height: 760px;
      background:
        radial-gradient(circle, rgba(0,174,239,.20) 0%, transparent 52%),
        radial-gradient(circle at 56% 62%, rgba(141,211,79,.18) 0%, transparent 60%);
      border-radius: 50%;
      filter: blur(52px);
      opacity: .94;
      z-index: 0;
    }
    .hero::after {
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 82px 82px, 82px 82px;
      background-position: center;
      opacity: .30;
      mix-blend-mode: screen;
      mask-image: radial-gradient(ellipse 78% 66% at 52% 38%, black 24%, transparent 80%);
      transform: translate3d(var(--px, 0), var(--py, 0), 0);
      z-index: 0;
    }
    .hero .wrap {
      position: relative;
      z-index: 2;
    }
    .hero-grid {
      grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
      gap: 72px;
      min-height: 520px;
    }
    .hero-grid > * {
      min-width: 0;
    }
    .hero-iso {
      position: absolute;
      right: -190px;
      top: 50%;
      z-index: 1;
      width: 920px;
      max-width: 62vw;
      transform: translateY(-50%);
      opacity: .07;
      pointer-events: none;
    }
    .hero-iso img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 44px rgba(0,174,239,.28));
    }
    .hero h1 {
      max-width: 11ch;
      margin-bottom: 28px;
      color: var(--cx-text);
      font-size: 5rem;
      font-weight: 800;
      line-height: .96;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .hero h1 em {
      background: var(--cx-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-style: normal;
    }
    .hero-sub {
      max-width: 600px;
      margin-bottom: 32px;
      color: var(--cx-text-soft);
      font-size: 1.125rem;
      line-height: 1.6;
    }
    .hero-actions {
      gap: 14px;
      margin-bottom: 26px;
    }
    .hero-meta {
      max-width: 660px;
      color: var(--cx-text-soft);
      font-size: .825rem;
      gap: 12px 22px;
    }
    .hero-meta span::before {
      background: var(--cx-grad);
      box-shadow: 0 0 14px rgba(141,211,79,.42);
    }
    .hero-collage {
      align-self: center;
      gap: 16px;
      transform: translateZ(0);
      min-width: 0;
      max-width: 100%;
    }
    .hero-collage::before {
      top: -30px;
      right: -24px;
      width: 62%;
      height: 48%;
      border-color: var(--cx-border-strong);
      border-radius: 28px;
      background: rgba(141,211,79,.05);
      backdrop-filter: blur(18px);
    }
    .hero-collage::after {
      left: -44px;
      bottom: -38px;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(0,174,239,.26), transparent 70%);
    }
    .hero-collage figure {
      border-color: rgba(255,255,255,.14);
      border-radius: 22px;
      background: rgba(17,22,29,.78);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 80px rgba(0,0,0,.32);
      min-width: 0;
      max-width: 100%;
    }
    .hero-collage figure::after {
      border-color: rgba(255,255,255,.12);
      border-radius: 16px;
    }
    .hero-collage figure:hover {
      border-color: var(--cx-border-strong);
    }
    .hero-collage img {
      filter: saturate(1.05) contrast(1.03) brightness(.9);
    }
    .hero-collage .tall img {
      object-position: 36% center;
    }

    .marquee {
      position: relative;
      overflow: hidden;
      padding: 26px 0;
      background: var(--cx-deep);
      border-top: 1px solid var(--cx-border);
      border-bottom: 1px solid var(--cx-border);
      mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .marquee-track {
      display: flex;
      gap: clamp(28px, 4vw, 56px);
      width: max-content;
      white-space: nowrap;
      animation: scroll 34s linear infinite;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: clamp(24px, 3vw, 38px);
      color: var(--cx-text-soft);
      font-family: var(--font-hero);
      font-size: clamp(1.6rem, 2.45vw, 2.15rem);
      font-weight: 800;
      line-height: 1;
    }
    .marquee-item .accent {
      background: var(--cx-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .marquee-item .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cx-green);
      box-shadow: 0 0 16px rgba(141,211,79,.65);
    }
    .marquee-item img {
      width: auto;
      height: 28px;
      opacity: .72;
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-33.333%); }
    }

    .ciclo {
      position: relative;
      overflow: hidden;
      padding: 120px 0;
      background: var(--cx-canvas);
      isolation: isolate;
      scroll-margin-top: 76px;
    }
    .ciclo::before,
    .ciclo::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: -1;
    }
    .ciclo::before {
      top: -12%;
      right: -16%;
      width: 900px;
      height: 900px;
      background:
        radial-gradient(circle, rgba(0,174,239,.10) 0%, transparent 55%),
        radial-gradient(circle at 60% 60%, rgba(141,211,79,.08) 0%, transparent 60%);
      filter: blur(40px);
    }
    .ciclo::after {
      left: -12%;
      bottom: -22%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(141,211,79,.08), transparent 60%);
      filter: blur(40px);
    }
    .ciclo-inner {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .ciclo-left .wordmark {
      width: auto;
      height: 80px;
      max-width: min(100%, 440px);
      margin: 0 0 24px;
      object-fit: contain;
      object-position: left center;
    }
    .ciclo-left h2 {
      max-width: 660px;
      margin: 0 0 24px;
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: clamp(2rem, 3.4vw, 3rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: 0;
      text-wrap: balance;
    }
    .ciclo-left h2 .h2-line {
      display: block;
    }
    .ciclo-left h2::after {
      content: "";
      display: block;
      width: 132px;
      height: 3px;
      margin-top: 24px;
      border-radius: 999px;
      background: var(--cx-grad);
    }
    .ciclo-left .lead {
      max-width: 520px;
      margin: 0 0 40px;
      color: var(--cx-text-soft);
      font-size: 1rem;
      line-height: 1.6;
    }
    .ciclo-attrs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .ciclo-attr {
      display: flex;
      min-width: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .ciclo-attr .ic {
      position: relative;
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      overflow: hidden;
      border: 1px solid var(--cx-border-strong);
      border-radius: 12px;
      background: var(--cx-surface-2);
      color: var(--cx-green);
      font-size: 1.15rem;
    }
    .ciclo-attr .ic::after {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--cx-grad);
      opacity: .08;
      pointer-events: none;
    }
    .ciclo-attr .ic.blue {
      color: var(--cx-blue);
    }
    .ciclo-attr .nm {
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: .96rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0;
    }
    .ciclo-attr .desc {
      color: var(--cx-muted);
      font-size: .78rem;
      line-height: 1.4;
    }
    .ciclo-right {
      position: relative;
      width: 100%;
      max-width: 660px;
      aspect-ratio: 13 / 12;
      margin: 0 auto;
    }
    .ciclo-svg {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .ciclo-center {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      display: grid;
      width: 22%;
      aspect-ratio: 1;
      place-items: center;
      transform: translate(-50%, -50%);
    }
    .ciclo-center img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 0 28px rgba(0,174,239,.32));
    }
    .step-circle {
      position: absolute;
      z-index: 3;
      display: grid;
      width: 96px;
      height: 96px;
      place-items: center;
      border: 2px solid rgba(141,211,79,.45);
      border-radius: 50%;
      background: var(--cx-surface);
      color: var(--cx-green);
      font-size: 1.9rem;
      box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 0 6px var(--cx-canvas);
      transform: translate(-50%, -50%);
    }
    .step-circle.blue {
      border-color: rgba(0,174,239,.50);
      color: var(--cx-blue);
    }
    .step-info {
      position: absolute;
      z-index: 2;
      max-width: 170px;
    }
    .step-tag {
      margin-bottom: 6px;
      color: var(--cx-green);
      font-family: var(--font-hero);
      font-size: 1.08rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 0;
    }
    .step-tag.blue {
      color: var(--cx-blue);
    }
    .step-desc {
      color: var(--cx-text-soft);
      font-size: .82rem;
      line-height: 1.45;
    }
    .s1 .step-circle { top: 25%; left: 50%; }
    .s2 .step-circle { top: 42.3%; left: 72%; }
    .s3 .step-circle { top: 70.2%; left: 63.5%; }
    .s4 .step-circle { top: 70.2%; left: 36.5%; }
    .s5 .step-circle { top: 42.3%; left: 28%; }
    .s1 .step-info {
      top: 25%;
      left: 60%;
      max-width: 220px;
      text-align: left;
      transform: translateY(-50%);
    }
    .s2 .step-info {
      top: 42.3%;
      left: 80%;
      max-width: 20%;
      text-align: left;
      transform: translateY(-50%);
    }
    .s3 .step-info {
      top: 70.2%;
      left: 71.5%;
      max-width: 25%;
      text-align: left;
      transform: translateY(-50%);
    }
    .s4 .step-info {
      top: 70.2%;
      right: 71.5%;
      max-width: 25%;
      text-align: right;
      transform: translateY(-50%);
    }
    .s5 .step-info {
      top: 42.3%;
      right: 80%;
      max-width: 20%;
      text-align: right;
      transform: translateY(-50%);
    }

    .control-section {
      background: var(--cx-surface);
      border-top: 1px solid var(--cx-border);
      border-bottom: 1px solid var(--cx-border);
    }
    .control-grid {
      display: grid;
      grid-template-columns: minmax(280px, .86fr) minmax(0, 1.44fr);
      gap: 88px;
      align-items: start;
    }
    .control-lead {
      position: sticky;
      top: 108px;
    }
    .control-stat {
      display: grid;
      gap: 8px;
      margin-top: 44px;
      padding: 28px;
      border: 1px solid var(--cx-border);
      border-radius: 20px;
      background: var(--cx-canvas);
      overflow: hidden;
      position: relative;
      min-width: 0;
      max-width: 100%;
    }
    .control-stat::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 2px;
      background: var(--cx-grad);
    }
    .control-stat strong {
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: clamp(3rem, 3.6vw, 3.6rem);
      line-height: 1;
      max-width: 100%;
      overflow-wrap: break-word;
      text-wrap: balance;
    }
    .control-stat span {
      color: var(--cx-text-soft);
      font-size: .925rem;
      line-height: 1.55;
    }
    .control-features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .feat {
      min-height: 178px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 28px;
      border: 1px solid var(--cx-border);
      border-radius: 20px;
      background: var(--cx-canvas);
      overflow: hidden;
      position: relative;
      transition: transform .24s ease, background .24s ease, border-color .24s ease;
      min-width: 0;
      max-width: 100%;
    }
    .feat::after {
      content: "";
      position: absolute;
      inset: auto auto 0 0;
      width: 0;
      height: 2px;
      background: var(--cx-grad);
      transition: width .36s ease;
    }
    .feat:hover {
      transform: translateY(-4px);
      background: var(--cx-surface-2);
      border-color: var(--cx-border-strong);
    }
    .feat:hover::after {
      width: 100%;
    }
    .feat-num {
      color: var(--cx-muted);
      font: 700 .72rem "JetBrains Mono", ui-monospace, monospace;
      letter-spacing: .14em;
    }
    .feat h3 {
      margin: 0;
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: 1.35rem;
      line-height: 1.14;
      max-width: 100%;
      overflow-wrap: break-word;
      text-wrap: balance;
    }
    .feat p {
      margin: 0;
      color: var(--cx-muted);
      font-size: .925rem;
      line-height: 1.55;
    }

    .roles-section {
      background: var(--cx-canvas);
    }
    .roles-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 48px;
      align-items: end;
      margin-bottom: 58px;
    }
    .surfaces--roles .surface {
      min-height: 440px;
      border-radius: 24px;
      padding: 34px;
      background: var(--cx-surface);
      border-color: var(--cx-border);
      position: relative;
      overflow: hidden;
    }
    .surfaces--roles .surface::before {
      content: "";
      position: absolute;
      top: 0;
      left: 32px;
      right: 32px;
      height: 2px;
      background: var(--cx-grad);
    }
    .surface {
      background: var(--cx-surface);
      border-color: var(--cx-border);
    }
    .surface-role {
      color: var(--cx-green);
    }
    .surface h3,
    .surface li,
    .surface-path,
    .ops-card h3,
    .rule-card h3,
    .cap h4 {
      color: var(--cx-text);
      overflow-wrap: break-word;
      text-wrap: balance;
    }
    .surface p,
    .ops-card p,
    .rule-card p,
    .cap p {
      color: var(--cx-text-soft);
    }
    .surface li::before {
      background: var(--cx-grad);
    }
    .surface-path {
      border-top-color: var(--cx-border);
      color: var(--cx-muted);
    }
    .step,
    .material-card,
    .ops-card,
    .rule-card,
    .cap,
    .strip-inner,
    .strip-item,
    .cta-card {
      background: var(--cx-surface);
      border-color: var(--cx-border);
    }
    .step-img,
    .material-card figure {
      background: var(--cx-surface-2);
    }
    .step h3,
    .strip-title,
    .strip-item strong,
    .material-card figcaption strong,
    .cta-card h3 {
      color: var(--cx-text);
      overflow-wrap: break-word;
      text-wrap: balance;
    }
    .step p,
    .strip-copy,
    .strip-item small,
    .material-card figcaption,
    .cta-card p {
      color: var(--cx-text-soft);
    }
    .step-num {
      background: rgba(141,211,79,.12);
      color: var(--cx-green);
    }

    .stats-band {
      padding: 76px 0;
      background: var(--cx-deep);
      border-top: 1px solid var(--cx-border);
      border-bottom: 1px solid var(--cx-border);
      position: relative;
      overflow: hidden;
    }
    .stats-band::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(141,211,79,.10), transparent 62%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      border: 1px solid var(--cx-border);
      border-radius: 24px;
      background: var(--cx-border);
      overflow: hidden;
      position: relative;
      min-width: 0;
    }
    .stat {
      display: grid;
      gap: 12px;
      min-height: 170px;
      padding: 30px 28px;
      background: var(--cx-deep);
      min-width: 0;
    }
    .stat strong {
      background: var(--cx-grad);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-family: var(--font-hero);
      font-size: clamp(3rem, 3.4vw, 3.4rem);
      line-height: 1;
      max-width: 100%;
      overflow-wrap: break-word;
      text-wrap: balance;
    }
    .stat strong.stat-word {
      font-size: clamp(2.15rem, 2.8vw, 2.85rem);
      line-height: .98;
    }
    .stat span {
      color: var(--cx-text-soft);
      font-size: .925rem;
      line-height: 1.5;
    }

    .selector-section,
    .cta {
      background:
        radial-gradient(circle at 20% 8%, rgba(141,211,79,.12), transparent 32rem),
        radial-gradient(circle at 86% 68%, rgba(0,174,239,.13), transparent 34rem),
        var(--cx-surface);
      border-top: 1px solid var(--cx-border);
      border-bottom: 1px solid var(--cx-border);
    }
    .cta h2 {
      color: var(--cx-text);
      letter-spacing: 0;
    }
    .cta p,
    .cta .cta-login {
      color: var(--cx-text-soft);
    }
    .cta-cards.cta-cards--three {
      max-width: 1120px;
    }
    .cta-card {
      border-radius: 20px;
      padding: 30px;
      background: var(--cx-canvas);
      border-color: var(--cx-border);
      min-width: 0;
    }
    .cta-card .btn {
      max-width: 100%;
      white-space: normal;
      text-align: center;
    }
    .cta-card:hover {
      border-color: var(--cx-border-strong);
      transform: translateY(-4px);
      background: var(--cx-surface-2);
    }
    .cta .cta-login a,
    .cross-links a {
      color: var(--cx-green);
    }

    .foot {
      background: var(--cx-deep);
      border-top: 1px solid var(--cx-border);
      padding-top: 72px;
      position: relative;
      overflow: hidden;
    }
    .foot::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: 220px;
      height: 2px;
      background: var(--cx-grad);
      transform: translateX(-50%);
      box-shadow: 0 0 40px rgba(0,174,239,.45);
    }
    .foot-inner {
      border-bottom-color: var(--cx-border);
    }
    .foot-brand .brand .brand-mark {
      width: auto;
      height: 52px;
      max-width: 230px;
    }
    .foot-tag,
    .foot-text,
    .foot-bot {
      color: var(--cx-muted);
    }
    .foot-col h5,
    .foot-title {
      color: var(--cx-green);
    }
    .foot-col a {
      color: var(--cx-text-soft);
    }
    .foot-col a:hover,
    .foot-col a.is-active {
      color: var(--cx-text);
    }

    .scroll-top {
      background: rgba(17,22,29,.88);
      color: var(--cx-text);
      border-color: var(--cx-border);
    }
    .scroll-top:hover {
      background: var(--cx-grad);
      color: var(--cx-canvas);
      border-color: transparent;
    }
    .cursor-dot {
      background: var(--cx-green);
      box-shadow: 0 0 16px rgba(141,211,79,.72);
    }
    .cursor-ring {
      border-color: rgba(0,174,239,.48);
      background: rgba(0,174,239,.05);
    }
    .cursor-ring.is-hover {
      border-color: var(--cx-green);
      background: rgba(141,211,79,.10);
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .ciclo-inner,
      .control-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero {
        min-height: auto;
      }
      .hero h1 {
        max-width: 13ch;
        font-size: 4.4rem;
      }
      .hero-iso {
        width: 620px;
        opacity: .05;
      }
      .control-lead {
        position: static;
      }
      .ciclo {
        padding: 88px 0;
      }
      .ciclo-right {
        max-width: 600px;
      }
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 760px) {
      .wrap,
      .nav-inner {
        padding-left: 20px;
        padding-right: 20px;
      }
      .brand .brand-mark {
        height: 34px;
        max-width: 148px;
      }
      .nav-actions .btn-compact {
        display: none;
      }
      .hero {
        padding: 58px 0 44px;
      }
      .hero h1 {
        max-width: 100%;
        font-size: 2.75rem;
      }
      .hero-sub {
        max-width: 100%;
        font-size: 1rem;
      }
      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-collage {
        grid-template-columns: 1fr;
      }
      .hero-collage .tall img,
      .hero-collage img {
        aspect-ratio: 16 / 10;
      }
      .hero-collage .tall img {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        object-position: left center;
      }
      .hero-collage figure:nth-child(2),
      .hero-collage figure:nth-child(3) {
        transform: none;
      }
      .control-stat {
        padding: 24px;
      }
      .section-title,
      .sec-title {
        font-size: 2.4rem;
      }
      .ciclo-left .wordmark {
        height: 60px;
      }
      .ciclo-left h2 {
        max-width: 620px;
      }
      .ciclo-attrs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 16px;
      }
      .ciclo-right {
        display: flex;
        max-width: 520px;
        aspect-ratio: auto;
        flex-direction: column;
        gap: 18px;
        padding-left: 6px;
        position: relative;
      }
      .ciclo-right::before {
        content: "";
        position: absolute;
        top: 42px;
        bottom: 42px;
        left: 46px;
        z-index: 0;
        width: 2px;
        background: linear-gradient(180deg, #8CD34F 0%, #00AEEF 100%);
        opacity: .35;
      }
      .ciclo-svg,
      .ciclo-center {
        display: none;
      }
      .ciclo-step {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .step-circle {
        position: static;
        flex-shrink: 0;
        width: 76px;
        height: 76px;
        font-size: 1.62rem;
        box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 0 5px var(--cx-canvas);
        transform: none;
      }
      .ciclo-step .step-info {
        position: static;
        width: min(100%, calc(100% - 92px));
        max-width: none;
        text-align: left !important;
        transform: none !important;
      }
      .step-tag {
        font-size: 1rem;
      }
      .step-desc {
        max-width: none;
        font-size: .82rem;
      }
      .control-features,
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .marquee-item {
        gap: 28px;
        font-size: 1.7rem;
      }
      .stat {
        min-height: 0;
      }
      .roles-head {
        grid-template-columns: 1fr;
      }
      .surfaces--roles .surface {
        min-height: 0;
      }
    }
    @media (max-width: 420px) {
      .hero h1 {
        font-size: 2.3rem;
      }
      .section-title,
      .sec-title {
        font-size: 2rem;
      }
      .control-stat strong,
      .stat strong {
        font-size: 2.8rem;
      }
      .ciclo {
        padding: 72px 0;
      }
      .ciclo-left .wordmark {
        height: 52px;
      }
      .ciclo-left h2 {
        font-size: 2rem;
      }
      .ciclo-left h2 .h2-line {
        display: inline;
      }
      .ciclo-left .lead {
        font-size: .96rem;
      }
      .ciclo-attrs {
        grid-template-columns: 1fr 1fr;
      }
      .step-circle {
        width: 68px;
        height: 68px;
      }
      .ciclo-right::before {
        left: 41px;
      }
    }

    .page-home .ciclo {
      min-height: calc(100svh - 64px);
      display: flex;
      align-items: center;
      padding: clamp(72px, 7vw, 118px) 0;
      border-bottom: 1px solid var(--cx-border);
    }
    .page-home .ciclo-left .lead {
      margin-bottom: 24px;
    }
    .page-home .ciclo-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0 0 36px;
    }
    .page-home .ciclo-actions .btn {
      min-height: 52px;
    }
    .page-home .hero--home {
      min-height: auto;
      padding: clamp(68px, 7vw, 108px) 0;
      border-top: 1px solid var(--cx-border);
      border-bottom: 1px solid var(--cx-border);
      background:
        linear-gradient(90deg, rgba(141,211,79,.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0,174,239,.08) 1px, transparent 1px),
        radial-gradient(circle at 74% 18%, rgba(0,174,239,.13), transparent 34rem),
        var(--cx-surface);
      background-size: 52px 52px, 52px 52px, auto, auto;
    }
    .page-home .hero--home::before {
      opacity: .44;
      background: linear-gradient(135deg, rgba(141,211,79,.15), rgba(0,174,239,.07) 46%, transparent 72%);
    }
    .page-home .hero--home::after {
      opacity: .12;
      filter: saturate(1.25);
    }
    .page-home .hero-grid--system {
      grid-template-columns: minmax(0, .92fr) minmax(380px, .78fr);
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
    }
    .page-home .hero-copy {
      max-width: 720px;
    }
    .page-home .hero-copy h1 {
      max-width: 760px;
    }
    .page-home .hero-sub {
      max-width: 620px;
    }
    .page-home .hero-system-board {
      position: relative;
      display: grid;
      gap: 16px;
      min-width: 0;
      padding: clamp(20px, 2.4vw, 30px);
      border: 1px solid var(--cx-border-strong);
      border-radius: 28px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        var(--cx-canvas);
      box-shadow: 0 28px 80px rgba(0,0,0,.32);
      overflow: hidden;
      opacity: 0;
      animation: heroFadeUp .9s cubic-bezier(.2,.7,.2,1) .24s forwards;
    }
    .page-home .hero-system-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 23%, rgba(141,211,79,.18) 23% 23.35%, transparent 23.35% 52%, rgba(0,174,239,.18) 52% 52.35%, transparent 52.35%),
        linear-gradient(180deg, transparent 0 28%, rgba(255,255,255,.07) 28% 28.35%, transparent 28.35% 68%, rgba(255,255,255,.07) 68% 68.35%, transparent 68.35%);
      opacity: .5;
      pointer-events: none;
    }
    .page-home .hero-system-board > * {
      position: relative;
      z-index: 1;
    }
    .hero-system-board__top {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--cx-border);
    }
    .hero-system-board__top span {
      color: var(--cx-green);
      font: 800 .72rem "JetBrains Mono", ui-monospace, monospace;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .hero-system-board__top strong {
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: clamp(1.4rem, 2vw, 1.95rem);
      line-height: 1;
      text-align: right;
      text-wrap: balance;
    }
    .hero-flow {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
      min-width: 0;
    }
    .hero-flow span {
      min-height: 78px;
      display: grid;
      place-items: center;
      gap: 8px;
      padding: 12px 8px;
      border: 1px solid var(--cx-border);
      border-radius: 16px;
      background: rgba(255,255,255,.035);
      color: var(--cx-text-soft);
      font: 800 .73rem var(--font-ui);
      text-align: center;
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }
    .hero-flow span:hover {
      border-color: var(--cx-border-strong);
      background: rgba(141,211,79,.08);
      color: var(--cx-text);
    }
    .hero-flow i {
      color: var(--cx-green);
      font-size: 1.3rem;
    }
    .hero-system-grid {
      display: grid;
      gap: 10px;
      min-width: 0;
    }
    .hero-system-grid article {
      min-width: 0;
      padding: 16px;
      border: 1px solid var(--cx-border);
      border-radius: 18px;
      background: rgba(7,10,14,.42);
    }
    .hero-system-grid span {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--cx-blue);
      font: 800 .72rem "JetBrains Mono", ui-monospace, monospace;
    }
    .hero-system-grid strong {
      display: block;
      margin-bottom: 4px;
      color: var(--cx-text);
      font-family: var(--font-hero);
      font-size: 1.06rem;
      line-height: 1.1;
    }
    .hero-system-grid p {
      margin: 0;
      color: var(--cx-muted);
      font-size: .86rem;
      line-height: 1.45;
    }
    @media (max-width: 1120px) {
      .page-home .ciclo {
        min-height: auto;
      }
      .page-home .hero-grid--system {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 760px) {
      .page-home .ciclo-actions .btn {
        width: 100%;
        justify-content: center;
      }
      .page-home .hero-system-board {
        border-radius: 22px;
      }
      .hero-system-board__top {
        display: grid;
      }
      .hero-system-board__top strong {
        text-align: left;
      }
      .hero-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .hero-flow span:last-child {
        grid-column: 1 / -1;
      }
    }
    @media (max-width: 420px) {
      .page-home .hero-system-board {
        padding: 18px;
      }
      .hero-flow {
        grid-template-columns: 1fr;
      }
      .hero-flow span:last-child {
        grid-column: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
      }
      .btn:hover { transform: none; }
      .hero h1, .hero-sub, .hero-actions, .hero-meta,
      .hero-collage > figure, .hero-system-board, .reveal { opacity: 1 !important; transform: none !important; }
      .hero h1 em { color: var(--orange); -webkit-text-fill-color: var(--orange); }
      .cap h4 span { color: var(--orange); -webkit-text-fill-color: var(--orange); }
      .cursor-dot, .cursor-ring { display: none !important; }
    }
