:root{
  --bg:#17191f;
  --bg-deep:#111318;
  --surface:#1b1e25;
  --surface-2:#20242c;
  --surface-3:#252a33;
  --text:#f4f5f7;
  --muted:#a8acb5;
  --quiet:#777c86;
  --line:rgba(255,255,255,.105);
  --line-strong:rgba(255,255,255,.20);
  --accent:#aeb5ee;
  --accent-2:#8ebfc3;
  --accent-soft:rgba(174,181,238,.12);
  --shadow:0 30px 80px rgba(0,0,0,.34);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 12% 0%,rgba(174,181,238,.09),transparent 24%),
    radial-gradient(circle at 86% 12%,rgba(142,191,195,.055),transparent 24%),
    linear-gradient(180deg,#191b21 0%,#14161b 100%);
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-image:
    radial-gradient(circle,rgba(0,0,0,.28) 1px,transparent 1.2px),
    linear-gradient(rgba(0,0,0,.17) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,0,0,.17) 1px,transparent 1px);
  background-size:20px 20px,44px 44px,44px 44px;
  opacity:.62;
}

body:after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.012),transparent 30%,rgba(0,0,0,.12));
}

a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}
::selection{background:rgba(174,181,238,.25);color:#fff}

/* navigation */
.site-header{
  position:fixed;
  top:16px;
  left:0;
  right:0;
  z-index:1000;
  padding:0 18px;
  transition:.25s ease;
}
.site-header.scrolled{top:8px}
.nav-shell{
  width:min(var(--max),100%);
  min-height:68px;
  margin:auto;
  padding:10px 12px 10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:17px;
  background:rgba(21,23,29,.86);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 55px rgba(0,0,0,.25);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.09em;
}
.brand-symbol{
  display:grid;
  place-items:center;
  width:35px;
  height:35px;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(145deg,rgba(255,255,255,.22),rgba(174,181,238,.12));
  border:1px solid rgba(213,217,255,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 10px 25px rgba(0,0,0,.24);
}
.brand-word{font-size:.94rem}
.nav-links{
  display:flex;
  align-items:center;
  gap:23px;
}
.nav-links>a{
  color:#adb0b7;
  font-size:.88rem;
  font-weight:600;
  transition:.2s ease;
}
.nav-links>a:hover,.nav-links>a.active{color:#fff}
.nav-links>a.active:after{
  content:"";
  display:block;
  width:100%;
  height:1px;
  margin-top:5px;
  background:var(--accent);
}
.nav-links .nav-cta{
  padding:12px 16px;
  color:#fff;
  border:1px solid rgba(255,255,255,.17);
  border-radius:11px;
  background:rgba(255,255,255,.065);
}
.menu-toggle{
  display:none;
  width:44px;
  height:42px;
  border:0;
  background:none;
}
.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  margin:6px auto;
  background:#fff;
  transition:.25s ease;
}

/* shared */
main{display:block}
.kicker,.section-index,.summary-label{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#c4c9f4;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.kicker i{
  width:20px;
  height:1px;
  background:currentColor;
}
.button{
  position:relative;
  display:inline-flex;
  min-height:50px;
  padding:0 20px;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  border-radius:12px;
  font-weight:750;
  cursor:pointer;
  overflow:hidden;
  transition:.25s ease;
}
.button:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 15%,rgba(255,255,255,.14),transparent 68%);
  transform:translateX(-120%);
  transition:.65s ease;
}
.button:hover:before{transform:translateX(120%)}
.button:hover{transform:translateY(-3px)}
.button-primary{
  color:#f8f8fa;
  background:linear-gradient(135deg,rgba(255,255,255,.23),rgba(174,181,238,.16));
  border-color:rgba(220,223,255,.27);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 16px 36px rgba(0,0,0,.27);
}
.button-primary:hover{border-color:rgba(226,229,255,.43)}
.button-secondary{
  color:#eceef2;
  background:rgba(255,255,255,.035);
  border-color:rgba(255,255,255,.13);
}
.text-link{
  display:inline-flex;
  gap:12px;
  margin-top:20px;
  color:#e5e7ed;
  font-weight:700;
}
.text-link span{color:var(--accent)}
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .75s ease,transform .75s ease;
}
.reveal.visible{opacity:1;transform:none}

/* hero */
.hero{
  width:min(var(--max),calc(100% - 36px));
  min-height:100vh;
  margin:auto;
  padding:150px 0 90px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:60px;
  align-items:center;
}
.hero-copy h1{
  max-width:11ch;
  margin:19px 0 24px;
  font-size:clamp(3.1rem,5.3vw,5.35rem);
  line-height:.96;
  letter-spacing:-.058em;
}
.hero-copy h1 span{
  background:linear-gradient(100deg,#fff 0%,#e7e8eb 44%,#aeb5ee 78%,#f5f5f6 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy>p{
  max-width:640px;
  margin:0;
  color:var(--muted);
  font-size:1.04rem;
  line-height:1.78;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:32px 0 29px;
}
.hero-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-proof span{
  padding:9px 11px;
  border-left:1px solid var(--line-strong);
  color:#969aa3;
  font-size:.76rem;
}
.hero-proof b{color:#f0f1f4}

/* hero stage */
.hero-stage{
  position:relative;
  min-height:575px;
  perspective:1500px;
  isolation:isolate;
}
.stage-grid{
  position:absolute;
  inset:20px 0 0 20px;
  border-radius:30px;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:28px 28px;
  opacity:.45;
  transform:rotate(-4deg);
  mask-image:linear-gradient(135deg,black,transparent 82%);
}
.stage-window{
  border:1px solid var(--line);
  background:#15171c;
  box-shadow:var(--shadow);
}
.stage-main{
  position:absolute;
  inset:58px 18px 46px 32px;
  overflow:hidden;
  border-radius:24px;
  transform:rotateY(-8deg) rotateX(5deg) rotateZ(1deg);
  transform-style:preserve-3d;
}
.window-top{
  height:48px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 16px;
  border-bottom:1px solid var(--line);
  background:#101216;
}
.window-top small{margin-left:8px;color:#777c86}
.window-dot{width:8px;height:8px;border-radius:50%;background:#4d5159}
.stage-layout{
  height:calc(100% - 48px);
  display:grid;
  grid-template-columns:56px 1fr;
}
.stage-sidebar{
  padding:15px 11px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:17px;
  border-right:1px solid var(--line);
  background:#121419;
}
.side-logo{
  display:grid;
  place-items:center;
  width:34px;height:34px;
  border-radius:10px;
  color:#f3f4f6;
  background:rgba(174,181,238,.13);
  border:1px solid rgba(203,208,255,.18);
  font-size:.72rem;font-weight:800;
}
.stage-sidebar i{
  width:18px;height:18px;border-radius:6px;
  border:1px solid rgba(255,255,255,.09);
  background:#1d2027;
}
.stage-sidebar i.active{background:#afb6ef;border-color:#afb6ef}
.stage-content{padding:19px;overflow:hidden}
.stage-heading{
  display:flex;align-items:center;justify-content:space-between;
}
.stage-heading small{display:block;color:#747983;margin-bottom:5px}
.stage-heading strong{font-size:1.25rem}
.status-pill{
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 9px;border-radius:999px;
  color:#cfd3d8;background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  font-size:.66rem;
}
.status-pill i,.live-indicator i{
  width:7px;height:7px;border-radius:50%;background:#8fc3b0;
  box-shadow:0 0 10px rgba(143,195,176,.45);
}
.stage-metrics{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:17px 0;
}
.stage-metrics>div,.stage-bottom>div{
  padding:15px;border-radius:14px;
  background:linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.005)),#1a1d23;
  border:1px solid rgba(255,255,255,.08);
}
.stage-metrics small,.stage-metrics span,.stage-bottom span{display:block;color:#7e838d;font-size:.69rem}
.stage-metrics b{display:block;margin:8px 0 6px;font-size:1.15rem}
.stage-chart{
  position:relative;height:145px;padding:18px;border-radius:15px;
  overflow:hidden;background:#171a20;border:1px solid rgba(255,255,255,.08);
}
.chart-label{color:#777c86;font-size:.69rem}
.stage-chart svg{position:absolute;inset:38px 14px 14px;width:calc(100% - 28px);height:calc(100% - 52px)}
.chart-shadow{fill:none;stroke:rgba(174,181,238,.10);stroke-width:12}
.chart-path{fill:none;stroke:#d7d9e0;stroke-width:2.3}
.stage-bottom{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:12px}
.stage-bottom>div{padding:11px}
.stage-bottom b{font-size:.8rem}
.stage-float{
  position:absolute;z-index:5;padding:15px 17px;border-radius:14px;
  background:rgba(18,20,25,.94);
  backdrop-filter:blur(14px);
}
.stage-float small,.stage-float span{display:block;color:#777c86;font-size:.65rem}
.stage-float strong{display:block;margin:5px 0 9px;font-size:.84rem}
.float-one{top:18px;right:-6px;animation:float 5s ease-in-out infinite}
.float-two{bottom:12px;left:-10px;animation:float 5.4s ease-in-out infinite reverse}
.mini-line{width:100%;height:2px;background:linear-gradient(90deg,#dfe1e8,var(--accent),transparent)}
@keyframes float{50%{transform:translateY(-9px)}}

/* marquee */
.marquee-band{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(12,14,18,.33);
}
.marquee-track{
  width:max-content;
  padding:18px 0;
  display:flex;
  align-items:center;
  gap:28px;
  animation:marquee 30s linear infinite;
  color:#a1a5ae;
  font-size:.77rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.marquee-track i{width:4px;height:4px;border-radius:50%;background:var(--accent)}
@keyframes marquee{to{transform:translateX(-50%)}}

/* editorial feature sections */
.editorial-section{
  width:min(var(--max),calc(100% - 36px));
  margin:auto;
  padding:130px 0;
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:70px;
  align-items:start;
}
.editorial-section.reverse{grid-template-columns:1.28fr .72fr}
.editorial-section.reverse .section-copy{grid-column:2}
.editorial-section.reverse .bot-console{grid-row:1;grid-column:1}
.sticky-copy{position:sticky;top:118px}
.section-copy h2,.design-copy h2,.process-head h2,.obs-top h2{
  margin:16px 0 18px;
  font-size:clamp(2.4rem,4vw,4.15rem);
  line-height:1.03;
  letter-spacing:-.047em;
}
.section-copy p,.design-copy p,.process-head p{
  color:var(--muted);
  line-height:1.75;
}

/* discord demo */
.discord-builder{
  border-radius:21px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#14161b;
  box-shadow:var(--shadow);
}
.builder-toolbar{
  min-height:62px;
  padding:10px 14px 10px 19px;
  display:flex;align-items:center;justify-content:space-between;gap:15px;
  border-bottom:1px solid var(--line);
}
.builder-toolbar>span{font-size:.76rem;color:#898e98;font-weight:700}
.builder-tabs{display:flex;gap:5px}
.builder-tabs button{
  padding:9px 10px;border:1px solid transparent;border-radius:9px;
  color:#878c95;background:none;cursor:pointer;font-size:.72rem;font-weight:700;
}
.builder-tabs button.active{
  color:#fff;background:rgba(174,181,238,.10);
  border-color:rgba(189,195,247,.16);
}
.discord-ui{min-height:470px;display:grid;grid-template-columns:64px 190px 1fr}
.server-rail{
  padding:16px 10px;display:flex;flex-direction:column;align-items:center;gap:13px;
  background:#101216;border-right:1px solid var(--line);
}
.server-icon{
  display:grid;place-items:center;width:40px;height:40px;border-radius:14px;
  background:#1e2128;color:#8d929b;font-size:.78rem;font-weight:800;
}
.server-icon.active{background:#aeb5ee;color:#17191f;border-radius:12px}
.channel-panel{
  position:relative;padding-bottom:62px;background:#17191f;border-right:1px solid var(--line);
}
.server-title{
  height:52px;padding:0 14px;display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--line);font-size:.75rem;font-weight:800;
}
.channel-list{padding:13px 9px}
.channel-group{margin-bottom:16px}
.channel-group>span{
  display:block;margin:0 7px 6px;color:#686d76;font-size:.61rem;font-weight:800;letter-spacing:.1em;
}
.channel-button{
  width:100%;padding:7px 8px;border:0;border-radius:6px;
  display:flex;align-items:center;gap:7px;
  color:#878c95;background:none;cursor:pointer;text-align:left;font-size:.73rem;
}
.channel-button:before{content:"#";color:#686d76;font-size:1rem}
.channel-button:hover,.channel-button.active{color:#e6e7eb;background:rgba(255,255,255,.045)}
.user-bar{
  position:absolute;left:0;right:0;bottom:0;height:56px;padding:8px;
  display:flex;align-items:center;gap:8px;background:#121419;border-top:1px solid var(--line);
}
.avatar{
  display:grid;place-items:center;flex:0 0 34px;height:34px;border-radius:50%;
  color:#f6f6f8;background:#343844;font-size:.62rem;font-weight:800;
}
.user-bar b,.user-bar small{display:block;font-size:.65rem}
.user-bar small{color:#777c85;margin-top:2px}
.user-bar i{margin-left:auto;color:#777c85;font-style:normal}
.chat-panel{position:relative;padding-bottom:66px;background:#1b1e24}
.chat-title{
  height:52px;padding:0 16px;display:flex;align-items:center;gap:10px;border-bottom:1px solid var(--line)
}
.chat-title b{font-size:.77rem}
.chat-title span{color:#6e737c;font-size:.67rem}
.chat-empty{padding:55px 24px 28px}
.chat-hash{
  display:grid;place-items:center;width:48px;height:48px;border-radius:50%;
  background:#292d35;color:#a1a6af;font-size:1.5rem
}
.chat-empty h3{margin:14px 0 7px;font-size:1.1rem}
.chat-empty p{margin:0;color:#777c85;font-size:.75rem}
.chat-message{display:flex;gap:10px;padding:10px 24px}
.chat-message b{font-size:.72rem}
.chat-message em{
  padding:2px 4px;border-radius:3px;color:#252830;background:#aeb5ee;font-size:.5rem;font-style:normal
}
.chat-message p{margin:4px 0;color:#a3a7af;font-size:.7rem}
.chat-input{
  position:absolute;left:18px;right:18px;bottom:16px;height:40px;padding:0 13px;
  display:flex;align-items:center;justify-content:space-between;
  border-radius:8px;color:#676c75;background:#242831;font-size:.68rem;
}

/* bot console */
.bot-console{
  overflow:hidden;border:1px solid var(--line);border-radius:21px;background:#101216;box-shadow:var(--shadow)
}
.console-head{
  height:58px;padding:0 18px;display:flex;align-items:center;justify-content:space-between;
  color:#888d96;border-bottom:1px solid var(--line);font-size:.72rem
}
.console-head span{display:flex;align-items:center;gap:8px}
.console-head i{width:8px;height:8px;border-radius:50%;background:#90c0ae;box-shadow:0 0 10px rgba(144,192,174,.4)}
.console-body{
  min-height:330px;max-height:330px;padding:22px;overflow:auto;
  font-family:"SFMono-Regular",Consolas,monospace;font-size:.74rem;line-height:1.7
}
.console-body p{margin:0 0 13px;color:#bdc0c6}
.console-body span{color:#aeb5ee}
.console-body b{color:#d9dbe0}
.console-body .result{
  padding:12px 14px;border-left:2px solid rgba(174,181,238,.48);
  background:rgba(255,255,255,.026);color:#9fa3ac
}
.command-row{
  padding:14px;display:flex;flex-wrap:wrap;gap:8px;border-top:1px solid var(--line)
}
.command-row button{
  padding:9px 10px;border:1px solid rgba(255,255,255,.095);border-radius:8px;
  color:#aeb2ba;background:#181b21;cursor:pointer;font-family:Consolas,monospace;font-size:.67rem
}
.command-row button:hover{color:#fff;border-color:rgba(174,181,238,.33)}

/* design */
.design-feature{
  width:min(var(--max),calc(100% - 36px));
  margin:auto;padding:120px 0 150px;
  display:grid;grid-template-columns:.72fr 1.28fr;gap:70px;align-items:center
}
.design-copy{max-width:470px}
.design-stack{position:relative;min-height:560px;perspective:1500px}
.design-sheet{
  position:absolute;width:68%;height:360px;padding:28px;
  border:1px solid rgba(255,255,255,.12);border-radius:18px;
  background:#15171c;box-shadow:0 38px 80px rgba(0,0,0,.42);
  transition:.35s ease
}
.design-sheet:hover{z-index:10!important;transform:translateY(-15px) rotate(0)!important}
.design-sheet>span,.design-sheet>small{
  color:#7e838d;font-size:.65rem;font-weight:800;letter-spacing:.12em
}
.design-sheet>small{position:absolute;left:28px;bottom:25px}
.sheet-one{
  left:0;top:92px;z-index:3;transform:rotate(-8deg);
  background:linear-gradient(145deg,#21242c,#14161b)
}
.sheet-one:before{
  content:"";position:absolute;inset:80px 28px 60px;border-radius:12px;
  background:radial-gradient(circle at 65% 35%,rgba(174,181,238,.28),transparent 18%),linear-gradient(135deg,#252a33,#101216)
}
.sheet-one strong{position:absolute;left:48px;bottom:82px;z-index:2;font-size:2rem;line-height:.92;letter-spacing:-.05em}
.sheet-two{
  right:4%;top:14px;z-index:2;transform:rotate(7deg);
  background:linear-gradient(150deg,#1e2229,#121419)
}
.overlay-frame{
  position:absolute;inset:74px 34px 58px;border:2px solid rgba(255,255,255,.16);border-radius:9px
}
.overlay-frame:before{
  content:"LIVE";position:absolute;top:15px;left:15px;padding:5px 7px;border-radius:5px;
  color:#fff;background:rgba(166,117,127,.7);font-size:.55rem;font-weight:800
}
.overlay-frame i{position:absolute;border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.025)}
.overlay-frame i:nth-child(1){left:15px;right:15px;bottom:15px;height:34px}
.overlay-frame i:nth-child(2){right:15px;top:15px;width:80px;height:110px}
.overlay-frame i:nth-child(3){left:15px;bottom:60px;width:110px;height:28px}
.sheet-three{
  right:0;bottom:0;z-index:1;transform:rotate(-2deg);
  background:linear-gradient(145deg,#20232a,#17191f)
}
.brand-lines{
  position:absolute;inset:78px 34px 60px;display:grid;grid-template-columns:90px 1fr;gap:20px;align-items:center
}
.brand-lines b{
  display:grid;place-items:center;width:90px;height:90px;border-radius:24px;
  background:rgba(174,181,238,.12);border:1px solid rgba(205,209,255,.18);font-size:2.4rem
}
.brand-lines i{grid-column:2;height:8px;border-radius:999px;background:#30343d}
.brand-lines i:nth-of-type(1){width:90%}.brand-lines i:nth-of-type(2){width:68%}.brand-lines i:nth-of-type(3){width:45%}

/* obs */
.obs-feature{padding:20px 18px 140px}
.obs-shell{
  width:min(1320px,100%);margin:auto;padding:42px;border:1px solid var(--line);border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.005)),#16181e;
  box-shadow:var(--shadow)
}
.obs-top{display:flex;align-items:end;justify-content:space-between;gap:25px;margin-bottom:33px}
.obs-top h2{max-width:720px;margin-bottom:0}
.live-indicator{
  display:inline-flex;align-items:center;gap:8px;padding:9px 11px;border:1px solid var(--line);
  border-radius:999px;color:#9da1aa;font-size:.67rem
}
.obs-interface{display:grid;grid-template-columns:1.3fr .7fr;gap:14px}
.obs-preview{
  min-height:410px;position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.09);
  border-radius:15px;background:radial-gradient(circle at 62% 35%,rgba(174,181,238,.16),transparent 22%),linear-gradient(145deg,#242831,#111318)
}
.preview-content{position:absolute;left:35px;bottom:35px}
.preview-content span{
  display:inline-block;padding:5px 7px;border-radius:4px;color:#fff;background:rgba(151,91,103,.75);font-size:.57rem;font-weight:800
}
.preview-content strong,.preview-content small{display:block}
.preview-content strong{margin:10px 0 6px;font-size:1.5rem}
.preview-content small{color:#868b94}
.camera-frame{
  position:absolute;right:24px;bottom:24px;width:150px;height:105px;border:1px solid rgba(255,255,255,.16);
  border-radius:8px;background:linear-gradient(145deg,#2b3039,#17191f)
}
.obs-controls{
  padding:19px;border:1px solid rgba(255,255,255,.09);border-radius:15px;background:#121419
}
.scene-list small,.audio-mixer>small{display:block;margin-bottom:11px;color:#6f747d;font-size:.62rem;font-weight:800;letter-spacing:.11em}
.scene-list button{
  width:100%;padding:10px 11px;margin-bottom:6px;border:1px solid transparent;border-radius:7px;
  color:#92969f;background:#1a1d23;text-align:left;cursor:pointer;font-size:.72rem
}
.scene-list button.active{color:#fff;border-color:rgba(174,181,238,.24);background:rgba(174,181,238,.09)}
.audio-mixer{margin-top:20px}
.audio-mixer>div{
  display:grid;grid-template-columns:45px 1fr 54px;gap:8px;align-items:center;margin:11px 0;font-size:.67rem;color:#92969f
}
.audio-mixer i{height:7px;border-radius:999px;background:#252932;overflow:hidden}
.audio-mixer i b{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#8db7ad,#d6d8de)}
.audio-mixer em{font-style:normal;text-align:right}
.stream-controls{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:24px}
.stream-controls button{
  padding:11px;border:1px solid var(--line);border-radius:8px;color:#a0a4ac;background:#1a1d23;font-size:.68rem;cursor:pointer
}
.stream-controls .control-primary{color:#f1f2f4;border-color:rgba(174,181,238,.23);background:rgba(174,181,238,.10)}

/* process */
.process-section{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:110px 0 130px;
  display:grid;grid-template-columns:.7fr 1.3fr;gap:70px
}
.process-head{position:sticky;top:118px;height:max-content}
.process-lines{border-top:1px solid var(--line)}
.process-line{
  padding:26px 0;display:grid;grid-template-columns:55px 1fr 1.15fr;gap:20px;
  align-items:start;border-bottom:1px solid var(--line)
}
.process-line>span{color:#777c85;font-size:.72rem}
.process-line h3{margin:0;font-size:1rem}
.process-line p{margin:0;color:#858a93;font-size:.81rem;line-height:1.6}

/* final cta */
.final-cta{
  width:min(var(--max),calc(100% - 36px));margin:0 auto 120px;padding:42px 0;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line)
}
.final-cta span{color:#aeb5ee;font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.final-cta h2{max-width:720px;margin:10px 0 0;font-size:clamp(2rem,4vw,3.5rem);letter-spacing:-.045em}

/* page heroes */
.page-hero{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:185px 0 90px
}
.page-hero h1{
  max-width:940px;margin:19px 0 22px;font-size:clamp(3rem,5.3vw,5.6rem);
  line-height:.96;letter-spacing:-.058em
}
.page-hero>p{max-width:760px;margin:0;color:var(--muted);font-size:1.05rem;line-height:1.75}

/* services chapters */
.service-chapter{
  position:relative;width:min(var(--max),calc(100% - 36px));margin:auto;padding:110px 0;
  display:grid;grid-template-columns:80px .82fr 1.18fr;gap:45px;align-items:center;
  border-top:1px solid var(--line)
}
.chapter-number{align-self:start;color:#5e636c;font-size:.68rem;letter-spacing:.12em}
.chapter-copy>span{color:#aeb5ee;font-size:.7rem;font-weight:800;letter-spacing:.14em}
.chapter-copy h2{margin:14px 0 18px;font-size:clamp(2.1rem,3.8vw,3.65rem);line-height:1.05;letter-spacing:-.045em}
.chapter-copy>p{color:var(--muted);line-height:1.75}
.feature-list{margin:30px 0 0;padding:0;list-style:none;border-top:1px solid var(--line)}
.feature-list li{
  padding:14px 0;display:grid;grid-template-columns:130px 1fr;gap:20px;border-bottom:1px solid var(--line)
}
.feature-list b{font-size:.78rem}
.feature-list span{color:#858a93;font-size:.77rem;line-height:1.5}
.chapter-visual{min-height:430px}
.dark-chapter:before{
  content:"";position:absolute;left:50%;width:100vw;height:100%;transform:translateX(-50%);z-index:-1;
  background:rgba(10,12,15,.22);border-top:1px solid rgba(255,255,255,.025);border-bottom:1px solid rgba(255,255,255,.025)
}
.server-map{position:relative}
.map-node,.map-branch{
  position:absolute;border:1px solid var(--line);border-radius:13px;background:#17191f;box-shadow:0 22px 50px rgba(0,0,0,.25)
}
.map-node{left:38%;top:18px;padding:15px 20px;color:#f3f4f6;font-size:.73rem;font-weight:800}
.map-node:after{
  content:"";position:absolute;left:50%;top:100%;width:1px;height:65px;background:rgba(255,255,255,.14)
}
.map-branch{top:160px;width:30%;min-height:210px;padding:17px}
.map-branch:before{
  content:"";position:absolute;left:50%;bottom:100%;width:1px;height:54px;background:rgba(255,255,255,.14)
}
.map-branch span{display:block;margin-bottom:12px;color:#727781;font-size:.62rem;font-weight:800;letter-spacing:.1em}
.map-branch i{display:block;padding:8px 6px;border-bottom:1px solid rgba(255,255,255,.055);color:#9da1aa;font-size:.7rem;font-style:normal}
.branch-a{left:0}.branch-b{left:35%}.branch-c{right:0}
.code-visual{
  overflow:hidden;border:1px solid var(--line);border-radius:17px;background:#101216;box-shadow:var(--shadow)
}
.code-top{
  height:50px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;
  color:#777c85;border-bottom:1px solid var(--line);font-size:.67rem
}
.code-top small{color:#8ebfac}
.code-visual pre{margin:0;padding:28px;white-space:pre-wrap;color:#a5a9b1;font:500 .76rem/1.8 Consolas,monospace}
.code-visual code span{color:#aeb5ee}.code-visual code b{color:#dfe1e7}
.palette-visual{
  padding:27px;border:1px solid var(--line);border-radius:17px;background:#17191f;box-shadow:var(--shadow)
}
.palette-main{
  min-height:245px;padding:26px;display:flex;flex-direction:column;justify-content:flex-end;
  border-radius:12px;background:radial-gradient(circle at 65% 30%,rgba(174,181,238,.19),transparent 20%),linear-gradient(145deg,#292d36,#111318)
}
.palette-main b{font-size:2.8rem;letter-spacing:.08em}.palette-main span{color:#979ba4;font-size:.68rem;letter-spacing:.16em}
.palette-swatches{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:15px 0}
.palette-swatches i{height:36px;border-radius:8px;background:#101216}
.palette-swatches i:nth-child(2){background:#30343d}.palette-swatches i:nth-child(3){background:#aeb5ee}.palette-swatches i:nth-child(4){background:#8ebfc3}
.palette-type{padding-top:15px;display:flex;align-items:center;gap:17px;border-top:1px solid var(--line)}
.palette-type strong{font-size:2rem}.palette-type span{color:#858a93;font-size:.72rem}
.signal-visual{
  padding:25px;border:1px solid var(--line);border-radius:17px;background:#121419;box-shadow:var(--shadow)
}
.signal-screen{
  min-height:245px;padding:25px;display:flex;flex-direction:column;justify-content:flex-end;
  border-radius:11px;background:radial-gradient(circle at 70% 25%,rgba(142,191,195,.13),transparent 22%),linear-gradient(145deg,#282c34,#13151a)
}
.signal-screen span{width:max-content;padding:5px 7px;border-radius:4px;background:rgba(151,91,103,.65);font-size:.55rem;font-weight:800}
.signal-screen b{margin:10px 0 4px;font-size:1.8rem}.signal-screen small{color:#888d96}
.signal-bars{margin-top:19px}
.signal-bars>div{display:grid;grid-template-columns:55px 1fr;gap:12px;align-items:center;margin:13px 0;color:#898e97;font-size:.68rem}
.signal-bars i{height:8px;border-radius:999px;overflow:hidden;background:#242831}
.signal-bars b{display:block;height:100%;background:linear-gradient(90deg,#8ebfc3,#d9dbe0)}
.moderation-flow{display:flex;align-items:center;justify-content:center;gap:10px}
.moderation-flow>div{
  width:31%;min-height:170px;padding:20px;display:flex;flex-direction:column;justify-content:space-between;
  border:1px solid var(--line);border-radius:14px;background:#17191f;box-shadow:0 22px 50px rgba(0,0,0,.22)
}
.moderation-flow span{color:#777c85;font-size:.68rem}.moderation-flow b{font-size:.87rem;line-height:1.5}
.moderation-flow>i{width:22px;height:1px;background:rgba(255,255,255,.16)}

/* team */
.story-section{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:80px 0 120px;
  display:grid;grid-template-columns:1.15fr .85fr;gap:80px;border-top:1px solid var(--line)
}
.story-statement>span{color:#aeb5ee;font-size:.7rem;font-weight:800;letter-spacing:.14em}
.story-statement blockquote{margin:22px 0 0;font-size:clamp(2.1rem,4vw,3.75rem);line-height:1.06;letter-spacing:-.045em}
.story-text{padding-top:36px}
.story-text p{color:var(--muted);font-size:1rem;line-height:1.8}
.experience-section{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:50px 0 115px;
  display:grid;grid-template-columns:1fr 1px 1fr 1px 1fr;gap:35px;align-items:center
}
.experience-divider{width:1px;height:90px;background:var(--line)}
.experience-number{text-align:center}
.experience-number strong{display:block;font-size:clamp(3.1rem,6vw,5.7rem);letter-spacing:-.06em}
.experience-number span{color:#8d919a;font-size:.8rem}
.principles-section{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:110px 0;
  display:grid;grid-template-columns:.65fr 1.35fr;gap:70px;border-top:1px solid var(--line)
}
.principles-head h2{margin:16px 0;font-size:clamp(2.2rem,4vw,3.8rem);letter-spacing:-.045em}
.principles-list{border-top:1px solid var(--line)}
.principle{padding:25px 0;display:grid;grid-template-columns:50px 170px 1fr;gap:20px;border-bottom:1px solid var(--line)}
.principle span{color:#676c75;font-size:.7rem}.principle h3{margin:0;font-size:1rem}.principle p{margin:0;color:#898e97;line-height:1.6;font-size:.8rem}
.team-join{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:100px 0 140px;
  display:grid;grid-template-columns:.75fr 1.25fr;gap:80px;align-items:center
}
.team-join-copy h2{margin:16px 0;font-size:clamp(2.3rem,4vw,4rem);letter-spacing:-.048em}
.team-join-copy p{color:var(--muted);line-height:1.75;margin-bottom:28px}
.role-orbit{position:relative;min-height:480px}
.role-orbit b{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  display:grid;place-items:center;width:180px;height:180px;border-radius:50%;
  text-align:center;background:rgba(174,181,238,.09);border:1px solid rgba(194,199,251,.18)
}
.role-orbit span{
  position:absolute;padding:12px 15px;border:1px solid var(--line);border-radius:999px;
  color:#a2a6af;background:#17191f;font-size:.72rem;box-shadow:0 14px 35px rgba(0,0,0,.22)
}
.role-orbit span:nth-child(1){top:7%;left:43%}
.role-orbit span:nth-child(2){top:29%;right:4%}
.role-orbit span:nth-child(3){bottom:15%;right:15%}
.role-orbit span:nth-child(4){bottom:6%;left:18%}
.role-orbit span:nth-child(5){top:28%;left:3%}

/* FAQ */
.faq-layout{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:20px 0 140px;
  display:grid;grid-template-columns:.38fr .62fr;gap:75px
}
.faq-aside{position:sticky;top:120px;height:max-content}
.faq-aside>span{color:#aeb5ee;font-size:.68rem;font-weight:800;letter-spacing:.14em}
.faq-aside h2{margin:14px 0;font-size:2.2rem;letter-spacing:-.04em}
.faq-aside p{color:var(--muted);line-height:1.7;margin-bottom:25px}
.faq-accordion{border-top:1px solid var(--line)}
.faq-entry{border-bottom:1px solid var(--line)}
.faq-entry button{
  width:100%;padding:24px 0;display:grid;grid-template-columns:50px 1fr 24px;gap:12px;align-items:center;
  border:0;background:none;text-align:left;cursor:pointer
}
.faq-entry button span{color:#666b74;font-size:.68rem}
.faq-entry button b{font-size:.96rem}
.faq-entry button i{font-style:normal;font-size:1.25rem;transition:.25s ease}
.faq-entry>div{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-entry p{margin:0;padding:0 0 25px 62px;color:#8e929b;line-height:1.7;font-size:.84rem}
.faq-entry.open>div{max-height:230px}
.faq-entry.open button i{transform:rotate(45deg)}

/* configurator */
.configurator-layout{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:20px 0 140px;
  display:grid;grid-template-columns:1fr 320px;gap:28px;align-items:start
}
.wizard{
  overflow:hidden;border:1px solid var(--line);border-radius:20px;background:#181a20;box-shadow:var(--shadow)
}
.wizard-progress{
  padding:13px;display:grid;grid-template-columns:repeat(4,1fr);gap:7px;border-bottom:1px solid var(--line)
}
.wizard-progress button{
  min-height:48px;border:1px solid transparent;border-radius:10px;color:#777c85;background:none;cursor:pointer;font-size:.71rem;font-weight:700
}
.wizard-progress button span{
  display:inline-grid;place-items:center;width:23px;height:23px;margin-right:6px;border-radius:7px;background:#22252c
}
.wizard-progress button.active{
  color:#f1f2f4;background:rgba(174,181,238,.08);border-color:rgba(190,195,247,.16)
}
.wizard-progress button.active span{background:#aeb5ee;color:#17191f}
.wizard-step{display:none;padding:34px}
.wizard-step.active{display:block}
.step-header{display:flex;gap:18px;margin-bottom:30px}
.step-header>span{
  display:grid;place-items:center;flex:0 0 44px;height:44px;border-radius:12px;
  color:#dfe1ff;background:rgba(174,181,238,.10);border:1px solid rgba(197,201,251,.18);font-weight:800
}
.step-header h2{margin:0 0 7px;font-size:1.7rem}
.step-header p{margin:0;color:#858a93;line-height:1.5;font-size:.82rem}
.profile-selector{border-top:1px solid var(--line)}
.profile-selector label{display:block}
.profile-selector input{position:absolute;opacity:0}
.profile-selector label>span{
  padding:22px 8px;display:grid;grid-template-columns:160px 1fr;gap:20px;
  border-bottom:1px solid var(--line);cursor:pointer;transition:.2s ease
}
.profile-selector b{font-size:.9rem}
.profile-selector small{color:#878c95;line-height:1.55}
.profile-selector input:checked+span{
  padding-left:18px;background:linear-gradient(90deg,rgba(174,181,238,.11),transparent 75%);
  box-shadow:inset 2px 0 0 #aeb5ee
}
.service-selector{border-top:1px solid var(--line)}
.service-row{
  position:relative;padding:18px 6px;display:grid;grid-template-columns:35px 1fr 50px;gap:14px;align-items:center;
  border-bottom:1px solid var(--line);cursor:pointer
}
.service-row input{position:absolute;opacity:0}
.service-toggle{
  width:30px;height:18px;border-radius:999px;background:#292d35;border:1px solid rgba(255,255,255,.08);transition:.22s ease
}
.service-toggle:before{
  content:"";display:block;width:12px;height:12px;margin:2px;border-radius:50%;background:#7c818a;transition:.22s ease
}
.service-row input:checked~.service-toggle{background:rgba(174,181,238,.28);border-color:rgba(190,195,247,.36)}
.service-row input:checked~.service-toggle:before{transform:translateX(12px);background:#e3e5f6}
.service-row-main b,.service-row-main small{display:block}
.service-row-main b{margin-bottom:5px;font-size:.86rem}
.service-row-main small{color:#828790;line-height:1.45}
.service-row em{color:#cbd0f7;font-style:normal;font-size:.75rem;text-align:right}
.selection-warning{display:none;color:#c99ca5;font-size:.75rem}
.selection-warning.show{display:block}
.step-actions{margin-top:30px;display:flex;align-items:center;justify-content:space-between;gap:10px}
.scope-layout,.contact-fields,.form-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:16px
}
.scope-layout label,.contact-fields label,.form-grid label{
  display:flex;flex-direction:column;gap:8px;color:#d8dae0;font-size:.78rem;font-weight:650
}
.full-width{grid-column:1/-1}
input,select,textarea{
  width:100%;padding:13px 14px;border:1px solid rgba(255,255,255,.105);border-radius:10px;
  color:#f1f2f4;background:#121419;outline:none;transition:.2s ease
}
select option{color:#f1f2f4;background:#121419}
input:focus,select:focus,textarea:focus{
  border-color:rgba(174,181,238,.48);box-shadow:0 0 0 3px rgba(174,181,238,.07)
}
textarea{min-height:120px;resize:vertical}
.range-control{
  padding:15px;border:1px solid var(--line);border-radius:12px;background:#15171c
}
.range-control>span{display:flex;align-items:center;justify-content:space-between}
.range-control output{
  display:grid;place-items:center;width:38px;height:31px;border-radius:8px;color:#e0e2f4;background:rgba(174,181,238,.08)
}
.range-control input{padding:0;accent-color:#aeb5ee}
.privacy-check{
  margin-top:20px;display:flex;align-items:flex-start;gap:10px;color:#838892;font-size:.75rem;line-height:1.5
}
.privacy-check input{width:17px;height:17px;padding:0;accent-color:#aeb5ee}
.live-summary{
  position:sticky;top:112px;padding:25px;border:1px solid rgba(194,199,251,.17);border-radius:18px;
  background:rgba(23,25,31,.92);backdrop-filter:blur(15px);box-shadow:var(--shadow)
}
.live-summary h2{margin:9px 0 20px;font-size:1.55rem}
.summary-services{min-height:115px;padding:15px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.summary-services p{margin:0;color:#747983;font-size:.75rem}
.summary-services span{
  display:block;padding:6px 0;color:#b7bac1;font-size:.73rem
}
.summary-services span:before{content:"✓";margin-right:8px;color:#aeb5ee}
.live-summary dl{margin:18px 0}
.live-summary dl>div{padding:7px 0;display:flex;justify-content:space-between;gap:15px}
.live-summary dt{color:#868b94;font-size:.74rem}
.live-summary dd{margin:0;font-weight:800;font-size:.76rem}
.live-summary .summary-price{
  margin-top:9px;padding-top:15px;border-top:1px solid var(--line)
}
.live-summary .summary-price dd{color:#d8dcff;font-size:1.35rem}
.live-summary>small{display:block;color:#747983;line-height:1.55;font-size:.67rem}

/* application */
.application-layout{
  width:min(var(--max),calc(100% - 36px));margin:auto;padding:10px 0 140px;
  display:grid;grid-template-columns:320px 1fr;gap:35px;align-items:start
}
.application-roles{position:sticky;top:115px}
.application-roles h2{margin:14px 0 22px;font-size:2rem}
.role-list{border-top:1px solid var(--line)}
.role-list button{
  width:100%;padding:14px 0;display:grid;grid-template-columns:38px 1fr;gap:8px;
  border:0;border-bottom:1px solid var(--line);color:#a1a5ae;background:none;cursor:pointer;text-align:left;font-size:.78rem
}
.role-list button:hover{color:#fff;padding-left:8px}
.role-list span{color:#646973}
.local-note{margin-top:24px;color:#7e838c;font-size:.73rem;line-height:1.6}
.application-form-new{border-top:1px solid var(--line)}
.form-section{padding:28px 0;border-bottom:1px solid var(--line)}
.form-section>span{display:block;margin-bottom:20px;color:#aeb5ee;font-size:.67rem;font-weight:800;letter-spacing:.12em}
.application-submit{margin-top:24px}

/* contact */
.contact-hero{
  width:min(var(--max),calc(100% - 36px));min-height:88vh;margin:auto;padding:180px 0 90px;
  display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:center
}
.contact-copy h1{margin:18px 0 22px;font-size:clamp(3rem,5vw,5.2rem);line-height:.97;letter-spacing:-.057em}
.contact-copy>p{color:var(--muted);line-height:1.75}
.contact-route{border-top:1px solid var(--line)}
.contact-route>div{
  padding:21px 0;display:grid;grid-template-columns:45px 170px 1fr;gap:15px;border-bottom:1px solid var(--line)
}
.contact-route span{color:#666b74;font-size:.68rem}
.contact-route b{font-size:.86rem}
.contact-route p{margin:0;color:#838892;font-size:.76rem;line-height:1.55}
.contact-note{
  width:min(var(--max),calc(100% - 36px));margin:0 auto 120px;padding:25px 0;
  display:grid;grid-template-columns:120px 1fr;gap:25px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)
}
.contact-note span{color:#aeb5ee;font-size:.68rem;font-weight:800;letter-spacing:.14em}
.contact-note p{margin:0;color:#8b9099;line-height:1.7}

/* modals */
.modal{position:fixed;inset:0;z-index:3000;display:none;place-items:center;padding:20px}
.modal.open{display:grid}
.modal-backdrop{position:absolute;inset:0;background:rgba(6,7,9,.82);backdrop-filter:blur(12px)}
.modal-panel{
  position:relative;width:min(760px,100%);max-height:90vh;overflow:auto;padding:32px;
  border:1px solid var(--line-strong);border-radius:20px;background:#191b21;box-shadow:0 40px 110px rgba(0,0,0,.62)
}
.modal-panel h2{margin:15px 0 10px;font-size:2rem}
.modal-panel>p{color:#9499a2;line-height:1.6}
.modal-close{
  position:absolute;right:15px;top:12px;border:0;background:none;color:#fff;font-size:1.8rem;cursor:pointer
}
.modal-buttons{display:flex;flex-wrap:wrap;gap:10px;margin:20px 0}
.modal-panel pre{
  padding:18px;max-height:360px;overflow:auto;white-space:pre-wrap;
  border:1px solid var(--line);border-radius:12px;color:#c8cbd1;background:#101216;
  font:500 .72rem/1.65 Consolas,monospace
}
.copy-feedback{color:#bec4f3;font-size:.78rem;font-weight:700}

/* footer */
.site-footer{
  margin-top:40px;padding:58px max(22px,calc((100vw - var(--max))/2)) 25px;
  background:#101216;border-top:1px solid var(--line)
}
.footer-inner{display:grid;grid-template-columns:1fr auto;gap:70px}
.footer-intro p{max-width:540px;color:#777c85;line-height:1.65;font-size:.8rem}
.footer-columns{display:grid;grid-template-columns:1fr 1fr;gap:65px}
.footer-columns>div{display:flex;flex-direction:column;gap:10px;min-width:130px}
.footer-columns strong{margin-bottom:4px;color:#d8dae0;font-size:.75rem}
.footer-columns a{color:#777c85;font-size:.75rem}
.footer-columns a:hover{color:#fff}
.footer-bottom{
  margin-top:35px;padding-top:20px;display:flex;justify-content:space-between;gap:20px;
  border-top:1px solid rgba(255,255,255,.07);color:#5f646d;font-size:.68rem
}

/* responsive */
@media(max-width:1050px){
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;top:76px;left:18px;right:18px;padding:16px;
    display:none;flex-direction:column;align-items:stretch;gap:8px;
    border:1px solid var(--line);border-radius:15px;background:#17191f;box-shadow:var(--shadow)
  }
  .nav-links.open{display:flex}
  .nav-links>a{padding:10px}
  .hero{grid-template-columns:1fr;padding-top:145px}
  .hero-copy h1{max-width:12ch}
  .hero-stage{min-height:560px}
  .editorial-section,.editorial-section.reverse,.design-feature,.process-section,
  .story-section,.principles-section,.team-join,.faq-layout,.contact-hero{
    grid-template-columns:1fr
  }
  .editorial-section.reverse .section-copy,.editorial-section.reverse .bot-console{grid-column:auto;grid-row:auto}
  .sticky-copy,.process-head,.faq-aside,.application-roles{position:static}
  .discord-builder,.bot-console{order:2}
  .service-chapter{grid-template-columns:50px 1fr;gap:25px}
  .chapter-visual{grid-column:2}
  .configurator-layout{grid-template-columns:1fr}
  .live-summary{position:static}
  .application-layout{grid-template-columns:1fr}
  .contact-route>div{grid-template-columns:45px 150px 1fr}
}

@media(max-width:760px){
  .site-header{padding:0 10px;top:10px}
  .nav-shell{min-height:60px;padding:8px 10px 8px 13px}
  .brand-symbol{width:32px;height:32px}
  .hero,.page-hero,.editorial-section,.design-feature,.process-section,.service-chapter,
  .story-section,.experience-section,.principles-section,.team-join,.faq-layout,
  .configurator-layout,.application-layout,.contact-hero,.contact-note,.final-cta{
    width:min(100% - 24px,var(--max))
  }
  .hero{padding-top:120px;gap:24px}
  .hero-copy h1{font-size:clamp(2.65rem,12vw,4rem)}
  .hero-stage{min-height:440px}
  .stage-main{inset:45px 4px 38px 12px}
  .stage-content{padding:13px}
  .stage-layout{grid-template-columns:44px 1fr}
  .stage-sidebar{padding:12px 6px}
  .stage-metrics{grid-template-columns:1fr}
  .stage-metrics>div:nth-child(2){display:none}
  .stage-chart{height:112px}
  .stage-bottom{grid-template-columns:1fr 1fr}
  .stage-bottom>div:nth-child(3){display:none}
  .float-one{right:0}.float-two{left:0}
  .editorial-section,.design-feature{padding:85px 0;gap:35px}
  .section-copy h2,.design-copy h2,.obs-top h2{font-size:2.45rem}
  .builder-toolbar{align-items:flex-start;flex-direction:column}
  .builder-tabs{width:100%;overflow:auto}
  .discord-ui{grid-template-columns:50px 140px 1fr;overflow:auto}
  .chat-panel{min-width:280px}
  .design-stack{min-height:450px}
  .design-sheet{width:78%;height:300px;padding:20px}
  .sheet-one strong{font-size:1.5rem}
  .obs-shell{padding:22px 15px}
  .obs-top{align-items:flex-start;flex-direction:column}
  .obs-interface{grid-template-columns:1fr}
  .obs-preview{min-height:310px}
  .camera-frame{width:110px;height:78px}
  .process-section{padding:75px 0}
  .process-line{grid-template-columns:40px 1fr}
  .process-line p{grid-column:2}
  .final-cta{align-items:flex-start;flex-direction:column;padding:34px 0}
  .final-cta .button{width:100%}
  .page-hero{padding:140px 0 65px}
  .page-hero h1{font-size:clamp(2.65rem,12vw,4rem)}
  .service-chapter{padding:75px 0;grid-template-columns:1fr}
  .chapter-number{display:none}
  .chapter-visual{grid-column:auto;min-height:350px}
  .feature-list li{grid-template-columns:1fr;gap:5px}
  .server-map{min-height:550px}
  .map-node{left:28%}
  .map-branch{width:45%}.branch-a{left:0}.branch-b{left:auto;right:0}.branch-c{top:390px;left:27%}
  .moderation-flow{align-items:stretch;flex-direction:column}
  .moderation-flow>div{width:100%;min-height:100px}
  .moderation-flow>i{width:1px;height:18px;align-self:center}
  .story-section{padding:55px 0}
  .experience-section{grid-template-columns:1fr;padding:35px 0 75px}
  .experience-divider{width:100%;height:1px}
  .principles-section,.team-join{padding:75px 0}
  .principle{grid-template-columns:40px 1fr}
  .principle p{grid-column:2}
  .role-orbit{min-height:420px}
  .faq-layout{gap:45px;padding-bottom:90px}
  .faq-entry p{padding-left:0}
  .wizard-progress{grid-template-columns:1fr 1fr}
  .wizard-step{padding:24px 17px}
  .profile-selector label>span{grid-template-columns:1fr;gap:6px}
  .scope-layout,.contact-fields,.form-grid{grid-template-columns:1fr}
  .full-width{grid-column:auto}
  .step-actions{align-items:stretch;flex-direction:column-reverse}
  .step-actions .button{width:100%}
  .application-layout{padding-bottom:90px}
  .contact-hero{padding-top:140px}
  .contact-route>div{grid-template-columns:38px 1fr}
  .contact-route p{grid-column:2}
  .contact-note{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-columns{gap:30px}
  .footer-bottom{align-items:flex-start;flex-direction:column}
  .modal-panel{padding:27px 17px}
  .modal-buttons{flex-direction:column}
  .modal-buttons .button{width:100%}
}

/* =========================================================
   SERVER MAP FIX + BETTER TEAM ORBIT
   ========================================================= */

/* --- Service page: Discord map cleaner / fixed --- */
.server-map{
  position:relative;
  min-height:470px;
  padding-top:8px;
}

.server-map:before{
  content:"";
  position:absolute;
  left:14%;
  right:14%;
  top:148px;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.12) 12%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.12) 88%,
    transparent 100%
  );
}

.server-map:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 15%, rgba(174,181,238,.08), transparent 22%);
  opacity:.85;
}

.map-node,
.map-branch{
  position:absolute;
  border:1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008)),
    #17191f;
  box-shadow:
    0 24px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.map-node{
  left:50%;
  top:20px;
  transform:translateX(-50%);
  min-width:154px;
  text-align:center;
  padding:15px 24px;
  border-radius:16px;
  color:#f3f4f6;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.02em;
}

.map-node:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(174,181,238,.09), transparent 55%);
  pointer-events:none;
}

.map-node:after{
  content:"";
  position:absolute;
  left:50%;
  top:100%;
  transform:translateX(-50%);
  width:1px;
  height:74px;
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
}

.map-branch{
  top:176px;
  width:29.5%;
  min-height:236px;
  padding:20px 20px 18px;
  border-radius:18px;
  overflow:hidden;
}

.map-branch:before{
  content:"";
  position:absolute;
  left:50%;
  bottom:100%;
  transform:translateX(-50%);
  width:1px;
  height:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
}

.map-branch:after{
  content:"";
  position:absolute;
  left:50%;
  top:-6px;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background:#b8beef;
  box-shadow:0 0 0 4px rgba(174,181,238,.10);
}

.map-branch span{
  display:block;
  margin-bottom:14px;
  color:#9196a0;
  font-size:.64rem;
  font-weight:800;
  letter-spacing:.16em;
}

.map-branch i{
  display:block;
  padding:10px 6px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:#c6c9cf;
  font-size:.78rem;
  font-style:normal;
}

.map-branch i:last-child{
  border-bottom:0;
}

.branch-a{left:0}
.branch-b{left:35.25%}
.branch-c{right:0}

/* --- Team page: orbit cooler / more polished --- */
.role-orbit{
  position:relative;
  min-height:520px;
  border-radius:28px;
  isolation:isolate;
}

.role-orbit:before,
.role-orbit:after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  pointer-events:none;
}

.role-orbit:before{
  width:420px;
  height:420px;
  border:1px dashed rgba(255,255,255,.10);
  opacity:.7;
}

.role-orbit:after{
  width:290px;
  height:290px;
  border:1px solid rgba(174,181,238,.12);
  box-shadow:
    0 0 0 24px rgba(255,255,255,.015),
    0 0 0 1px rgba(255,255,255,.03) inset;
}

.role-orbit b{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:grid;
  place-items:center;
  width:210px;
  height:210px;
  border-radius:50%;
  z-index:2;
  color:#f7f8fa;
  text-align:center;
  font-size:1.05rem;
  line-height:1.15;
  letter-spacing:.02em;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.11), transparent 25%),
    linear-gradient(180deg, rgba(174,181,238,.18), rgba(255,255,255,.04)),
    #232731;
  border:1px solid rgba(206,211,255,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 24px 70px rgba(0,0,0,.34);
}

.role-orbit b:before{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.05);
}

.role-orbit span{
  position:absolute;
  z-index:3;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  color:#d5d8de;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    rgba(22,24,30,.96);
  box-shadow:
    0 14px 35px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.04);
  font-size:.76rem;
  white-space:nowrap;
  animation:roleFloat 6s ease-in-out infinite;
}

.role-orbit span:before{
  content:"";
  position:absolute;
  inset:auto auto auto 50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#aeb5ee;
  box-shadow:0 0 0 4px rgba(174,181,238,.10);
}

.role-orbit span:nth-child(1){
  top:5%;
  left:50%;
  transform:translateX(-50%);
}
.role-orbit span:nth-child(1):before{
  bottom:-30px;
  transform:translateX(-50%);
}

.role-orbit span:nth-child(2){
  top:25%;
  right:3%;
  animation-delay:.7s;
}
.role-orbit span:nth-child(2):before{
  left:-28px;
  top:50%;
  transform:translateY(-50%);
}

.role-orbit span:nth-child(3){
  bottom:12%;
  right:13%;
  animation-delay:1.3s;
}
.role-orbit span:nth-child(3):before{
  left:-28px;
  top:50%;
  transform:translateY(-50%);
}

.role-orbit span:nth-child(4){
  bottom:8%;
  left:16%;
  animation-delay:1.8s;
}
.role-orbit span:nth-child(4):before{
  right:-28px;
  left:auto;
  top:50%;
  transform:translateY(-50%);
}

.role-orbit span:nth-child(5){
  top:25%;
  left:2%;
  animation-delay:2.2s;
}
.role-orbit span:nth-child(5):before{
  right:-28px;
  left:auto;
  top:50%;
  transform:translateY(-50%);
}

@keyframes roleFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* Preserve the top label centering float animation */
.role-orbit span:nth-child(1){
  animation-name:roleFloatCenter;
}
@keyframes roleFloatCenter{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-8px)}
}

/* Mobile cleanup for both sections */
@media(max-width:760px){
  .server-map{
    min-height:620px;
  }

  .server-map:before{
    display:none;
  }

  .map-node{
    top:10px;
    min-width:146px;
  }

  .map-node:after{
    height:52px;
  }

  .map-branch{
    width:100%;
    left:0 !important;
    right:auto !important;
    min-height:120px;
    top:auto;
    position:relative;
    margin-top:16px;
  }

  .map-branch:before,
  .map-branch:after{
    display:none;
  }

  .branch-a{margin-top:92px}
  .branch-b{margin-top:16px}
  .branch-c{margin-top:16px}

  .role-orbit{
    min-height:500px;
  }

  .role-orbit:before{
    width:300px;
    height:300px;
  }

  .role-orbit:after{
    width:220px;
    height:220px;
  }

  .role-orbit b{
    width:170px;
    height:170px;
    font-size:.92rem;
  }

  .role-orbit span{
    font-size:.71rem;
    padding:10px 13px;
  }

  .role-orbit span:nth-child(1){top:2%}
  .role-orbit span:nth-child(2){top:19%; right:0}
  .role-orbit span:nth-child(3){bottom:9%; right:5%}
  .role-orbit span:nth-child(4){bottom:6%; left:6%}
  .role-orbit span:nth-child(5){top:19%; left:0}
}


/* =========================================================
   CREATORLAB LOGO UPDATE
   ========================================================= */
.brand{
  display:inline-flex;
  align-items:center;
}
.brand-logo{
  display:block;
  height:38px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.24));
}
.brand-footer .brand-logo{
  height:40px;
}
.brand-symbol,
.brand-word{
  display:none !important;
}
@media(max-width:760px){
  .brand-logo{height:32px}
  .brand-footer .brand-logo{height:34px}
}


/* =========================================================
   CREATORLAB FINAL SVG LOGO
   ========================================================= */
.brand-logo{
  display:block;
  width:auto;
  height:42px;
  max-width:245px;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.28));
}
.brand-footer .brand-logo{
  height:46px;
  max-width:270px;
}
@media(max-width:760px){
  .brand-logo{height:35px;max-width:205px}
  .brand-footer .brand-logo{height:39px;max-width:225px}
}

/* =========================================================
   STARTER TWITCH MOD TEAM
   ========================================================= */

.mod-team-feature{
  width:min(var(--max),calc(100% - 36px));
  margin:auto;
  padding:130px 0 145px;
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:75px;
  align-items:center;
  border-top:1px solid var(--line);
}

.mod-team-copy h2{
  margin:16px 0 18px;
  font-size:clamp(2.4rem,4vw,4.1rem);
  line-height:1.03;
  letter-spacing:-.047em;
}

.mod-team-copy>p{
  color:var(--muted);
  line-height:1.75;
}

.mod-team-points{
  margin-top:28px;
  border-top:1px solid var(--line);
}

.mod-team-points>div{
  padding:15px 0;
  display:grid;
  grid-template-columns:38px 1fr;
  gap:12px;
  border-bottom:1px solid var(--line);
}

.mod-team-points span{
  color:#6e737d;
  font-size:.68rem;
}

.mod-team-points p{
  margin:0;
  color:#969ba4;
  font-size:.78rem;
  line-height:1.55;
}

.mod-team-points b{
  color:#e4e6ea;
}

.mod-team-console{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.11);
  border-radius:21px;
  background:
    radial-gradient(circle at 85% 8%,rgba(174,181,238,.08),transparent 24%),
    #13151a;
  box-shadow:var(--shadow);
}

.mod-console-head{
  min-height:70px;
  padding:0 21px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}

.mod-console-head small,
.mod-console-head strong{
  display:block;
}

.mod-console-head small{
  margin-bottom:5px;
  color:#737882;
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.13em;
}

.mod-console-head strong{
  font-size:1rem;
}

.mod-console-head>span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:#aeb2ba;
  font-size:.66rem;
}

.mod-console-head>span i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#8fc0ad;
  box-shadow:0 0 10px rgba(143,192,173,.45);
}

.mod-live-row{
  padding:21px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.012);
}

.mod-live-channel{
  display:flex;
  align-items:center;
  gap:13px;
}

.live-badge{
  display:inline-grid;
  place-items:center;
  min-width:42px;
  height:23px;
  padding:0 7px;
  border-radius:5px;
  color:#fff;
  background:linear-gradient(135deg,#cf3142,#8f1f30);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.06em;
}

.mod-live-channel b,
.mod-live-channel small{
  display:block;
}

.mod-live-channel b{
  font-size:.82rem;
}

.mod-live-channel small{
  margin-top:4px;
  color:#787d87;
  font-size:.67rem;
}

.mod-coverage{
  color:#9b9fa8;
  font-size:.68rem;
  white-space:nowrap;
}

.mod-roster{
  padding:9px 20px;
}

.mod-member{
  padding:13px 0;
  display:grid;
  grid-template-columns:38px 1fr auto;
  gap:12px;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.mod-member:last-child{
  border-bottom:0;
}

.mod-avatar{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:11px;
  color:#e8e9ed;
  background:linear-gradient(145deg,#343844,#20232a);
  border:1px solid rgba(255,255,255,.10);
  font-size:.62rem;
  font-weight:800;
}

.mod-member b,
.mod-member small{
  display:block;
}

.mod-member b{
  font-size:.76rem;
}

.mod-member small{
  margin-top:3px;
  color:#727781;
  font-size:.63rem;
}

.mod-member em{
  color:#aeb5ee;
  font-size:.65rem;
  font-style:normal;
}

.mod-activity{
  padding:16px 20px;
  border-top:1px solid var(--line);
  background:#101216;
}

.mod-activity>div{
  padding:6px 0;
  display:grid;
  grid-template-columns:45px 1fr;
  gap:10px;
}

.mod-activity span{
  color:#696e77;
  font:500 .62rem Consolas,monospace;
}

.mod-activity p{
  margin:0;
  color:#969aa3;
  font-size:.67rem;
}

/* Service page Starter Mod chapter */
.availability-note{
  margin-top:20px;
  padding:13px 15px;
  border-left:2px solid rgba(174,181,238,.48);
  color:#989da6!important;
  background:rgba(174,181,238,.045);
  font-size:.75rem;
}

.starter-mod-visual{
  overflow:hidden;
  min-height:430px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:17px;
  background:
    radial-gradient(circle at 82% 4%,rgba(174,181,238,.09),transparent 25%),
    #121419;
  box-shadow:var(--shadow);
}

.starter-mod-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.starter-mod-top span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#c5c8cf;
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.10em;
}

.starter-mod-top span i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#8fc0ad;
  box-shadow:0 0 10px rgba(143,192,173,.45);
}

.starter-mod-top small{
  color:#717680;
}

.starter-channel{
  padding:25px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.starter-channel>div{
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:10px;
  align-items:center;
}

.starter-channel .live-badge{
  grid-row:1/3;
}

.starter-channel b,
.starter-channel small{
  display:block;
}

.starter-channel b{
  font-size:.86rem;
}

.starter-channel small{
  margin-top:4px;
  color:#727781;
  font-size:.66rem;
}

.starter-channel>strong{
  font-size:2.5rem;
  letter-spacing:-.05em;
  color:#d8dbe1;
}

.starter-roster{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.starter-roster>div{
  padding:13px 0;
  display:grid;
  grid-template-columns:38px 1fr auto;
  gap:11px;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.055);
}

.starter-roster>div:last-child{
  border-bottom:0;
}

.starter-roster>div>span{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:10px;
  color:#e4e5e9;
  background:#292d36;
  font-size:.61rem;
  font-weight:800;
}

.starter-roster p{
  margin:0;
}

.starter-roster b,
.starter-roster small{
  display:block;
}

.starter-roster b{
  font-size:.74rem;
}

.starter-roster small{
  margin-top:3px;
  color:#737882;
  font-size:.62rem;
}

.starter-roster em{
  color:#aeb5ee;
  font-size:.64rem;
  font-style:normal;
}

.starter-handover{
  padding-top:23px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
}

.starter-handover span{
  color:#8b9099;
  font-size:.59rem;
  font-weight:800;
  letter-spacing:.10em;
}

.starter-handover i{
  position:relative;
  height:1px;
  background:linear-gradient(90deg,rgba(174,181,238,.25),rgba(174,181,238,.75));
}

.starter-handover i:after{
  content:"›";
  position:absolute;
  right:-2px;
  top:50%;
  transform:translateY(-54%);
  color:#aeb5ee;
  font-style:normal;
  font-size:1rem;
}

/* Highlight the new option in the configurator */
.service-row-featured{
  background:linear-gradient(90deg,rgba(174,181,238,.055),transparent 72%);
}

.service-row-featured .service-row-main b:after{
  content:"NEU";
  display:inline-block;
  margin-left:8px;
  padding:3px 5px;
  border-radius:4px;
  color:#dfe2ff;
  background:rgba(174,181,238,.12);
  font-size:.48rem;
  letter-spacing:.09em;
  vertical-align:middle;
}

@media(max-width:1050px){
  .mod-team-feature{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .mod-team-feature{
    width:min(100% - 24px,var(--max));
    padding:85px 0;
    gap:35px;
  }

  .mod-team-copy h2{
    font-size:2.45rem;
  }

  .mod-live-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .mod-coverage{
    white-space:normal;
  }

  .starter-mod-visual{
    min-height:auto;
    padding:17px;
  }

  .starter-handover{
    grid-template-columns:1fr;
    text-align:center;
  }

  .starter-handover i{
    width:1px;
    height:24px;
    margin:auto;
    background:linear-gradient(rgba(174,181,238,.25),rgba(174,181,238,.75));
  }

  .starter-handover i:after{
    content:"⌄";
    right:auto;
    left:50%;
    top:auto;
    bottom:-10px;
    transform:translateX(-50%);
  }
}
