:root { --bg: #020308; --panel: #04060b; --line: rgba(233,237,244,.1); --accent: #4d8dff; --royal: #184cc4; --navy: #03184b; --ink: #e9edf4; --mut: #98a2b3; --dim: #5b6478; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: 'IBM Plex Mono', monospace; color: var(--ink); }
* { box-sizing: border-box; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: #020308; }
h1, h2, h3 { text-wrap: balance; }
.arcade { font-family: 'Press Start 2P', monospace; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); } 50% { transform: translateY(-11px) rotate(var(--rot, 0deg)); } }
@keyframes toastIn { 0% { transform: translateY(80px); opacity: 0; } 12%, 88% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(80px); opacity: 0; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(63,214,139,.4); } 60% { box-shadow: 0 0 0 6px rgba(63,214,139,0); } }
@keyframes shimmer { to { background-position: -150% 0; } }
@keyframes btnshine { 0% { left: -60%; } 55%, 100% { left: 135%; } }
@keyframes logodrop { 0% { transform: translateY(-90px); opacity: 0; } 62% { transform: translateY(7px); opacity: 1; } 82% { transform: translateY(-4px); } 100% { transform: translateY(0); opacity: 1; } }

.px { shape-rendering: crispEdges; display: block; }

/* tab bar */
.tabbar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; display: flex; align-items: stretch; height: 48px; background: rgba(2,3,8,.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); font-size: 12.5px; }
.tb-brand { display: flex; align-items: center; gap: 10px; padding: 0 18px; border-right: 1px solid var(--line); font-weight: 600; font-size: 12.5px; white-space: nowrap; }
.tb-brand img { width: 26px; height: 26px; }
.tb-tabs { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.tb-tabs::-webkit-scrollbar { display: none; }
.tb-tab { display: flex; align-items: center; gap: 8px; padding: 0 18px; color: var(--mut); border-right: 1px solid var(--line); border-top: 2px solid transparent; white-space: nowrap; transition: background .15s, color .15s; }
.tb-tab:hover { color: var(--ink); background: rgba(233,237,244,.04); }
.tb-tab.on { color: var(--ink); background: #020308; border-top-color: var(--accent); }
.tb-tab .ic { font-size: 11px; }
.tb-tab .x { color: var(--dim); font-size: 11px; }
.tb-cta { margin-left: auto; display: flex; align-items: center; padding-right: 14px; padding-left: 14px; flex-shrink: 0; }
.tb-cta a { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #020308; font-weight: 600; font-size: 12.5px; padding: 8px 16px; transition: background .2s; white-space: nowrap; }
.tb-cta a:hover { background: #e9edf4; color: #020308; }
.progress { position: fixed; top: 48px; left: 0; height: 2px; background: linear-gradient(90deg, var(--royal), var(--accent)); z-index: 61; transition: width .1s linear; box-shadow: 0 0 12px rgba(77,141,255,.6); }

/* status bar */
.statusbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: flex; align-items: center; gap: 20px; padding: 6px 16px; color: #020308; font-size: 11.5px; font-weight: 500; }

/* layout */
.wrap { width: min(1160px, 100% - 56px); margin-inline: auto; position: relative; z-index: 1; }
.sec { position: relative; padding: 104px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.gut { position: absolute; top: 0; left: 0; width: 54px; height: 100%; overflow: hidden; padding: 34px 10px 0 0; text-align: right; font-size: 11.5px; line-height: 2.2; color: #1e2534; white-space: pre; border-right: 1px solid rgba(233,237,244,.05); user-select: none; z-index: 0; }
.kicker { font-size: 12.5px; color: var(--dim); }
.kicker .c1 { color: #3f8b52; } .kicker .c2 { color: #febc2e; } .kicker .c3 { color: #7a5fff; } .kicker .c4 { color: var(--accent); } .kicker .c5 { color: #ff5fa2; } .kicker .c6 { color: #58c7f3; }
.sec-head { margin-bottom: 30px; }
.sec-head h2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(28px, 3.4vw, 44px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05; margin: 14px 0 0; }
.lead { font-size: 14px; line-height: 1.85; color: var(--mut); }
.lead strong { color: var(--ink); }

/* primitives — cantos 90° */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 15px 28px; font-size: 14px; font-weight: 600; border: 1px solid transparent; cursor: pointer; font-family: inherit; transition: transform .15s ease, background .2s, border-color .2s, color .2s, box-shadow .2s; }
.btn-primary { background: var(--accent); color: #020308; box-shadow: 4px 4px 0 rgba(24,76,196,.55); position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-20deg); animation: btnshine 3.4s ease-in-out 1.4s infinite; pointer-events: none; }
.btn-primary:hover { background: #e9edf4; color: #020308; transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(24,76,196,.55); }
.btn-ghost { border-color: rgba(233,237,244,.22); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 18px; font-size: 12.5px; }
.dot { width: 8px; height: 8px; background: #3fd68b; animation: pulse 2.4s ease-in-out infinite; }
.card { background: #060810; border: 1px solid var(--line); }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; padding: 6px 12px; border: 1px solid rgba(233,237,244,.18); color: var(--mut); transition: border-color .2s, color .2s, background .2s; }
.chip:hover { border-color: var(--accent); color: var(--accent); background: rgba(77,141,255,.06); }
.reveal { opacity: 0; transform: translateY(24px); filter: blur(10px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.reveal.on { opacity: 1; transform: translateY(0); filter: blur(0); }

/* mini browser chrome (padrão da casa) */
.win { position: relative; background: #060810; border: 1px solid var(--line); transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s, box-shadow .25s, opacity .7s ease, filter .7s ease; }
.win-bar { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #04060b; border-bottom: 1px solid var(--line); }
.win-dots { display: flex; gap: 6px; }
.win-dots span { width: 9px; height: 9px; border-radius: 50%; }
.win-dots span:nth-child(1) { background: #ff5f57; }
.win-dots span:nth-child(2) { background: #febc2e; }
.win-dots span:nth-child(3) { background: #28c840; }
.win-url { flex: 1; display: flex; align-items: center; gap: 7px; background: #020308; border: 1px solid rgba(233,237,244,.1); padding: 5px 10px; font-size: 10.5px; color: var(--dim); white-space: nowrap; overflow: hidden; }
.win-url b { color: var(--mut); font-weight: 400; }
.win-url svg { flex-shrink: 0; }
@media (hover:hover){ a.win:hover { transform: translateY(-5px); border-color: rgba(77,141,255,.55); box-shadow: 8px 8px 0 rgba(24,76,196,.25); } a.win:hover img { transform: scale(1.04); } }

/* hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: 1px solid var(--line); overflow: hidden; padding: 90px 0 70px; }
.hero-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(38px, 6.2vw, 88px); line-height: .94; letter-spacing: -0.02em; text-transform: uppercase; margin: 0; text-shadow: 4px 4px 0 rgba(24,76,196,.35); }
.cursor { white-space: nowrap; }
.cursor::after { content: ""; display: inline-block; width: .4em; height: .72em; background: var(--accent); vertical-align: -.04em; margin-left: .08em; animation: blink 1s step-end infinite; }
.typeline { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; padding: 11px 18px; background: #060810; border: 1px solid var(--line); font-size: 13px; color: var(--mut); }
.typeline .tc { color: var(--ink); }
.typeline .tc::after { content: ""; display: inline-block; width: 8px; height: 15px; background: var(--accent); vertical-align: -2px; margin-left: 2px; animation: blink 1s step-end infinite; }
.tile { position: absolute; display: grid; place-items: center; background: rgba(6,9,17,.75); border: 1px solid rgba(233,237,244,.14); box-shadow: 6px 6px 0 rgba(24,76,196,.18); animation: floaty 6s ease-in-out infinite; z-index: 1; }
.tile img { display: block; }
/* spotlight que segue o cursor no hero (ideia do 21st.dev) */
.spotlight { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(520px circle at var(--sx, 50%) var(--sy, 38%), rgba(77,141,255,.11), transparent 68%); }
.hero-fx { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-logo { display: block; width: 74px; height: 74px; margin: 0 auto 22px; border: 1px solid rgba(233,237,244,.22); box-shadow: 5px 5px 0 rgba(24,76,196,.4); animation: logodrop .95s cubic-bezier(.2,.7,.3,1.1) .15s backwards; }

/* bento */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.bento-item { border: 1px solid var(--line); background: #060810; padding: 22px; transition: transform .2s, border-color .2s, box-shadow .2s; }
.bento-item:hover { transform: translate(-2px, -2px); border-color: rgba(77,141,255,.45); box-shadow: 6px 6px 0 rgba(24,76,196,.2); }
.bento-item .ic { width: 40px; height: 40px; display: grid; place-items: center; color: var(--accent); background: rgba(77,141,255,.09); border: 1px solid rgba(77,141,255,.25); margin-bottom: 14px; }
.bento-item .ic svg { width: 19px; height: 19px; }
.bento-item h4 { margin: 0 0 6px; font-size: 14.5px; font-weight: 600; }
.bento-item p { margin: 0; font-size: 12.5px; color: var(--mut); line-height: 1.65; }
.stats { display: flex; gap: 42px; flex-wrap: wrap; margin-top: 36px; }
.stats b { font-family: 'Archivo Black', sans-serif; font-size: 28px; display: block; letter-spacing: -.01em; }
.stats span { color: var(--dim); font-size: 12.5px; margin-top: 5px; display: block; }

/* eventos */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 18px; }
/* meetups — os cards sobem e descem com o scroll da página (--mpar setado via JS) */
#encontros .feat-grid .reveal { transform: translateY(calc(24px + var(--mpar, 0px))); }
#encontros .feat-grid .reveal.on { transform: translateY(var(--mpar, 0px)); }
#encontros .feat-grid .reveal:nth-child(even) { transform: translateY(calc(24px - var(--mpar, 0px))); }
#encontros .feat-grid .reveal.on:nth-child(even) { transform: translateY(calc(var(--mpar, 0px) * -1)); }
.feat-media { position: relative; aspect-ratio: 16/8; overflow: hidden; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,6,11,.55), transparent 46%); }
.ev-type { position: absolute; top: 12px; left: 12px; font-size: 10.5px; padding: 5px 11px; z-index: 2; border: 1px solid; }
.feat-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 7px; }
.act-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.act-body { padding: 17px 18px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.act-top { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 3px; }
.act-top .badge { flex-shrink: 0; }
.act-top .ev-when { flex: 1 1 160px; min-width: 0; line-height: 1.5; }
.act-top svg { width: 28px; height: 28px; }
.ev-when { font-size: 11px; color: var(--dim); }
.ev-title { font-size: 15px; font-weight: 600; margin: 0; line-height: 1.35; }
.ev-desc { font-size: 12.5px; color: var(--mut); line-height: 1.6; margin: 0; }
.ev-more { margin-top: auto; padding-top: 9px; font-size: 12px; color: var(--accent); }
a.win { display: flex; flex-direction: column; }

/* eventos online */
.online-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 18px; align-items: stretch; }
.ag-list { margin-top: 10px; display: flex; flex-direction: column; }
.ag-line { display: flex; gap: 14px; padding: 8px 0; border-top: 1px dashed rgba(233,237,244,.12); font-size: 12.5px; }
.ag-line:first-child { border-top: 0; padding-top: 2px; }
.ag-day { color: var(--accent); flex: 0 0 44px; }
.ag-what { color: var(--mut); line-height: 1.6; flex: 1; min-width: 0; }

/* fotos do 1º encontro */
.strip6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 12px 12px 0; }

/* founders */
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 1080px) { .partner-grid { grid-template-columns: 1fr; } }
.fo-card { padding: 30px 32px; display: flex; flex-direction: column; gap: 20px; transition: transform .2s, border-color .2s, box-shadow .2s, opacity .7s ease, filter .7s ease; }
.fo-card:hover { transform: translate(-2px, -2px); border-color: rgba(77,141,255,.4); box-shadow: 6px 6px 0 rgba(24,76,196,.2); }
.fo-head { display: flex; align-items: center; gap: 22px; }
.fo-head img { width: 104px; height: 104px; object-fit: cover; filter: grayscale(1); transition: filter .35s; border: 1px solid var(--line); }
.fo-card:hover .fo-head img { filter: grayscale(0); }
.fo-head b { font-size: 20px; display: block; }
.fo-head small { font-size: 13.5px; color: var(--accent); display: block; margin-top: 6px; }
.fo-role { font-size: 14px; color: var(--dim); line-height: 1.6; margin: 0; }
.fo-links { display: flex; gap: 10px; flex-wrap: wrap; }
.fo-links .chip { font-size: 13px; padding: 8px 15px; }
@media (max-width: 520px) { .fo-card { padding: 22px 20px; } .fo-head img { width: 80px; height: 80px; } .fo-head b { font-size: 17px; } }

/* projetos */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.proj-shot { padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; background: linear-gradient(160deg, #080b14, #04060b); border-bottom: 1px solid var(--line); }
.gh-tile { border: 1px solid rgba(233,237,244,.12); background: #060810; padding: 12px 10px; display: flex; flex-direction: column; gap: 9px; align-items: center; transition: border-color .2s; }
.win:hover .gh-tile { border-color: rgba(77,141,255,.35); }
.gh-bar { height: 6px; width: 78%; background: rgba(233,237,244,.16); }
.gh-bar.sm { width: 46%; height: 5px; }
.gh-tile:nth-child(1) .gh-bar.sm { background: rgba(77,141,255,.45); }
.gh-tile:nth-child(2) .gh-bar.sm { background: rgba(255,95,162,.45); }
.gh-tile:nth-child(3) .gh-bar.sm { background: rgba(63,214,139,.45); }
.gh-tile:nth-child(4) .gh-bar.sm { background: rgba(254,188,46,.45); }
.gh-tile:nth-child(5) .gh-bar.sm { background: rgba(122,95,255,.45); }
.gh-tile:nth-child(6) .gh-bar.sm { background: rgba(88,199,243,.45); }
.dex-tile { border: 1px solid rgba(233,237,244,.12); background: #060810; padding: 10px 8px 8px; display: flex; flex-direction: column; gap: 8px; align-items: center; transition: border-color .2s; }
.win:hover .dex-tile { border-color: rgba(77,141,255,.35); }
.dex-num { font-family: 'Press Start 2P', monospace; font-size: 7px; letter-spacing: .06em; color: var(--dim); }
.proj-plus { flex: 1; margin: 14px; border: 1px dashed rgba(233,237,244,.25); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 26px 18px; text-align: center; transition: border-color .2s; }
.win:hover .proj-plus { border-color: rgba(77,141,255,.5); }

/* loja */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.shop-card { position: relative; border: 1px solid var(--line); overflow: hidden; background: linear-gradient(160deg, #080b14, #04060b); }
.shop-thumb { aspect-ratio: 1/1; display: grid; place-items: center; opacity: .38; filter: blur(1.5px); }
.shop-thumb svg { width: 52px; height: 52px; color: var(--mut); }
.shop-lock { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(2,3,8,.5); }
.shop-badge { font-family: 'Press Start 2P', monospace; font-size: 8px; letter-spacing: .08em; color: #020308; background: var(--accent); padding: 6px 11px; }
.shop-name { padding: 12px 15px; font-size: 12px; color: var(--mut); border-top: 1px solid var(--line); }
.shop-shimmer { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(77,141,255,.06) 50%, transparent 58%); background-size: 250% 100%; animation: shimmer 6s linear infinite; }

/* CTA — banner construído da logo */
.cta-hero { position: relative; overflow: hidden; border: 1px solid rgba(77,141,255,.35); padding: 92px 40px; text-align: center; background: linear-gradient(160deg, #080b14, #04060b); }
.cta-hero > .cta-content { position: relative; z-index: 1; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; margin-top: 48px; font-size: 12px; color: var(--dim); }
.foot a { color: var(--mut); }

/* toast */
.toast { position: fixed; bottom: 52px; right: 28px; z-index: 90; background: #060810; border: 1px solid var(--accent); padding: 15px 20px; display: flex; align-items: center; gap: 14px; animation: toastIn 4s ease forwards; box-shadow: 8px 8px 0 rgba(24,76,196,.3); }

/* utilitários */
.m0 { margin: 0; }
.t-accent { color: var(--accent); }
.t-green { color: #3fd68b; }
.t-cyan { color: #58c7f3; }
.t-yellow { color: #febc2e; }
.t-strong { color: var(--ink); font-weight: 600; }

/* toast */
.toast-ic { width: 38px; height: 38px; background: rgba(77,141,255,.15); border: 1px solid rgba(77,141,255,.5); display: grid; place-items: center; }
.toast-kicker { font-size: 8px; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; }
.toast-text { font-size: 13px; font-weight: 600; margin-top: 5px; }

/* hero */
.hero .wrap { max-width: 980px; }
.kicker-live { display: flex; align-items: center; justify-content: center; gap: 10px; letter-spacing: .14em; text-transform: uppercase; font-size: 11.5px; color: var(--accent); }
.hero-title-box { margin: 26px 0 26px; }
.hero-lead { max-width: 540px; margin: 0 auto 30px; }
.hero-meta { margin-top: 26px; font-size: 12.5px; color: var(--mut); }

/* sobre */
.about-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.04; text-transform: uppercase; letter-spacing: -0.01em; margin: 14px 0 18px; }
.lead-hl { margin: 0 0 14px; color: #58c7f3; }

/* cabeçalhos de seção */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.head-row-loja { gap: 20px; margin-bottom: 32px; }
.sec-lead { max-width: 560px; margin: 16px 0 0; }
.sec-lead-sm { max-width: 520px; margin: 16px 0 0; }
.kicker-gap { margin: 46px 0 20px; }
.kicker-close { margin-top: 18px; }

/* eventos */
.chip-insta { border-color: rgba(255,95,162,.4); color: #ff5fa2; }
.media-16x10 { aspect-ratio: 16/10; }
.media-1x1 { aspect-ratio: 1/1; }
.media-4x5 { aspect-ratio: 4/5; }
.crop-t35 { object-position: 50% 35%; }
.crop-t30 { object-position: 50% 30%; }
.ev-type-blue { color: #4d8dff; border-color: #4d8dff88; background: rgba(2,3,8,.75); }
.ev-type-green { color: #3fd68b; border-color: #3fd68b88; background: rgba(2,3,8,.75); }
.badge { font-size: 10.5px; padding: 5px 11px; border: 1px solid; }
.badge-green { color: #3fd68b; border-color: #3fd68b66; background: #3fd68b1f; }
.badge-yellow { color: #febc2e; border-color: #febc2e66; background: #febc2e1f; }
.badge-blue { color: #4d8dff; border-color: #4d8dff66; background: #4d8dff1f; }

/* encontros */
.win-full { grid-column: 1 / -1; }
.strip3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 12px 0; }
.ph { position: relative; aspect-ratio: 1/1; overflow: hidden; border: 1px solid rgba(233,237,244,.1); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.feat-body.tight { gap: 8px; }
.card-cta { margin-top: 10px; }

/* projetos */
.dex-q { font-size: 20px; line-height: 34px; height: 34px; color: var(--accent); }
.plus-dots { font-size: 15px; color: var(--accent); letter-spacing: .2em; }
.proj-plus > b { font-size: 14px; }
.proj-plus .ev-desc { max-width: 260px; }
.proj-plus .chip { margin-top: 4px; }

/* cta final */
.sec-cta { position: relative; padding: 104px 0 62px; overflow: hidden; }
.cta-kicker { margin: 22px 0 12px; }
.cta-logo { width: 74px; height: 74px; border: 1px solid rgba(255,255,255,.22); box-shadow: 6px 6px 0 rgba(24,76,196,.35); }
.cta-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(30px, 4.6vw, 58px); line-height: .96; text-transform: uppercase; letter-spacing: -0.02em; margin: 0 0 20px; }
.cta-lead { max-width: 430px; margin: 0 auto 30px; }
.btn-lg { padding: 16px 38px; }
.foot-links { display: flex; gap: 22px; align-items: center; }
.foot a.t-accent { color: var(--accent); }
.sb-right { margin-left: auto; }

@media (max-width: 1080px) { .tile { display: none; } .founders-grid { grid-template-columns: 1fr; } .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 920px) { .gut { display: none; } }
@media (max-width: 860px) {
  .wrap { width: min(1160px, 100% - 36px); }
  .split, .feat-grid, .online-grid, .proj-grid { grid-template-columns: 1fr; }
  .split { gap: 36px; }
  .bento, .act-grid, .shop-grid { grid-template-columns: 1fr; }
  .strip6 { grid-template-columns: repeat(3, 1fr); }
  .sec { padding: 66px 0; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .tb-brand span { display: none; }
  .statusbar .hide-xs { display: none; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } html { scroll-behavior: auto; } .reveal { opacity: 1 !important; transform: none !important; filter: none !important; } }
