*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0A0D10;--panel:#10141A;--panel-2:#141A22;
  --line:rgba(255,255,255,.09);--line-soft:rgba(255,255,255,.04);
  --text:#F2F3F5;--text-dim:#9AA3AD;--text-faint:#5C6670;
  --accent:#2C6E94;--accent-lt:#5FA8D3;--accent-glow:rgba(95,168,211,.15);
  --gold:#C9B99A;--gold-glow:rgba(201,185,154,.12);--verify:#6FAE7E;
  --sans:'Inter',sans-serif;--mono:'JetBrains Mono',monospace;
  --ease:cubic-bezier(.22,1,.36,1);
  /* fluid spacing tokens */
  --sp-1:clamp(.65rem,.5rem+.6vw,1rem);
  --sp-2:clamp(1rem,.8rem+.9vw,1.7rem);
  --sp-3:clamp(1.5rem,1.1rem+1.6vw,2.6rem);
  --sp-4:clamp(2.4rem,1.6rem+3.2vw,5rem);
  --sp-5:clamp(3.6rem,2.4rem+5vw,7.5rem);
}
/* THE FLUID CORE — root font scales continuously 320→2800px, everything in rem follows */
html{scroll-behavior:smooth;font-size:clamp(13.5px,12.1px + .24vw,19px);-webkit-text-size-adjust:100%}
body{font-family:var(--sans);background:var(--bg);color:var(--text);font-size:1rem;line-height:1.55;-webkit-font-smoothing:antialiased;overflow-x:hidden}
::selection{background:var(--accent);color:#fff}
img,svg,canvas,video{max-width:100%;height:auto}
/* container grows a little on ultrawide so it never feels lost */
.wrap{width:min(100% - 2*clamp(1rem,4vw,2rem),clamp(1120px,74vw,1460px));margin-inline:auto}
/* reveals */
.rv{opacity:0;transform:translateY(22px);transition:opacity .72s var(--ease),transform .72s var(--ease)}
.rv-l{opacity:0;transform:translateX(-22px);transition:opacity .72s var(--ease),transform .72s var(--ease)}
.rv-r{opacity:0;transform:translateX(22px);transition:opacity .72s var(--ease),transform .72s var(--ease)}
.rv.on,.rv-l.on,.rv-r.on{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}.d5{transition-delay:.4s}
@media (prefers-reduced-motion:reduce){
  .rv,.rv-l,.rv-r{opacity:1;transform:none;transition:none}
  *{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}
.loom{width:100%;height:clamp(36px,4.5vw,64px);display:block;position:relative;overflow:hidden;background:var(--bg)}
.loom canvas{position:absolute;inset:0;width:100%;height:100%}
section{padding-block:var(--sp-5);border-bottom:1px solid var(--line-soft);position:relative}
section::after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:1px;background:repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 5px,transparent 5px,transparent 14px);opacity:.15}
.sec-tag{font-family:var(--mono);font-size:.7rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-lt);margin-bottom:var(--sp-1);display:flex;align-items:center;gap:.7rem}
.sec-tag::before{content:'';width:22px;height:1px;background:var(--accent-lt);opacity:.45;flex-shrink:0}
h2.sec-h{font-size:clamp(1.5rem,1.1rem+1.9vw,2.7rem);font-weight:800;letter-spacing:-.028em;line-height:1.12;color:var(--text);margin-bottom:var(--sp-1);overflow-wrap:break-word;text-wrap:balance;max-width:24ch}
h2.sec-h.wide{max-width:none}
h2.sec-h em{font-style:normal;color:var(--accent-lt)}
p.sec-b{font-size:clamp(.87rem,.82rem+.2vw,.96rem);line-height:1.75;color:var(--text-dim);max-width:62ch;text-wrap:pretty}
p.sec-b strong{color:var(--text);font-weight:600}
.btn-w{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;min-height:44px;padding:.8rem 1.6rem;background:var(--text);color:var(--bg);font-size:.9rem;font-weight:700;border:none;border-radius:7px;cursor:pointer;transition:opacity .15s,transform .15s;font-family:var(--sans);text-decoration:none}
.btn-w:hover{opacity:.88;transform:translateY(-1px)}
.btn-g{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;min-height:44px;padding:.8rem 1.6rem;background:transparent;color:var(--text-dim);font-size:.9rem;font-weight:500;border:1px solid var(--line);border-radius:7px;cursor:pointer;transition:border-color .15s,color .15s;font-family:var(--sans);text-decoration:none}
.btn-g:hover{border-color:var(--text-faint);color:var(--text)}
button:focus-visible,a:focus-visible,summary:focus-visible,[tabindex]:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:2px solid var(--accent-lt);outline-offset:2px}
.cta-row{display:flex;gap:var(--sp-1);flex-wrap:wrap}
@media(max-width:560px){.cta-row{flex-direction:column;align-items:stretch}}
/* chip rows: wrap on desktop, snap-scroll on touch/narrow so they never stack into a wall */
.chip-row{display:flex;gap:.5rem;flex-wrap:wrap}
@media(max-width:700px){
  .chip-row{flex-wrap:nowrap;overflow-x:auto;scroll-snap-type:x proximity;padding-bottom:.5rem;margin-inline:calc(-1*clamp(1rem,4vw,2rem));padding-inline:clamp(1rem,4vw,2rem);-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .chip-row::-webkit-scrollbar{display:none}
  .chip-row>*{flex-shrink:0;scroll-snap-align:start}
}
/* touch ergonomics */
@media(pointer:coarse){
  .chip-row>button,summary{min-height:44px}
  a,button{-webkit-tap-highlight-color:rgba(95,168,211,.15)}
}


/* ── crisp visual add-ons ── */
.ph-img{position:relative;aspect-ratio:16/10;border:1px dashed var(--line);border-radius:7px;overflow:hidden;
background:repeating-linear-gradient(45deg,transparent 0,transparent 10px,rgba(201,185,154,.035) 10px,rgba(201,185,154,.035) 11px),var(--panel-2);
display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.45rem;color:var(--text-faint);margin-bottom:1.1rem}
.ph-img svg{width:24px;height:24px;opacity:.65}
.ph-img span{font-family:var(--mono);font-size:.56rem;letter-spacing:.12em;text-transform:uppercase}
.ph-img.wide{aspect-ratio:21/9}
.auto-ico{width:34px;height:34px;border-radius:7px;border:1px solid var(--line);background:var(--panel);display:flex;align-items:center;justify-content:center;color:var(--accent-lt);margin-bottom:.9rem;flex-shrink:0}
.auto-ico svg{width:15px;height:15px}


/* ── site navigation ── */
.tnav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(10,13,16,.82);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--line-soft)}
.tnav-in{max-width:1460px;margin-inline:auto;padding:0 clamp(1rem,4vw,2rem);height:60px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.tnav-logo{font-family:var(--mono);font-size:.92rem;letter-spacing:.24em;color:var(--text);text-decoration:none;display:flex;align-items:center;gap:.6rem;min-height:44px}
.tnav-logo span{color:var(--gold)}
.tnav-links{display:flex;align-items:center;gap:clamp(.2rem,1.4vw,1rem);list-style:none}
.tnav-links a{font-size:.82rem;color:var(--text-dim);text-decoration:none;padding:.6rem .65rem;border-radius:6px;transition:color .15s;display:inline-flex;align-items:center;min-height:44px}
.tnav-links a:hover{color:var(--text)}
.tnav-links a[aria-current="page"]{color:var(--accent-lt)}
.tnav-cta{font-size:.8rem;font-weight:700;color:var(--bg);background:var(--text);padding:.5rem 1rem;border-radius:6px;text-decoration:none;display:inline-flex;align-items:center;min-height:38px;transition:opacity .15s}
.tnav-cta:hover{opacity:.85}
.tnav-burger{display:none;width:44px;height:44px;background:none;border:1px solid var(--line);border-radius:7px;color:var(--text);cursor:pointer;align-items:center;justify-content:center}
.tnav-burger svg{width:18px;height:18px}
@media(max-width:900px){
  .tnav-links{position:fixed;top:60px;left:0;right:0;flex-direction:column;align-items:stretch;gap:0;background:var(--panel);border-bottom:1px solid var(--line);padding:.5rem 1rem 1rem;display:none}
  .tnav-links.open{display:flex}
  .tnav-links a{padding:.85rem .6rem;border-bottom:1px dashed var(--line-soft);font-size:.92rem}
  .tnav-burger{display:inline-flex}
  .tnav-cta{display:none}
}
body{padding-top:60px}
/* ── site footer ── */
.tfoot{background:var(--panel);border-top:1px solid var(--line);padding:clamp(3rem,7vw,4.5rem) 0 0}
.tfoot-in{max-width:1460px;margin-inline:auto;padding:0 clamp(1rem,4vw,2rem)}
.tfoot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.4rem;padding-bottom:2.6rem}
.tfoot-brand{font-family:var(--mono);font-size:1rem;letter-spacing:.24em;color:var(--text);margin-bottom:.8rem}
.tfoot-brand span{color:var(--gold)}
.tfoot-tag{font-size:.8rem;color:var(--text-dim);line-height:1.65;max-width:280px}
.tfoot-h{font-family:var(--mono);font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text-faint);margin-bottom:1rem}
.tfoot-l{display:flex;flex-direction:column;gap:.2rem}
.tfoot-l a{font-size:.84rem;color:var(--text-dim);text-decoration:none;padding:.35rem 0;transition:color .15s;display:inline-flex;min-height:32px;align-items:center}
.tfoot-l a:hover{color:var(--text)}
.tfoot-bar{border-top:1px solid var(--line-soft);padding:1.2rem 0;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-family:var(--mono);font-size:.62rem;letter-spacing:.06em;color:var(--text-faint)}
@media(max-width:860px){.tfoot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.tfoot-grid{grid-template-columns:1fr}}
