/* launchpad.meme public brand kit */
.brand-kit-page{
  --bk-lime:#a6e00f;
  --bk-lime-deep:#8fca00;
  --bk-bg:#0d0d0f;
  --bk-bg-soft:#121216;
  --bk-surface:#18181b;
  --bk-surface-2:#202024;
  --bk-line:#2a2a2f;
  --bk-text:#f5f5f5;
  --bk-muted:#96969e;
  --bk-danger:#ea3943;
  position:relative;
  overflow:hidden;
  background:var(--bk-bg);
  color:var(--bk-text);
}
.brand-kit-page *,
.brand-kit-page *::before,
.brand-kit-page *::after{box-sizing:border-box}
.brand-kit-page :is(h1,h2,h3,p,figure){margin-top:0}
.brand-kit-page :is(button,a){-webkit-tap-highlight-color:transparent}
.brand-kit-local-nav{
  position:sticky;
  top:0;
  z-index:8;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 22px;
  overflow-x:auto;
  scrollbar-width:none;
  border-bottom:1px solid rgba(166,224,15,.12);
  background:rgba(13,13,15,.88);
  -webkit-backdrop-filter:blur(18px);
  backdrop-filter:blur(18px);
}
.brand-kit-local-nav::-webkit-scrollbar{display:none}
.brand-kit-local-nav a{
  flex:0 0 auto;
  padding:8px 11px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--bk-muted);
  font-size:13px;
  font-weight:700;
  letter-spacing:.05em;
  transition:color .18s ease,border-color .18s ease,background .18s ease;
  margin:0 12px;
}
.brand-kit-local-nav a:hover,
.brand-kit-local-nav a:focus-visible{
  border-color:rgba(166,224,15,.24);
  background:rgba(166,224,15,.07);
  color:var(--bk-lime);
  outline:none;
}
.brand-kit-hero{
  position:relative;
  min-height:650px;
  display:flex;
  align-items:center;
  isolation:isolate;
  padding:118px clamp(28px,5vw,72px) 104px;
  border-bottom:1px solid var(--bk-line);
  background:
    radial-gradient(circle at 82% 32%,rgba(166,224,15,.13),transparent 26%),
    linear-gradient(180deg,#101013 0%,#0d0d0f 100%);
}
.brand-kit-hero-grid{
  position:absolute;
  inset:0;
  z-index:-2;
  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:96px 96px;
  mask-image:linear-gradient(90deg,#000 0%,#000 76%,transparent 100%);
}
.brand-kit-hero-orbit{
  position:absolute;
  right:clamp(30px,8vw,130px);
  top:50%;
  z-index:-1;
  width:min(32vw,390px);
  aspect-ratio:1;
  transform:translateY(-50%);
  border:1px solid rgba(166,224,15,.25);
  border-radius:50%;
  box-shadow:0 0 90px rgba(166,224,15,.05);
}
.brand-kit-hero-orbit::before,
.brand-kit-hero-orbit::after{
  content:"";
  position:absolute;
  border:1px solid rgba(166,224,15,.14);
  border-radius:50%;
}
.brand-kit-hero-orbit::before{inset:14%}
.brand-kit-hero-orbit::after{inset:31%}
.brand-kit-hero-orbit > img{
  position:absolute;
  left:50%;
  top:50%;
  width:34%;
  aspect-ratio:1;
  transform:translate(-50%,-50%);
  border:0;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 50px rgba(166,224,15,.44);
}
.brand-kit-hero-copy{position:relative;z-index:1;max-width:780px}
.brand-kit-kicker,
.brand-kit-index,
.brand-kit-subheading{
  display:block;
  color:var(--bk-lime);
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  line-height:1.3;
  text-transform:uppercase;
}
.brand-kit-hero h1{
  max-width:760px;
  margin:24px 0 24px;
  color:var(--bk-text);
  font-size:clamp(48px,7vw,92px);
  font-weight:800;
  letter-spacing:-.065em;
  line-height:.98;
}
.brand-kit-hero h1 em{
  display:block;
  color:var(--bk-lime);
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  letter-spacing:-.045em;
}
.brand-kit-hero p{
  max-width:700px;
  margin-bottom:30px;
  color:#b0b0b7;
  font-size:clamp(15px,1.45vw,17px);
  line-height:1.7;
}
.brand-kit-actions,
.brand-kit-button-demo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.brand-kit-button{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px;
  padding:11px 17px;
  border:1px solid var(--bk-line);
  border-radius:12px;
  font:700 13px/1 monospace;
  cursor:pointer;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}
.brand-kit-button:hover{transform:translateY(-2px)}
.brand-kit-button:focus-visible{outline:2px solid var(--bk-lime);outline-offset:3px}
.brand-kit-button-primary{
  border-color:var(--bk-lime);
  background:var(--bk-lime);
  color:#101205;
  box-shadow:0 10px 30px -16px rgba(166,224,15,.72);
}
.brand-kit-button-primary:hover{
  border-color:#b8f622;
  background:#b8f622;
  color:#101205;
  box-shadow:0 16px 38px -16px rgba(166,224,15,.72);
}
.brand-kit-button-secondary{
  border-color:#3a3a40;
  background:#202024;
  color:var(--bk-text);
}
.brand-kit-button-secondary:hover{border-color:#56565e;background:#28282d}
.brand-kit-button-ghost{background:transparent;color:var(--bk-muted)}
.brand-kit-button-ghost:hover{border-color:rgba(166,224,15,.32);color:var(--bk-lime)}
.brand-kit-button-lg{min-height:52px;padding:14px 22px;border-radius:14px;font-size:14px}
.brand-kit-section{
  scroll-margin-top:120px;
  padding:clamp(72px,8vw,112px) clamp(28px,5vw,72px);
  border-bottom:1px solid var(--bk-line);
  background:var(--bk-bg);
}
.brand-kit-section-soft{
  background:
    linear-gradient(135deg,rgba(166,224,15,.025),transparent 34%),
    var(--bk-bg-soft);
}
.brand-kit-section > *{max-width:1180px;margin-left:auto;margin-right:auto}
.brand-kit-section-heading{margin-bottom:48px}
.brand-kit-section-heading h2{
  max-width:850px;
  margin:18px 0 18px;
  color:var(--bk-text);
  font-size:clamp(38px,5.5vw,60px);
  font-weight:800;
  letter-spacing:-.055em;
  line-height:1.02;
}
.brand-kit-section-heading p{
  max-width:760px;
  margin-bottom:0;
  color:var(--bk-muted);
  font-size:15px;
  line-height:1.75;
}
.brand-kit-logo-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.brand-kit-logo-stage{
  position:relative;
  min-height:270px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:54px 36px 36px;
  overflow:hidden;
  border:1px solid var(--bk-line);
  border-radius:22px;
}
.brand-kit-logo-stage figcaption{
  position:absolute;
  left:20px;
  top:17px;
  color:#777780;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.brand-kit-logo-stage-light{border-color:#d7d7da;background:#f7f7f4}
.brand-kit-logo-stage-dark{background:#09090b}
.brand-kit-logo-stage-dark figcaption{color:#777780}
.brand-kit-wordmark{width:min(100%,510px);height:auto}
.brand-kit-wordmark-ink{filter:brightness(0) saturate(100%);opacity:.92}
.brand-kit-rule-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.brand-kit-rule-grid article{
  min-height:180px;
  padding:22px;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
}
.brand-kit-rule-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  margin-bottom:22px;
  border:1px solid rgba(166,224,15,.22);
  border-radius:10px;
  background:rgba(166,224,15,.07);
  color:var(--bk-lime);
  font-size:17px;
}
.brand-kit-rule-grid h3{margin:0 0 9px;color:var(--bk-text);font-size:15px}
.brand-kit-rule-grid p{margin:0;color:var(--bk-muted);font-size:13px;line-height:1.65}
.brand-kit-subheading{margin:0 auto 16px!important}
.brand-kit-color-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-bottom:42px!important;
}
.brand-kit-color-grid-semantic{grid-template-columns:repeat(4,minmax(0,1fr))}
.brand-kit-swatch{
  appearance:none;
  min-width:0;
  padding:0;
  overflow:hidden;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
  color:var(--bk-text);
  text-align:left;
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.brand-kit-swatch:hover{
  transform:translateY(-3px);
  border-color:color-mix(in srgb,var(--swatch) 54%,#3a3a40);
  box-shadow:0 16px 42px -22px color-mix(in srgb,var(--swatch) 50%,transparent);
}
.brand-kit-swatch:focus-visible{outline:2px solid var(--bk-lime);outline-offset:3px}
.brand-kit-swatch-color{
  display:block;
  width:100%;
  height:126px;
  background:var(--swatch);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.brand-kit-swatch-meta{display:flex;flex-direction:column;gap:5px;padding:15px}
.brand-kit-swatch-meta strong{color:var(--bk-text);font-size:13px}
.brand-kit-swatch-meta > span{font-size:13px;font-weight:700}
.brand-kit-swatch-meta small{min-height:32px;color:var(--bk-muted);font-size:11px;line-height:1.45}
.brand-kit-copy-note{display:flex;align-items:center;gap:8px;color:var(--bk-muted);font-size:12px}
.brand-kit-type-list{border-top:1px solid var(--bk-line)}
.brand-kit-type-row{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  align-items:start;
  gap:36px;
  padding:30px 0;
  border-bottom:1px solid var(--bk-line);
}
.brand-kit-type-row > div{display:flex;flex-direction:column;gap:7px}
.brand-kit-type-row > div strong{color:var(--bk-text);font-size:12px}
.brand-kit-type-row > div span{color:var(--bk-muted);font-size:11px;line-height:1.45}
.brand-kit-type-row > p{margin:0;color:var(--bk-text)}
.brand-kit-type-display{font-size:clamp(40px,5vw,68px);font-weight:800;letter-spacing:-.065em;line-height:1}
.brand-kit-type-display em{color:var(--bk-lime);font-family:Georgia,"Times New Roman",serif;font-weight:400}
.brand-kit-type-h2{font-size:clamp(30px,4vw,52px);font-weight:800;letter-spacing:-.05em;line-height:1.05}
.brand-kit-type-h3{font-size:22px;font-weight:800;letter-spacing:-.025em}
.brand-kit-type-body{max-width:720px;color:#b6b6bd!important;font-size:15px;line-height:1.75}
.brand-kit-type-label{color:var(--bk-lime)!important;font-size:11px;font-weight:800;letter-spacing:.16em}
.brand-kit-type-data{font-size:14px;font-variant-numeric:tabular-nums}
.brand-kit-chain-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:12px;
}
.brand-kit-chain-card{
  min-height:160px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:20px 12px;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
  text-align:center;
  transition:transform .18s ease,border-color .18s ease;
}
.brand-kit-chain-card:hover{transform:translateY(-3px);border-color:rgba(166,224,15,.3)}
.brand-kit-chain-icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid #34343a;
  border-radius:50%;
  background:#0e0e11;
  box-shadow:inset 0 0 0 5px #151519;
}
.brand-kit-chain-icon img{width:38px;height:38px;border-radius:50%;object-fit:contain}
.brand-kit-chain-card strong{font-size:12px}
.brand-kit-icon-spec{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:18px!important;
  border:1px solid var(--bk-line);
  border-radius:14px;
  background:#111114;
}
.brand-kit-icon-spec span{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:18px;
  color:var(--bk-muted);
  font-size:11px;
}
.brand-kit-icon-spec span + span{border-left:1px solid var(--bk-line)}
.brand-kit-icon-spec strong{color:var(--bk-text);font-size:13px}
.brand-kit-system-block{margin-top:34px!important}
.brand-kit-spacing-scale{
  display:grid;
  grid-template-columns:repeat(9,minmax(0,1fr));
  align-items:end;
  gap:8px;
  min-height:170px;
  padding:26px 20px 18px;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
}
.brand-kit-spacing-scale div{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
}
.brand-kit-spacing-scale div > span{
  display:block;
  max-width:100%;
  height:var(--space-height,36px);
  min-height:10px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--bk-lime),var(--bk-lime-deep));
}
.brand-kit-spacing-scale div:nth-child(1) > span{height:12px}
.brand-kit-spacing-scale div:nth-child(2) > span{height:20px}
.brand-kit-spacing-scale div:nth-child(3) > span{height:28px}
.brand-kit-spacing-scale div:nth-child(4) > span{height:36px}
.brand-kit-spacing-scale div:nth-child(5) > span{height:48px}
.brand-kit-spacing-scale div:nth-child(6) > span{height:60px}
.brand-kit-spacing-scale div:nth-child(7) > span{height:76px}
.brand-kit-spacing-scale div:nth-child(8) > span{height:92px}
.brand-kit-spacing-scale div:nth-child(9) > span{height:112px}
.brand-kit-spacing-scale strong{font-size:12px}
.brand-kit-spacing-scale small{color:var(--bk-muted);font-size:10px}
.brand-kit-system-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.brand-kit-system-columns .brand-kit-system-block{max-width:none;width:100%}
.brand-kit-radius-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
  padding:20px;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
}
.brand-kit-radius-grid div{display:flex;flex-direction:column;align-items:center;gap:8px;text-align:center}
.brand-kit-radius-grid div > span{display:block;width:58px;height:58px;border:1px solid rgba(166,224,15,.34);background:rgba(166,224,15,.07)}
.brand-kit-radius-grid .radius-8{border-radius:8px}
.brand-kit-radius-grid .radius-12{border-radius:12px}
.brand-kit-radius-grid .radius-16{border-radius:16px}
.brand-kit-radius-grid .radius-24{border-radius:24px}
.brand-kit-radius-grid .radius-pill{border-radius:999px}
.brand-kit-radius-grid strong{font-size:11px}
.brand-kit-radius-grid small{color:var(--bk-muted);font-size:10px}
.brand-kit-shadow-grid{display:grid;gap:10px}
.brand-kit-shadow-grid > div{
  min-height:76px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  padding:16px 18px;
  border:1px solid var(--bk-line);
  border-radius:14px;
  background:var(--bk-surface);
}
.brand-kit-shadow-grid strong{font-size:12px}
.brand-kit-shadow-grid code{overflow:hidden;color:var(--bk-muted);font-size:10px;text-overflow:ellipsis;white-space:nowrap}
.brand-kit-shadow-soft{box-shadow:0 8px 24px rgba(0,0,0,.18)}
.brand-kit-shadow-card{box-shadow:0 18px 50px rgba(0,0,0,.28)}
.brand-kit-shadow-glow{box-shadow:0 0 34px rgba(166,224,15,.2)}
.brand-kit-button-demo{
  padding:24px;
  border:1px solid var(--bk-line);
  border-radius:16px;
  background:var(--bk-surface);
}
.brand-kit-voice-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.brand-kit-voice-grid article{
  padding:28px;
  border:1px solid var(--bk-line);
  border-radius:18px;
  background:var(--bk-surface);
}
.brand-kit-voice-grid article > span{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:22px;
  font-size:13px;
  font-weight:800;
}
.brand-kit-voice-do{border-color:rgba(166,224,15,.22)!important}
.brand-kit-voice-do > span{color:var(--bk-lime)}
.brand-kit-voice-dont{border-color:rgba(234,57,67,.2)!important}
.brand-kit-voice-dont > span{color:#ff6f78}
.brand-kit-voice-grid ul{margin:0;padding-left:20px;color:#b5b5bc}
.brand-kit-voice-grid li{padding:6px 0;font-size:13px;line-height:1.65}
.brand-kit-voice-grid li::marker{color:currentColor}
.brand-kit-voice-grid strong{color:var(--bk-text)}
.brand-kit-section-assets{
  background:
    radial-gradient(circle at 12% 100%,rgba(166,224,15,.08),transparent 30%),
    #0b0b0d;
}
.brand-kit-assets-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.brand-kit-asset-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--bk-line);
  border-radius:18px;
  background:var(--bk-surface);
}
.brand-kit-asset-card-social{grid-column:1/-1}
.brand-kit-asset-preview{
  height:250px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  overflow:hidden;
  border-bottom:1px solid var(--bk-line);
  background:
    linear-gradient(45deg,#121216 25%,transparent 25%,transparent 75%,#121216 75%),
    linear-gradient(45deg,#121216 25%,#17171b 25%,#17171b 75%,#121216 75%);
  background-position:0 0,10px 10px;
  background-size:20px 20px;
}
.brand-kit-asset-card-social .brand-kit-asset-preview{height:390px;background:#0c0c0e}
.brand-kit-asset-preview img{max-width:100%;max-height:100%;object-fit:contain}
.brand-kit-asset-preview-icon img{width:174px;height:174px;border-radius:32px}
.brand-kit-asset-copy{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:17px 19px;
}
.brand-kit-asset-copy > div{display:flex;flex-direction:column;gap:6px}
.brand-kit-asset-copy strong{font-size:13px}
.brand-kit-asset-copy span{color:var(--bk-muted);font-size:11px}
.brand-kit-asset-copy > a{
  flex:0 0 auto;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(166,224,15,.28);
  border-radius:11px;
  background:rgba(166,224,15,.07);
  color:var(--bk-lime);
  transition:transform .18s ease,background .18s ease;
}
.brand-kit-asset-copy > a:hover{transform:translateY(-2px);background:rgba(166,224,15,.14)}
.brand-kit-contact-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  margin-top:18px!important;
  padding:32px;
  border:1px solid rgba(166,224,15,.22);
  border-radius:20px;
  background:linear-gradient(120deg,rgba(166,224,15,.09),rgba(166,224,15,.025));
}
.brand-kit-contact-card h3{margin:12px 0 14px;color:var(--bk-text);font-size:clamp(22px,3vw,30px);letter-spacing:-.04em}
.brand-kit-contact-card p{max-width:700px;margin:0;color:var(--bk-muted);font-size:13px;line-height:1.65}
.brand-kit-contact-card .brand-kit-button{flex:0 0 auto}
.brand-kit-copy-toast{
  position:fixed;
  left:50%;
  bottom:28px;
  z-index:100;
  padding:11px 15px;
  border:1px solid rgba(166,224,15,.36);
  border-radius:999px;
  background:#151519;
  color:var(--bk-lime);
  font-size:12px;
  font-weight:800;
  box-shadow:0 16px 50px rgba(0,0,0,.44);
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,14px);
  transition:opacity .18s ease,transform .18s ease;
}
.brand-kit-copy-toast.is-visible{opacity:1;transform:translate(-50%,0)}

html[data-theme="light"] body .brand-kit-page{
  --bk-bg:#f5f7f1;
  --bk-bg-soft:#edf1e8;
  --bk-surface:#ffffff;
  --bk-surface-2:#eef2e9;
  --bk-line:#d8ded2;
  --bk-text:#171a17;
  --bk-muted:#626b60;
  background:var(--bk-bg)!important;
  color:var(--bk-text)!important;
}
html[data-theme="light"] body .brand-kit-local-nav{border-color:var(--bk-line)!important;background:rgba(255,255,255,.9)!important}
html[data-theme="light"] body .brand-kit-hero{
  border-color:var(--bk-line)!important;
  background:radial-gradient(circle at 82% 32%,rgba(143,202,0,.16),transparent 28%),linear-gradient(180deg,#fbfcf8,#f0f4eb)!important;
}
html[data-theme="light"] body .brand-kit-hero-grid{
  background-image:linear-gradient(rgba(28,36,24,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(28,36,24,.06) 1px,transparent 1px);
}
html[data-theme="light"] body .brand-kit-page :is(.brand-kit-hero h1,.brand-kit-section-heading h2,.brand-kit-rule-grid h3,.brand-kit-type-row > p,.brand-kit-chain-card strong,.brand-kit-contact-card h3,.brand-kit-asset-copy strong){color:var(--bk-text)!important}
html[data-theme="light"] body .brand-kit-page :is(.brand-kit-hero p,.brand-kit-section-heading p,.brand-kit-rule-grid p,.brand-kit-copy-note,.brand-kit-contact-card p){color:var(--bk-muted)!important}
html[data-theme="light"] body .brand-kit-page :is(.brand-kit-rule-grid article,.brand-kit-swatch,.brand-kit-chain-card,.brand-kit-spacing-scale,.brand-kit-radius-grid,.brand-kit-shadow-grid > div,.brand-kit-button-demo,.brand-kit-voice-grid article,.brand-kit-asset-card){border-color:var(--bk-line)!important;background:var(--bk-surface)!important}
html[data-theme="light"] body .brand-kit-page .brand-kit-type-list,
html[data-theme="light"] body .brand-kit-page .brand-kit-type-row{border-color:var(--bk-line)!important}
html[data-theme="light"] body .brand-kit-page .brand-kit-chain-icon{border-color:#d9ded4;background:#f0f3ec;box-shadow:inset 0 0 0 5px #fff}
html[data-theme="light"] body .brand-kit-page .brand-kit-icon-spec{border-color:var(--bk-line);background:#fff}
html[data-theme="light"] body .brand-kit-page .brand-kit-icon-spec span + span{border-color:var(--bk-line)}
html[data-theme="light"] body .brand-kit-page .brand-kit-button-secondary{border-color:#cfd6c8!important;background:#edf1e9!important;color:#222b20!important}
html[data-theme="light"] body .brand-kit-page .brand-kit-button-ghost{background:transparent!important;color:#606a5e!important}
html[data-theme="light"] body .brand-kit-page .brand-kit-asset-preview{border-color:var(--bk-line);background:#eff2ec}
html[data-theme="light"] body .brand-kit-page .brand-kit-contact-card{background:linear-gradient(120deg,rgba(143,202,0,.14),rgba(143,202,0,.04))!important}
html[data-theme="light"] body .brand-kit-copy-toast{background:#fff;color:#547b00}

@media(max-width:1100px){
  .brand-kit-chain-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .brand-kit-color-grid-semantic{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-kit-hero-orbit{right:-60px;opacity:.7}
}
@media(max-width:860px){
  .brand-kit-local-nav{top:0;padding-left:14px;padding-right:14px;justify-content:flex-start}
  .brand-kit-hero{min-height:570px;padding:88px 24px 76px}
  .brand-kit-hero-copy{max-width:650px}
  .brand-kit-hero h1{max-width:620px}
  .brand-kit-hero-orbit{right:-100px;width:300px;opacity:.38}
  .brand-kit-section{padding:72px 24px}
  .brand-kit-logo-grid,
  .brand-kit-rule-grid,
  .brand-kit-system-columns,
  .brand-kit-voice-grid{grid-template-columns:1fr}
  .brand-kit-type-row{grid-template-columns:190px minmax(0,1fr);gap:24px}
  .brand-kit-color-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-kit-icon-spec{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-kit-icon-spec span:nth-child(3){border-left:0;border-top:1px solid var(--bk-line)}
  .brand-kit-icon-spec span:nth-child(4){border-top:1px solid var(--bk-line)}
  .brand-kit-spacing-scale{overflow-x:auto;grid-template-columns:repeat(9,72px);justify-content:start}
  .brand-kit-contact-card{align-items:flex-start;flex-direction:column}
}
@media(max-width:560px){
  .brand-kit-local-nav{top:0}
  .brand-kit-hero{min-height:520px;padding:72px 16px 60px}
  .brand-kit-hero-grid{background-size:64px 64px}
  .brand-kit-hero-orbit{right:-120px;width:280px}
  .brand-kit-hero h1{font-size:clamp(44px,15vw,64px)}
  .brand-kit-hero p{font-size:14px}
  .brand-kit-actions{align-items:stretch;flex-direction:column}
  .brand-kit-actions .brand-kit-button{width:100%}
  .brand-kit-section{padding:62px 16px}
  .brand-kit-section-heading{margin-bottom:34px}
  .brand-kit-section-heading h2{font-size:clamp(36px,12vw,52px)}
  .brand-kit-logo-stage{min-height:210px;padding:46px 20px 24px}
  .brand-kit-rule-grid article{min-height:0}
  .brand-kit-color-grid,
  .brand-kit-color-grid-semantic{grid-template-columns:1fr}
  .brand-kit-swatch{display:grid;grid-template-columns:92px minmax(0,1fr)}
  .brand-kit-swatch-color{height:100%;min-height:112px;border-right:1px solid rgba(255,255,255,.08);border-bottom:0}
  .brand-kit-swatch-meta small{min-height:0}
  .brand-kit-type-row{grid-template-columns:1fr;gap:18px;padding:24px 0}
  .brand-kit-chain-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-kit-chain-card{min-height:140px}
  .brand-kit-icon-spec{grid-template-columns:1fr}
  .brand-kit-icon-spec span + span,
  .brand-kit-icon-spec span:nth-child(3){border-left:0;border-top:1px solid var(--bk-line)}
  .brand-kit-radius-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brand-kit-assets-grid{grid-template-columns:1fr}
  .brand-kit-asset-card-social{grid-column:auto}
  .brand-kit-asset-preview{height:210px}
  .brand-kit-asset-card-social .brand-kit-asset-preview{height:230px}
  .brand-kit-contact-card{padding:24px}
  .brand-kit-button-demo{align-items:stretch;flex-direction:column}
  .brand-kit-button-demo .brand-kit-button{width:100%}
}
@media(prefers-reduced-motion:reduce){
  .brand-kit-page *{scroll-behavior:auto!important}
  .brand-kit-page :is(.brand-kit-button,.brand-kit-swatch,.brand-kit-chain-card,.brand-kit-asset-copy>a){transition:none!important}
}