    :root{
      --line:rgba(255,255,255,.105);
      --line-soft:rgba(255,255,255,.065);
      --text:#f2f0ea;
      --muted:#b9b3aa;
      --dim:#827d76;
      --gold:#c9a76a;
      --gold-soft:rgba(201,167,106,.16);
      --max:1320px;
      --site-max:1440px;
      --site-side:clamp(20px,3.3vw,58px);
      --ease:cubic-bezier(.2,.8,.2,1);
      --top:84px;
      --context:38px;
      --subnav:52px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      height:100vh;
      overflow:hidden;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.075) 1px, transparent 0) 0 0/20px 20px,
        linear-gradient(180deg,#17181a 0%, #131416 100%);
    }
    a{color:inherit;text-decoration:none}
    button{font:inherit;color:inherit}
    main{height:calc(100vh - var(--top));overflow:hidden;margin-top:var(--top)}

    .site-header{
      position:fixed;
      z-index:1000;
      inset:0 0 auto;
      height:var(--top);
      display:flex;
      align-items:center;
      background:rgba(25,26,28,.92);
      -webkit-backdrop-filter:blur(4px) saturate(1.04);
      backdrop-filter:blur(4px) saturate(1.04);
      border-bottom:1px solid var(--line-soft);
    }
    .site-header::after{
      content:"";
      position:absolute;
      z-index:-1;
      left:0;
      right:0;
      top:100%;
      height:22px;
      pointer-events:none;
      background:linear-gradient(180deg,rgba(25,26,28,.42),rgba(25,26,28,.14) 52%,rgba(25,26,28,0));
    }
    .header-inner{
      width:min(calc(100% - 2*var(--site-side)),var(--site-max));
      margin:auto;
      display:grid;
      grid-template-columns:160px minmax(0,1fr) auto;
      align-items:center;
      gap:24px;
    }
    .brand{width:92px;display:inline-flex;align-items:center}
    .brand img{width:100%;height:auto;display:block}
    .main-nav{display:flex;justify-content:center;gap:clamp(22px,3vw,54px)}
    .main-nav a,
    .module-return,
    .home-link,
    .lang-btn{
      position:relative;
      padding:9px 0;
      border:0;
      background:none;
      font-size:9px;
      letter-spacing:.17em;
      text-transform:uppercase;
      color:rgba(255,255,255,.67);
      cursor:pointer;
      font-weight:760;
      white-space:nowrap;
    }
    .main-nav a::after,
    .module-return::after,
    .home-link::after,
    .lang-btn::after{
      content:"";
      position:absolute;
      left:0;
      right:100%;
      bottom:3px;
      height:1px;
      background:#fff;
      transition:right .28s var(--ease);
    }
    .main-nav a:hover,
    .main-nav a:focus-visible,
    .main-nav a.active-page,
    .module-return:hover,
    .module-return:focus-visible,
    .home-link:hover,
    .home-link:focus-visible,
    .lang-btn:hover,
    .lang-btn:focus-visible,
    .lang-btn.active{color:#fff;outline:none}
    .main-nav a:hover::after,
    .main-nav a.active-page::after,
    .module-return:hover::after,
    .module-return:focus-visible::after,
    .home-link:hover::after,
    .lang-btn:hover::after,
    .lang-btn.active::after{right:0}
    .header-right{justify-self:end;display:flex;align-items:center;gap:14px}
    .module-return{color:rgba(201,167,106,.78)}
    .module-return:hover,.module-return:focus-visible{color:var(--gold)}
    .lang-switch{display:flex;gap:10px;align-items:center}
    .lang-switch i{font-style:normal;color:rgba(255,255,255,.25);font-size:9px}

    .context-row{
      position:relative;
      z-index:63;
      height:var(--context);
      min-height:var(--context);
      display:flex;
      align-items:center;
      background:linear-gradient(180deg,rgba(18,19,21,.94),rgba(18,19,21,.82));
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--line-soft);
    }
    .context-inner{
      width:min(var(--max), calc(100vw - 56px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      min-width:0;
    }
    .context-path,
    .context-back{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:var(--dim);
      font-size:9.5px;
      line-height:1;
      letter-spacing:.17em;
      text-transform:uppercase;
      font-weight:780;
      white-space:nowrap;
    }
    .context-path span{color:rgba(255,255,255,.38)}
    .context-path strong{color:rgba(242,240,234,.86);font-weight:780}
    .context-back{flex:0 0 auto;transition:color .24s var(--ease)}
    .context-back:hover{color:var(--text)}

    .hscroll-section{height:100%;position:relative}
    .sticky-stage{
      position:relative;
      height:100%;
      display:grid;
      grid-template-rows:auto 1fr;
      overflow:hidden;
      background:
        radial-gradient(circle at 82% 18%, rgba(201,167,106,.032), transparent 34%),
        linear-gradient(180deg,rgba(20,21,23,.58),rgba(20,21,23,.08));
    }
    .sticky-stage::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:var(--subnav);
      bottom:0;
      z-index:28;
      pointer-events:none;
      background:linear-gradient(90deg, rgba(17,18,20,.92), rgba(17,18,20,.36) 5.5%, transparent 12%, transparent 88%, rgba(17,18,20,.36) 94.5%, rgba(17,18,20,.92));
    }
    .subnav-row{
      position:relative;
      z-index:62;
      height:var(--subnav);
      min-height:var(--subnav);
      padding:0;
      display:flex;
      align-items:center;
      background:linear-gradient(180deg,rgba(18,19,21,.94),rgba(18,19,21,.82));
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--line-soft);
    }
    .subnav-inner{
      width:min(var(--max), calc(100vw - 56px));
      height:var(--subnav);
      min-height:var(--subnav);
      margin:0 auto;
      display:grid;
      grid-template-columns:24px minmax(0,1fr) 86px 24px;
      align-items:center;
      gap:14px;
    }
    .station-nav{
      height:var(--subnav);
      min-width:0;
      display:flex;
      align-items:center;
      gap:clamp(20px,2.05vw,28px);
      overflow:auto;
      scrollbar-width:none;
    }
    .station-nav::-webkit-scrollbar{display:none}
    .station-link{
      height:var(--subnav);
      display:flex;
      align-items:center;
      flex:0 0 auto;
      padding:0;
      border:0;
      border-bottom:1px solid transparent;
      background:transparent;
      color:var(--dim);
      cursor:pointer;
      font-size:11px;
      line-height:1;
      text-transform:uppercase;
      letter-spacing:.13em;
      font-weight:760;
      white-space:nowrap;
      transition:color .25s var(--ease), border-color .25s var(--ease);
    }
    .station-link:hover{color:var(--muted)}
    .station-link.active{color:var(--text);border-color:var(--gold)}
    .controls{height:var(--subnav);display:flex;align-items:center;justify-content:flex-end;min-width:78px}
    .counter{height:var(--subnav);display:flex;align-items:center;justify-content:flex-end;color:var(--dim);font-size:11px;line-height:1;letter-spacing:.16em;text-transform:uppercase;min-width:78px;text-align:right}
    .station-arrow{
      position:relative;
      width:24px;
      height:var(--subnav);
      min-height:var(--subnav);
      margin:0;
      padding:0;
      border:0;
      background:transparent;
      color:rgba(242,238,230,.44);
      opacity:.86;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      line-height:1;
      transform:none;
      font:300 18px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      transition:color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
    }
    .station-arrow span{display:flex;align-items:center;justify-content:center;width:24px;height:var(--subnav);line-height:1;transform:none}
    .station-arrow.is-disabled{opacity:.18;pointer-events:none;color:rgba(242,238,230,.20)}
    .station-prev:hover{transform:translateX(-2px);color:rgba(201,167,106,.95)}
    .station-next:hover{transform:translateX(2px);color:rgba(201,167,106,.95)}
    .station-arrow:focus-visible,
    .station-link:focus-visible,
    .criterion:focus-visible,
    .product-card:focus-visible,
    .approach-card:focus-visible,
    .approach-row[role="button"]:focus-visible,
    .family-tab:focus-visible,
    .family-arrow:focus-visible,
    .close:focus-visible{outline:1px solid var(--gold);outline-offset:4px}

    .bottom-progress{
      position:absolute;
      left:50%;
      bottom:17px;
      z-index:55;
      transform:translateX(-50%);
      width:min(380px, 32vw);
      height:1px;
      pointer-events:none;
      background:linear-gradient(90deg, transparent, rgba(201,167,106,.13), rgba(255,255,255,.07), rgba(201,167,106,.13), transparent);
      opacity:.82;
    }
    .bottom-progress span{
      position:absolute;
      inset:0 auto 0 0;
      width:0%;
      height:1px;
      background:linear-gradient(90deg, rgba(201,167,106,.12), rgba(201,167,106,.94), rgba(242,224,181,.62));
      box-shadow:0 0 12px rgba(201,167,106,.18);
      transition:width .34s var(--ease);
    }
    .bottom-progress::before,
    .bottom-progress::after{content:"";position:absolute;top:0;width:38px;height:1px;opacity:.35;background:linear-gradient(90deg, transparent, rgba(201,167,106,.48), transparent)}
    .bottom-progress::before{left:-38px}
    .bottom-progress::after{right:-38px}

    .track{
      position:relative;
      z-index:1;
      display:flex;
      gap:clamp(44px, 4.8vw, 68px);
      height:100%;
      overflow:hidden;
      scroll-snap-type:x mandatory;
      scroll-behavior:smooth;
      scroll-padding:calc((100vw - min(var(--max), calc(100vw - 56px))) / 2);
      padding:clamp(14px, 1.7vh, 20px) max(76px, calc((100vw - var(--max))/2 + 36px)) 56px;
      scrollbar-width:none;
      overscroll-behavior:contain;
    }
    .track::-webkit-scrollbar{display:none}

    .hero-slide,
    .station{scroll-snap-align:center;flex-shrink:0;height:100%;min-height:0;background:transparent;border:0;box-shadow:none}
    .hero-slide{
      flex-basis:min(var(--max), calc(100vw - 56px));
      min-width:min(var(--max), calc(100vw - 56px));
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:72px;
      align-items:center;
      padding:42px 52px 56px;
    }
    .hero-slide .eyebrow{margin-bottom:28px}
    .hero-slide h1{font-size:clamp(72px,8.6vw,128px)}
    .hero-side{align-self:center;padding-bottom:0;max-width:660px}
    .eyebrow{display:flex;align-items:center;gap:18px;color:var(--dim);text-transform:uppercase;letter-spacing:.18em;font-size:11px;font-weight:760;margin-bottom:28px}
    .eyebrow::before{content:"";width:44px;height:1px;background:linear-gradient(90deg,var(--gold),transparent)}
    h1{font-weight:300;letter-spacing:-.083em;line-height:.89;margin:0;font-size:clamp(64px, 8.4vw, 126px)}
    .lead{font-size:clamp(21px,1.75vw,29px);line-height:1.24;letter-spacing:-.049em;font-weight:300;margin:0 0 28px;color:#e6e1d8}
    .scope{border-left:1px solid var(--gold);padding:4px 0 4px 24px;color:var(--muted);max-width:720px;font-size:15px;line-height:1.7}
    .scope b{color:var(--text);font-weight:560}

    .station{
      flex-basis:min(1080px, calc(100vw - 132px));
      min-width:780px;
      padding:clamp(28px, 3.8vh, 38px) clamp(34px, 3.7vw, 48px) 48px;
      display:grid;
      grid-template-rows:auto 1fr;
      gap:clamp(22px, 2.9vh, 30px);
      overflow:auto;
      scrollbar-width:none;
    }
    .station::-webkit-scrollbar{display:none}
    .station.compact{gap:32px}
    .station-head{max-width:900px}
    .num{color:var(--gold);font-size:11px;letter-spacing:.18em;font-weight:760;margin-bottom:18px}
    h2{font-size:clamp(32px,3vw,48px);line-height:1.02;letter-spacing:-.058em;font-weight:300;margin:0 0 17px;color:#f2eee6}
    .station-copy{font-size:clamp(15px, 1.03vw, 16.5px);line-height:1.52;color:var(--muted);max-width:880px;margin:0}
    .station-copy strong{color:var(--text);font-weight:560}

    .statement-block,
    .product-block{align-self:end;min-width:0}
    .statement{font-size:clamp(34px,4.25vw,60px);line-height:.99;letter-spacing:-.068em;font-weight:300;margin:0;color:#f3f0ea}
    .statement .gold{color:var(--gold)}
    .grid-label{width:100%;clear:both;display:flex;align-items:center;gap:12px;color:rgba(201,167,106,.96);font-size:9px;line-height:1;letter-spacing:.18em;text-transform:uppercase;font-weight:800;position:relative;z-index:1}
    .grid-label::after{content:"";flex:1 1 auto;height:1px;background:linear-gradient(90deg, rgba(201,167,106,.82), rgba(201,167,106,.18), transparent);transform:translateY(.5px)}
    .criteria-label{margin:clamp(28px,3.4vh,40px) 0 18px}
    .relation-label{margin:0 0 18px}

    .criteria-grid,
    .product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;position:relative;z-index:1}
    .criterion,
    .product-card,
    .attention-card,
    .visible-item{
      border:1px solid var(--line-soft);
      background:rgba(255,255,255,.014);
      padding:22px;
      transition:border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
    }
    .criterion,
    .product-card{min-height:150px;text-align:left;cursor:pointer;padding-top:26px}
    .criterion:hover,
    .product-card:hover{border-color:rgba(201,167,106,.48);background:rgba(201,167,106,.04);transform:translateY(-2px)}
    .criterion h3,
    .product-card h3{font-size:19px;line-height:1.1;letter-spacing:-.04em;font-weight:430;margin:0 0 12px;color:var(--text)}
    .criterion p,
    .product-card p,
    .attention-card p,
    .visible-item p{font-size:13.5px;line-height:1.58;color:var(--muted);margin:0}
    .product-card{display:flex;flex-direction:column;justify-content:flex-start}
    .product-card h3{margin-bottom:13px}

    .attention-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;align-self:end}
    .attention-card{min-height:146px}
    .attention-card h3{font-size:20px;line-height:1.1;letter-spacing:-.04em;font-weight:430;margin:0 0 11px;color:var(--text)}

    .visible-grid{display:grid;grid-template-columns:1.04fr .96fr;gap:26px;align-items:end}
    .visible-stack{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
    .visible-item{min-height:112px}
    .visible-item h3{font-size:19px;line-height:1.1;letter-spacing:-.04em;font-weight:430;margin:0 0 11px;color:var(--text)}
    .closing-card{border:1px solid rgba(201,167,106,.24);background:linear-gradient(180deg,rgba(201,167,106,.07),rgba(255,255,255,.012));padding:32px;align-self:stretch;display:flex;flex-direction:column;justify-content:flex-end}
    .card-kicker{font-size:10px;text-transform:uppercase;letter-spacing:.16em;color:var(--gold);font-weight:800;margin-bottom:13px}
    .closing-card .card-kicker{margin-bottom:18px}
    .closing-card p{font-size:22px;line-height:1.26;letter-spacing:-.043em;font-weight:300;margin:0;color:#f3eee5}

    .approach-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(220px,254px);gap:10px;align-items:stretch;min-height:0}
    .approach-table{border:1px solid var(--line-soft);background:rgba(255,255,255,.014);overflow:hidden;align-self:stretch}
    .approach-row{display:grid;grid-template-columns:1.16fr .62fr 1.07fr;gap:0;border-bottom:1px solid var(--line-soft)}
    .approach-row:last-child{border-bottom:0}
    .approach-row > div{padding:7px 11px;border-right:1px solid var(--line-soft);min-width:0}
    .approach-row > div:last-child{border-right:0}
    .approach-row.head{background:rgba(201,167,106,.072)}
    .approach-row.head > div{font-size:9px;text-transform:uppercase;letter-spacing:.15em;color:var(--gold);font-weight:800;padding:8px 11px 7px}
    .approach-row[data-panel]{cursor:pointer;transition:background .22s var(--ease)}
    .approach-row[data-panel]:hover{background:rgba(201,167,106,.052)}
    .approach-question{color:#f1eee6;font-size:12.1px;line-height:1.18;letter-spacing:-.012em}
    .approach-method{color:#f0dfbd;font-size:11.9px;line-height:1.18;font-weight:650}
    .approach-decision{color:var(--muted);font-size:11.35px;line-height:1.25}
    .approach-side{display:grid;grid-template-rows:auto auto;align-content:start;gap:10px}
    .approach-card{border:1px solid rgba(201,167,106,.20);background:linear-gradient(180deg,rgba(201,167,106,.055),rgba(255,255,255,.014));padding:15px 16px;display:flex;flex-direction:column;min-height:0;cursor:pointer;text-align:left;transition:border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease)}
    .approach-card:hover{border-color:rgba(201,167,106,.48);background:rgba(201,167,106,.065);transform:translateY(-2px)}
    .approach-card .card-kicker{font-size:8.7px;letter-spacing:.145em;margin-bottom:9px}
    .approach-card h3{font-size:18.5px;line-height:1.02;letter-spacing:-.048em;font-weight:350;margin:0 0 9px;color:var(--text)}
    .approach-card p{font-size:11.85px;line-height:1.36;color:var(--muted);margin:0}
    .station-approach{flex-basis:min(1210px, calc(100vw - 112px));padding-bottom:46px}
    .station-approach .station-head{max-width:1010px}
    .station-approach .station-copy{max-width:1000px;line-height:1.48}

    .station-findings{flex-basis:min(1120px, calc(100vw - 120px));padding-bottom:48px}
    .station-findings .visible-grid{grid-template-columns:minmax(420px,.95fr) minmax(320px,.9fr);gap:22px;align-items:stretch}
    .station-findings .visible-stack{gap:10px}
    .station-findings .visible-item{min-height:0;padding:18px 20px}
    .station-findings .visible-item h3{font-size:clamp(17px,1.35vw,20px);line-height:1.08;margin-bottom:10px}
    .station-findings .visible-item p{font-size:13px;line-height:1.48}
    .station-findings .closing-card{min-height:0;padding:28px 30px}
    .station-findings .closing-card .card-kicker{margin-bottom:16px}
    .station-findings .closing-card p{font-size:clamp(24px,2.05vw,32px);line-height:1.14;letter-spacing:-.04em}

    .modal{position:fixed;inset:var(--top) 0 0;z-index:900;display:none;align-items:center;justify-content:center;padding:clamp(18px,2.2vh,32px) 32px 32px;background:rgba(8,9,10,.78);backdrop-filter:blur(18px);overscroll-behavior:contain}
    .modal.open{display:flex}
    .modal-panel{width:min(1120px, calc(100vw - 72px));min-height:min(520px, calc(100dvh - var(--top) - 64px));max-height:calc(100dvh - var(--top) - 64px);overflow:auto;overscroll-behavior:contain;background:radial-gradient(circle at 89% 8%, rgba(201,167,106,.105), transparent 34%),linear-gradient(180deg,#222323,#191a1b);border:1px solid rgba(201,167,106,.26);box-shadow:0 40px 120px rgba(0,0,0,.58);padding:38px;scrollbar-width:thin;scrollbar-color:rgba(201,167,106,.28) transparent}
    .modal-panel::-webkit-scrollbar{width:8px}
    .modal-panel::-webkit-scrollbar-track{background:transparent}
    .modal-panel::-webkit-scrollbar-thumb{background:rgba(201,167,106,.22);border-radius:999px}
    .modal-top{display:flex;justify-content:space-between;gap:26px;align-items:start;border-bottom:1px solid var(--line);padding-bottom:24px;margin-bottom:24px}
    .modal-title{font-size:clamp(28px,2.65vw,38px);line-height:1.06;letter-spacing:-.05em;font-weight:300;margin:0;color:var(--text)}
    .modal-sub{font-size:16.5px;line-height:1.55;color:var(--muted);margin:13px 0 0;max-width:740px}
    .close{width:40px;height:40px;flex:0 0 auto;border:1px solid var(--line);background:transparent;color:var(--text);cursor:pointer;font-size:20px;line-height:1;transition:.25s var(--ease)}
    .close:hover{border-color:var(--gold);background:var(--gold-soft)}
    .modal-family{display:flex;justify-content:space-between;align-items:center;gap:18px;border-bottom:1px solid var(--line-soft);padding:0 0 18px;margin:-4px 0 22px}
    .family-tabs{display:flex;gap:14px;align-items:center;overflow:auto;scrollbar-width:none;min-width:0}
    .family-tabs::-webkit-scrollbar{display:none}
    .family-tab{border:0;background:transparent;padding:0 0 7px;color:var(--dim);font-size:9.4px;text-transform:uppercase;letter-spacing:.13em;font-weight:800;white-space:nowrap;cursor:pointer;border-bottom:1px solid transparent;transition:.25s var(--ease)}
    .family-tab.active{color:var(--text);border-color:var(--gold)}
    .family-actions{display:flex;gap:8px;align-items:center;flex:0 0 auto}
    .family-arrow{border:0;background:transparent;color:var(--muted);font-size:22px;line-height:1;cursor:pointer;padding:2px 4px;transition:.25s var(--ease)}
    .family-arrow:hover{color:var(--gold)}
    .modal-content{display:grid;grid-template-columns:minmax(260px,.76fr) minmax(0,1.24fr);gap:38px;align-items:start;align-content:start}
    .modal-intro{border-left:1px solid var(--gold);padding-left:20px;color:var(--muted);font-size:16.5px;line-height:1.68;margin:0}
    .modal-list{display:grid;gap:0}
    .modal-row{display:grid;grid-template-columns:152px 1fr;gap:22px;padding:13px 0;border-bottom:1px solid var(--line-soft)}
    .modal-row:first-child{padding-top:0}
    .modal-row dt{font-size:10px;text-transform:uppercase;letter-spacing:.16em;color:var(--gold);font-weight:800}
    .modal-row dd{margin:0;color:var(--muted);font-size:15.5px;line-height:1.58}
    .modal-row dd ul{margin:0;padding-left:18px}
    .modal-row dd li{margin:0 0 5px}
    .modal-row.metric-row{grid-template-columns:1fr;gap:10px}
    .modal-row.metric-row dt{margin-bottom:2px}
    .relation-list{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:7px}
    .relation-list li{padding:7px 10px;border:1px solid var(--line-soft);background:rgba(255,255,255,.014);color:var(--muted);font-size:14px;line-height:1.25;flex:0 1 auto}
    .attention-note{margin-top:18px;padding:18px 20px;border:1px solid rgba(201,167,106,.24);background:rgba(201,167,106,.055);color:#ded3c1;font-size:15.5px;line-height:1.6}
    .attention-note b{color:var(--gold);font-size:10px;text-transform:uppercase;letter-spacing:.16em;display:block;margin-bottom:9px}

    @media (min-width:1041px) and (max-height:780px){
      .track{padding-top:12px;padding-bottom:46px}
      .bottom-progress{bottom:13px}
      .station{padding-top:22px;padding-bottom:40px;gap:18px}
      h2{font-size:clamp(30px,2.8vw,42px)}
      .station-copy{font-size:14.4px;line-height:1.43}
      .grid-label{margin-top:18px;margin-bottom:13px}
      .criteria-label{margin-top:20px}
      .criterion,.product-card{padding-top:22px}
      .station-approach{padding-top:20px;padding-bottom:38px;gap:16px}
      .station-approach .station-head{max-width:980px}
      .station-approach .station-copy{font-size:13.8px;line-height:1.36;max-width:970px}
      .station-approach h2{font-size:clamp(30px,2.72vw,40px);margin-bottom:13px}
      .station-approach .num{margin-bottom:13px}
      .station-approach .approach-layout{grid-template-columns:minmax(0,1fr) 232px;gap:10px}
      .station-approach .approach-row{grid-template-columns:1.18fr .60fr 1.08fr}
      .station-approach .approach-row > div{padding:6px 10px}
      .station-approach .approach-row.head > div{padding:7px 10px 6px}
      .station-approach .approach-question{font-size:11.35px;line-height:1.15}
      .station-approach .approach-method{font-size:11.15px;line-height:1.15}
      .station-approach .approach-decision{font-size:10.75px;line-height:1.20}
      .station-approach .approach-card{padding:13px 14px}
      .station-approach .approach-card h3{font-size:17px;margin-bottom:8px}
      .station-approach .approach-card p{font-size:11.25px;line-height:1.30}
      .station-findings .visible-grid{gap:18px}
      .station-findings .visible-item{padding:16px 18px}
      .station-findings .visible-item h3{font-size:17.5px;margin-bottom:8px}
      .station-findings .visible-item p{font-size:12.6px;line-height:1.42}
      .station-findings .closing-card{padding:24px 26px}
      .station-findings .closing-card p{font-size:25px;line-height:1.12}
    }

    @media (min-width:1041px) and (max-width:1220px){
      .subnav-inner{gap:12px}
      .station-nav{gap:18px}
      .controls{min-width:72px}
      .track{padding-left:48px;padding-right:48px}
      .station{flex-basis:calc(100vw - 96px);padding-left:32px;padding-right:32px}
      .station-approach{flex-basis:calc(100vw - 84px)}
      .station-approach .approach-layout{grid-template-columns:minmax(0,1fr) 218px}
      .station-approach .approach-row{grid-template-columns:1.18fr .58fr 1fr}
      .station-approach .approach-card{padding:12px 13px}
      .station-approach .approach-card h3{font-size:16.5px}
      .station-approach .approach-card p{font-size:10.9px}
      .station-findings{flex-basis:calc(100vw - 96px)}
      .station-findings .visible-grid{grid-template-columns:minmax(0,1fr) minmax(284px,.78fr)}
    }

    @media (max-width:1040px){
      body{height:auto;overflow-x:hidden;overflow-y:auto}
      main{height:auto;overflow:visible}
      main{margin-top:var(--top)}
      .header-inner{grid-template-columns:1fr auto}
      .main-nav{display:none}
      .context-row{display:none}
      .sticky-stage{position:static;height:auto;overflow:visible}
      .sticky-stage::after,.bottom-progress{display:none}
      .hscroll-section{height:auto}
      .subnav-row{position:sticky;top:var(--top);width:100vw;max-width:100vw;height:auto;min-height:0;padding:14px 0 10px}
      .subnav-inner{grid-template-columns:1fr;height:auto;min-height:0;gap:8px;align-items:start}
      .station-arrow{display:none}
      .station-nav{height:auto;gap:22px;padding-bottom:4px}
      .station-link{height:26px;align-items:center}
      .controls{height:auto;min-width:0;justify-content:flex-end}
      .counter{height:auto;min-width:0}
      .track{display:block;width:100vw;max-width:100vw;overflow:visible;height:auto;padding:20px 28px 50px}
      .hero-slide{width:100%;min-width:0;height:auto;min-height:auto;display:grid;grid-template-columns:1fr;gap:34px;margin:0 0 24px;padding:58px 28px;overflow:visible;scroll-margin-top:calc(var(--top) + var(--subnav) + 14px)}
      .hero-slide .hero-side{align-self:auto;padding-bottom:0}
      .station{width:100%;min-width:0;height:auto;min-height:auto;margin:0 0 24px;display:block;padding:42px 28px;overflow:visible;scroll-margin-top:calc(var(--top) + var(--subnav) + 14px)}
      .visible-grid{display:block}
      .criteria-grid,.product-grid,.attention-grid,.visible-stack{grid-template-columns:1fr 1fr}
      .statement{margin-top:32px}
      .closing-card{margin-top:24px;min-height:260px}
      .approach-layout{grid-template-columns:1fr;gap:14px}
      .approach-row{grid-template-columns:1.05fr .75fr .95fr}
      .approach-side{grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:12px}
      .approach-card{padding:20px}
      .approach-card h3{font-size:22px}
      .approach-card p{font-size:13px;line-height:1.48}
      .modal-content{grid-template-columns:1fr}
      .modal-row{grid-template-columns:1fr;gap:8px}
    }

    @media (max-width:680px){
      :root{--subnav:52px}
      .module-return{display:none}
      .header-inner,.subnav-inner{width:calc(100vw - 32px)}
      .hero-slide{padding:42px 22px;gap:28px}
      .hero-slide h1,h1{font-size:clamp(46px,14.5vw,60px)}
      .lead{font-size:25px}
      .scope{font-size:14px}
      .station{padding:34px 22px}
      .controls{display:none}
      .station-nav{gap:18px}
      .station-link{font-size:10px}
      .criteria-grid,.product-grid,.attention-grid,.visible-stack,.approach-side{grid-template-columns:1fr}
      .approach-row,.approach-row.head{grid-template-columns:1fr}
      .approach-row > div{border-right:0;border-bottom:1px solid var(--line-soft)}
      .approach-row > div:last-child{border-bottom:0}
      .criterion,.product-card,.attention-card,.visible-item,.closing-card{padding:20px}
      .grid-label{margin-top:22px;margin-bottom:14px}
      .grid-label::after{display:none}
      .modal{padding:12px}
      .modal-panel{width:calc(100vw - 24px);height:auto;min-height:0;max-height:calc(100dvh - var(--top) - 24px);padding:24px 20px;display:block;overflow:auto}
      .modal-top{gap:14px}
      .close{width:38px;height:38px}
      .modal-sub{font-size:16px}
      .modal-family{display:block}
      .family-tabs{margin-bottom:14px}
      .closing-card p{font-size:24px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto!important}
      *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
    }

/* Contrato cromático fijo · direction-22 */
:root{color-scheme:only light;}
