:root {
  
  --xeus-black:        #0A0B0D;   
  --xeus-ink:          #111316;   
  --xeus-ink-2:        #1A1D21;   
  --xeus-ink-3:        #23272D;   
  --xeus-bone:         #F4F4EF;   
  --xeus-bone-2:       #EAE9E2;   
  --xeus-white:        #FFFFFF;

  
  --xeus-lime:         #C5F62C;   
  --xeus-lime-bright:  #D7FF4A;   
  --xeus-lime-dim:     #9BC322;   
  --xeus-lime-glow:    rgba(197, 246, 44, 0.35); 
  --xeus-lime-faint:   rgba(197, 246, 44, 0.08); 

  
  --xeus-critical:     #FF4D3D;   
  --xeus-critical-dim: #B23226;
  --xeus-warning:      #FFB020;   
  --xeus-info:         #5AB1FF;   
  --xeus-success:      var(--xeus-lime); 

  
  --fg-1:  #F4F4EF;       
  --fg-2:  #B6BAC0;       
  --fg-3:  #777C84;       
  --fg-4:  #4A4F57;       

  
  --fg-on-light-1: #0A0B0D;
  --fg-on-light-2: #3A3F46;
  --fg-on-light-3: #6A6F76;
  --fg-on-light-4: #A0A4AB;

  
  --border-1: rgba(255, 255, 255, 0.08);   
  --border-2: rgba(255, 255, 255, 0.14);   
  --border-3: rgba(255, 255, 255, 0.22);   
  --border-lime: rgba(197, 246, 44, 0.45);
  --border-on-light: rgba(10, 11, 13, 0.10);

  
  --font-display: 'Clash Grotesk', 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:    'Satoshi', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  
  --fs-display-xl: clamp(56px, 8vw, 112px);   
  --fs-display-l:  clamp(44px, 6vw, 80px);    
  --fs-display-m:  clamp(32px, 4vw, 56px);    
  --fs-h1:         clamp(28px, 3.4vw, 44px);  
  --fs-h2:         clamp(22px, 2.6vw, 32px);  
  --fs-h3:         20px;   
  --fs-h4:         16px;   
  --fs-body-l:     18px;   
  --fs-body:       15px;   
  --fs-body-s:     13px;   
  --fs-caption:    12px;   
  --fs-eyebrow:    11px;   
  --fs-mono:       13px;   

  --lh-tight:    1.04;   
  --lh-display:  1.02;   
  --lh-heading:  1.12;   
  --lh-body:     1.55;   
  --lh-mono:     1.45;   

  --tracking-display: -0.025em;   
  --tracking-heading: -0.015em;   
  --tracking-body:    0;          
  --tracking-eyebrow: 0.16em;     
  --tracking-mono:    0;          

  
  --s-0:  0;   
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  20px;
  --s-6:  24px;
  --s-7:  32px;
  --s-8:  40px;
  --s-9:  56px;
  --s-10: 72px;
  --s-11: 96px;
  --s-12: 128px;

  
  --r-0:    0;   
  --r-xs:   2px;
  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   10px;
  --r-xl:   14px;
  --r-2xl:  20px;
  --r-pill: 9999px;

  
  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 4px 16px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-3: 0 12px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06) inset;
  --shadow-light: 0 1px 2px rgba(10,11,13,0.06), 0 4px 12px rgba(10,11,13,0.04);

  --glow-lime-sm: 0 0 12px rgba(197,246,44,0.45);
  --glow-lime-md: 0 0 24px rgba(197,246,44,0.55), 0 0 48px rgba(197,246,44,0.20);
  --glow-lime-lg: 0 0 32px rgba(197,246,44,0.65), 0 0 96px rgba(197,246,44,0.30);
  --glow-critical: 0 0 16px rgba(255,77,61,0.55);

  
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);   
  --ease-snap:   cubic-bezier(0.5, 0, 0, 1);      
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);  
  --dur-1: 120ms;   
  --dur-2: 200ms;   
  --dur-3: 320ms;   
  --dur-4: 600ms;   

  
  --maxw-content: 1280px;   
  --maxw-prose:   720px;    
  --gutter:       24px;     
}




.x-display-xl,
.x-display-l,
.x-display-m,
.x-h1, .x-h2, .x-h3, .x-h4 {
  font-family: var(--font-display);
  color: var(--fg-1);
  font-weight: 600;
  letter-spacing: var(--tracking-heading);
  line-height: var(--lh-heading);
  text-wrap: balance;
}

.x-display-m {
  font-size: var(--fs-display-m);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  font-weight: 600;
}

.x-h2 { font-size: var(--fs-h2); }


.x-body-l { font: 400 var(--fs-body-l)/var(--lh-body) var(--font-sans); color: var(--fg-2); }

.x-body { font: 400 var(--fs-body)/var(--lh-body)  var(--font-sans); color: var(--fg-2); }

.x-body-s { font: 400 var(--fs-body-s)/var(--lh-body) var(--font-sans); color: var(--fg-3); }


.x-mono {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  line-height: var(--lh-mono);
  color: var(--fg-2);
  font-feature-settings: "ss01", "cv01";
}


.x-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--fg-3);
}


.x-eyebrow--lime { color: var(--xeus-lime); }



* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--xeus-black);
  color: var(--fg-1);
  font: 400 var(--fs-body)/var(--lh-body) var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




body { background: #0A0B0D; color: var(--fg-1); margin: 0; }


.btn { font-family: var(--font-mono); font-size: 12px; letter-spacing: .10em; text-transform: uppercase; padding: 12px 20px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 200ms var(--ease-out); }

.btn-primary { background: var(--xeus-lime); color: #0A0B0D; font-weight: 600; }

.btn-primary:hover { background: var(--xeus-lime-bright); box-shadow: var(--glow-lime-sm); }

.x-logo-text { font-family: var(--font-mono); font-weight: 700; font-size: 17px; letter-spacing: .04em; color: var(--fg-1); }

.x-hero .x-hero-copy .x-body-l { margin-top: 0 !important; }



.badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 9999px; display: inline-flex; align-items: center; gap: 6px; }

.badge.live { background: rgba(197,246,44,.14); color: var(--xeus-lime); border: 1px solid rgba(197,246,44,.4); }

.badge.live .bdot { width: 6px; height: 6px; border-radius: 50%; background: var(--xeus-lime); box-shadow: 0 0 8px rgba(197,246,44,.7); animation: pulse 1.6s ease-in-out infinite; }

.badge.recommended { background: var(--xeus-lime); color: #0A0B0D; font-weight: 600; }

@keyframes pulse { 50% { opacity: .55; } }

.x-feat-copy .x-h2 { color: var(--fg-on-light-1); font-weight: 600; letter-spacing: -.015em; }

.x-tier.rec > .badge.recommended { position: absolute; top: -10px; left: 28px; }



.x-footer { max-width: var(--maxw-content); margin: 0 auto; padding: 64px 24px 32px; }

.x-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }

.x-footer ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; color: var(--fg-2); font-size: 13px; }

.x-footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid var(--border-1); }





.xs-section { max-width: var(--maxw-content); margin: 0 auto; padding: 96px 24px; }

.xs-section.tight { padding: 64px 24px; }

.xs-head { max-width: 720px; }

.xs-head.center { margin: 0 auto; text-align: center; }

.xs-head .x-eyebrow { display: block; margin-bottom: 14px; }

.xs-head p { margin: 18px 0 0; }

.xs-rule { height: 1px; background: var(--border-1); max-width: var(--maxw-content); margin: 0 auto; }



.xs-lines { position: relative; }

.xs-lines::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000 0%, transparent 78%);
          mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000 0%, transparent 78%);
}

.xs-lines > * { position: relative; z-index: 1; }

.xs-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.xs-brand .x-logo-text { font-family: var(--font-mono); font-weight: 700; font-size: 18px; letter-spacing: .04em; color: var(--fg-1); }

.btn.is-sm { padding: 9px 15px; font-size: 11px; white-space: nowrap; }

.xs-nav-right .btn { white-space: nowrap; }

.xs-hero h1 .accent { color: var(--xeus-lime); }

.xs-stat .num { font-family: var(--font-mono); font-size: clamp(34px, 4vw, 52px); font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--fg-1); }

.xs-stat .num .u { color: var(--xeus-lime); }

.xs-tab-link .n { font-family: var(--font-mono); font-size: 12px; color: var(--fg-4); }

.xs-tab-link.active .n { color: var(--xeus-lime); }

.xs-tab-copy .x-eyebrow { color: var(--fg-3); }

.xs-loop-card .ph { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--xeus-lime); }

.xs-loop-card .step { font-family: var(--font-mono); font-size: 12px; color: var(--fg-4); position: absolute; top: 24px; right: 26px; }



@media (max-width: 1080px) {
  .xs-hero-grid, .xs-subhero-grid { grid-template-columns: 1fr; gap: 40px; }
  .xs-tab-panel { grid-template-columns: 1fr; }
  .xs-tab-visual { border-left: 0; border-top: 1px solid var(--border-1); }
  .xs-hybrid-grid, .xs-diff-grid, .xs-loop { grid-template-columns: 1fr; }
  .xs-diff-card.wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .xs-diff-card.feature { grid-template-columns: 1fr; gap: 24px; }
  .xs-spec { grid-template-columns: 1fr 1fr; }
  .xs-ind-grid { grid-template-columns: 1fr 1fr 1fr; }
  .xs-loop-arrow { display: none; }
}

@media (max-width: 860px) {
  .xs-nav-menu { display: none; }
  .xs-burger { display: inline-flex; }
  .xs-stats-inner { grid-template-columns: 1fr 1fr; }
  .xs-stat:nth-child(2) { border-right: 0; }
  .xs-stat { border-bottom: 1px solid var(--border-1); }
}

@media (max-width: 560px) {
  .xs-section { padding: 64px 20px; }
  .xs-ind-grid { grid-template-columns: 1fr 1fr; }
  .xs-spec { grid-template-columns: 1fr; }
  .xs-stats-inner { grid-template-columns: 1fr; }
  .xs-stat { border-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .xs-live-pip { animation: none !important; }
}



@keyframes feedIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }




.xc-page { position: relative; overflow: hidden; }



.xc-page::before {
  content: ''; position: absolute; top: -160px; right: -120px;
  width: 780px; height: 780px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(197,246,44,0.10) 0%, rgba(197,246,44,0) 68%);
}

.xc-page::after {
  content: ''; position: absolute; bottom: -220px; left: -160px;
  width: 620px; height: 620px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(90,177,255,0.06) 0%, rgba(90,177,255,0) 70%);
}

.xc-title .accent { color: var(--xeus-lime); }

.xc-badge.live { color: var(--xeus-lime); border-color: var(--border-lime); display: inline-flex; align-items: center; gap: 8px; }

.xc-badge.live .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--xeus-lime); box-shadow: var(--glow-lime-sm); animation: xcpulse 1.8s var(--ease-in-out) infinite; }

@keyframes xcpulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }



.xc-card {
  position: relative;
  background: var(--xeus-ink); border: 1px solid var(--border-2);
  border-radius: var(--r-2xl); padding: 36px; box-shadow: var(--shadow-3);
}

.xc-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }

.xc-card-top .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); }

.xc-secure { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); }

.xc-secure svg { width: 14px; height: 14px; color: var(--xeus-lime); }


.xc-form { display: flex; flex-direction: column; gap: 18px; }

.xc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.xc-field { display: flex; flex-direction: column; gap: 8px; }

.xc-field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); }

.xc-field label .req { color: var(--xeus-lime); margin-left: 3px; }

.xc-field label .opt { color: var(--fg-4); margin-left: 6px; letter-spacing: .08em; }


.xc-input, .xc-select, .xc-textarea {
  width: 100%; font: 400 14.5px/1.5 var(--font-sans); color: var(--fg-1);
  background: var(--xeus-black); border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 12px 14px;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.xc-input::placeholder, .xc-textarea::placeholder { color: var(--fg-4); }

.xc-input:focus, .xc-select:focus, .xc-textarea:focus {
  outline: none; border-color: var(--border-lime);
  box-shadow: 0 0 0 3px var(--xeus-lime-faint);
}

.xc-input:hover, .xc-select:hover, .xc-textarea:hover { border-color: var(--border-3); }

.xc-textarea { resize: vertical; min-height: 116px; }



.xc-field.err .xc-input, .xc-field.err .xc-select, .xc-field.err .xc-textarea { border-color: var(--xeus-critical); }

.xc-err-msg { font-family: var(--font-mono); font-size: 11px; color: var(--xeus-critical); display: none; }

.xc-field.err .xc-err-msg { display: block; }


.xc-submit { width: 100%; justify-content: center; margin-top: 6px; padding: 15px 20px; font-size: 12px; }

.xc-submit .spinner { width: 14px; height: 14px; border: 2px solid rgba(10,11,13,0.35); border-top-color: var(--xeus-black); border-radius: 50%; animation: xcspin .7s linear infinite; }

@keyframes xcspin { to { transform: rotate(360deg); } }


.xc-foot { margin: 22px 0 0; text-align: center; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-3); }

.xc-foot a { color: var(--fg-1); text-decoration: none; border-bottom: 1px solid var(--border-2); }

.xc-foot a:hover { color: var(--xeus-lime); border-color: var(--border-lime); }

@keyframes xcfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.xc-success { text-align: center; padding: 12px 0 2px; animation: xcfade .4s var(--ease-out); }

.xc-seal { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; border: 1px solid var(--border-lime); background: var(--xeus-lime-faint); display: flex; align-items: center; justify-content: center; color: var(--xeus-lime); box-shadow: var(--glow-lime-md); }

.xc-seal svg { width: 30px; height: 30px; }

.xc-success h3 { margin: 0; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--fg-1); }

.xc-success > p { margin: 12px auto 0; max-width: 440px; color: var(--fg-2); font-size: 14.5px; line-height: 1.55; }

.xsc-next { margin-top: 26px; padding: 20px; text-align: left; border: 1px solid var(--border-1); border-radius: var(--r-xl); background: var(--xeus-black); }

.xsc-next h4 { margin: 0 0 15px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--xeus-lime); }

.xsc-next ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }

.xsc-next li { display: grid; grid-template-columns: 26px 1fr; gap: 11px; align-items: start; }

.xsc-next li > span { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border: 1px solid var(--border-lime); border-radius: 50%; font-family: var(--font-mono); font-size: 10px; color: var(--xeus-lime); }

.xsc-next b { display: block; color: var(--fg-1); font-size: 13.5px; font-weight: 600; }

.xsc-next small { display: block; margin-top: 2px; color: var(--fg-3); font-size: 12.5px; line-height: 1.45; }

.xc-success .ref { display: inline-block; margin-top: 20px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--fg-3); border: 1px solid var(--border-1); border-radius: var(--r-md); padding: 9px 14px; }

.xc-success .ref b { color: var(--xeus-lime); font-weight: 500; }

.xsc-signin { display: block; width: fit-content; margin: 18px auto 0; color: var(--fg-1); font: 700 12px/1.4 var(--font-sans); letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }

.xsc-signin:hover { color: var(--xeus-lime); }



@media (max-width: 1080px) {
  .xc-wrap { grid-template-columns: 1fr; gap: 44px; }
  .xc-left { position: static; }
  .xc-channels, .xc-lead { max-width: none; }
}

@media (max-width: 560px) {
  .xc-wrap { padding: 48px 20px 80px; }
  .xc-row { grid-template-columns: 1fr; }
  .xc-card { padding: 24px; }
}



  html, body { background: #0A0B0D; }



.xc-submit-err {color:#ff6b6b;font:500 12px/1.5 var(--font-mono),monospace;margin:-4px 0 4px;letter-spacing:.02em;}



.xpill-header { position: fixed; left: 0; right: 0; top: 0; z-index: 100; display: flex; justify-content: center; padding: 16px 16px 0; }

@media (min-width: 768px) { .xpill-header { padding-top: 24px; } }

#pill-nav.xpill { display: flex; width: 100%; max-width: 1152px; align-items: center; justify-content: space-between; gap: 16px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.12); padding: 8px 12px; transition: all .3s ease; background: rgba(0,0,0,0.45); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }

#pill-nav.xpill.scrolled { background: rgba(0,0,0,0.8); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }

.xpill-brand { display: flex; align-items: center; gap: 8px; padding-left: 12px; flex-shrink: 0; text-decoration: none; }

.xpill-brand .wm { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; font-size: 20px; color: #fff; }

.xpill-brand .wm .dot { color: #ff3333; }

.xpill-links { display: none; align-items: center; gap: 28px; }

@media (min-width: 768px) { .xpill-links { display: flex; } }

.xpill-links a { font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: #b3b3b3; text-decoration: none; transition: color .2s; }

.xpill-links a:hover { color: #fff; }


.xpill-dd { position: relative; display: flex; align-items: center; }

.xpill-dd-btn { display: inline-flex; align-items: center; background: transparent; border: 0; cursor: pointer; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: #b3b3b3; transition: color .2s; }

.xpill-dd-btn:hover { color: #fff; }

.xpill-chev { margin-left: 4px; width: 12px; height: 12px; }

.xpill-dd-menu { position: absolute; left: 50%; top: 100%; transform: translateX(-50%); margin-top: 12px; display: none; min-width: 170px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.9); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); padding: 8px; }

.xpill-dd-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }

.xpill-dd:hover .xpill-dd-menu { display: block; }

.xpill-dd-menu a { display: block; border-radius: 6px; padding: 8px 12px; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: #b3b3b3; text-decoration: none; white-space: nowrap; transition: all .2s; }

.xpill-dd-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

.xpill-menu-label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 26px; color: #666; }

.xpill-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.xpill-cta { display: none; align-items: center; border-radius: 9999px; background: #dcf986; padding: 8px 16px; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: #000; text-decoration: none; transition: background .2s; }

@media (min-width: 640px) { .xpill-cta { display: inline-flex; } }

.xpill-cta:hover { background: #fff; }

.xpill-burger { display: inline-flex; align-items: center; justify-content: center; height: 36px; width: 36px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.12); color: #fff; background: transparent; cursor: pointer; }

@media (min-width: 768px) { .xpill-burger { display: none; } }

.xpill-menu { position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: #0a0a0a; transform: translateY(100%); transition: transform .5s ease; }

.xpill-menu.open { transform: translateY(0); }

.xpill-menu .close { position: absolute; right: 32px; top: 28px; font-size: 36px; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }

.xpill-menu a { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 40px; color: #fff; text-decoration: none; margin: 10px 0; }


.xc-page { padding-top: 96px; }




.xsc-hero { max-width: var(--maxw-content); margin: 0 auto; padding: 72px 24px 84px; }

.xsc-hero h1 { margin: 18px 0 0; font-size: clamp(40px, 5vw, 68px); line-height: 1; letter-spacing: var(--tracking-display); }

.xsc-hero h1 .accent { color: var(--xeus-lime); }

.xsc-hero .lead { max-width: 660px; margin: 26px 0 0; }

.xsc-hero .xsc-cta { margin-top: 34px; }



.xsc-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }

.xsc-card { background: var(--xeus-ink); border: 1px solid var(--border-1); border-radius: var(--r-2xl); padding: 28px; }

.xsc-card .n { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--xeus-lime); margin-bottom: 16px; }

.xsc-card h3 { margin: 0 0 10px; }

.xsc-card p { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.55; }



.xsc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }

.xsc-step { background: var(--xeus-ink); border: 1px solid var(--border-1); border-radius: var(--r-2xl); padding: 26px; position: relative; }

.xsc-step .ph { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--xeus-lime); }

.xsc-step .step { font-family: var(--font-mono); font-size: 12px; color: var(--fg-4); position: absolute; top: 22px; right: 24px; }

.xsc-step h4 { margin: 16px 0 8px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg-1); }

.xsc-step p { margin: 0; font-size: 13px; color: var(--fg-2); line-height: 1.55; }

.xsc-note { margin-top: 28px; font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-3); }

.xsc-note b { color: var(--xeus-lime); font-weight: 500; }



.xsc-findings { list-style: none; padding: 0; margin: 44px 0 0; border: 1px solid var(--border-1); border-radius: var(--r-xl); overflow: hidden; }

.xsc-findings li { display: flex; gap: 20px; align-items: flex-start; padding: 20px 24px; background: var(--xeus-ink); border-bottom: 1px solid var(--border-1); }

.xsc-findings li:last-child { border-bottom: 0; }

.xsc-findings .num { font-family: var(--font-mono); font-size: 12px; color: var(--xeus-lime); flex: none; padding-top: 3px; }

.xsc-findings p { margin: 0; font-size: 14.5px; color: var(--fg-2); line-height: 1.55; }

.xsc-findings b { color: var(--fg-1); font-weight: 600; }



#scoping-form { scroll-margin-top: 120px; }

.xsc-form-wrap { max-width: 760px; margin: 44px auto 0; }

.xsc-opts { display: flex; flex-wrap: wrap; gap: 8px; }

.xsc-opt { position: relative; }

.xsc-opt input { position: absolute; opacity: 0; pointer-events: none; }

.xsc-opt > span { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--border-2); border-radius: var(--r-md); background: var(--xeus-black); font-size: 13.5px; color: var(--fg-2); cursor: pointer; transition: all 160ms var(--ease-out); user-select: none; }

.xsc-opt:hover > span { border-color: var(--border-3); color: var(--fg-1); }

.xsc-opt input:checked + span { border-color: var(--border-lime); background: var(--xeus-lime-faint); color: var(--fg-1); }

.xsc-opt input:focus-visible + span { box-shadow: 0 0 0 3px var(--xeus-lime-faint); }

.xsc-opt .tick { width: 14px; height: 14px; flex: none; border: 1px solid var(--border-3); border-radius: 50%; transition: all 160ms var(--ease-out); }

.xsc-opt input:checked + span .tick { background: var(--xeus-lime); border-color: var(--xeus-lime); }

.xsc-opt.sq .tick { border-radius: var(--r-xs); }

.xsc-comply { margin-top: 18px; text-align: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--fg-3); }


@media (max-width: 1080px) {
  .xsc-strip, .xsc-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .xsc-strip, .xsc-steps { grid-template-columns: 1fr; }
}

/* Extra layout for static marketing pages (platform / why-us) */
.xsc-compare { margin-top: 44px; border: 1px solid var(--border-1); border-radius: var(--r-xl); overflow: hidden; }
.xsc-compare .row { display: grid; grid-template-columns: 0.9fr 1.1fr 1.1fr; gap: 0; border-bottom: 1px solid var(--border-1); }
.xsc-compare .row:last-child { border-bottom: 0; }
.xsc-compare .row > * { padding: 18px 22px; font-size: 14px; color: var(--fg-2); line-height: 1.5; background: var(--xeus-ink); }
.xsc-compare .row.head > * { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); background: var(--xeus-black); }
.xsc-compare .row .k { color: var(--fg-1); font-weight: 600; background: var(--xeus-black); }
.xsc-compare .row .good { color: var(--fg-1); background: var(--xeus-lime-faint); }
@media (max-width: 720px) {
  .xsc-compare .row { grid-template-columns: 1fr; }
  .xsc-compare .row.head { display: none; }
}

.xsc-cta-band { max-width: var(--maxw-content); margin: 0 auto; padding: 72px 24px 96px; }
.xsc-cta-band h2 { margin: 14px 0 0; }
.xsc-cta-band p { max-width: 560px; margin: 18px 0 0; }
.xsc-cta-band .xsc-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

.xpill-brand img { height: 1.4em; width: auto; }

